From 8161b04c336763297738b348b0695cecd0bc0c78 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Mon, 30 Jul 2012 15:08:58 +0000 Subject: Add Provisioning_API app and routes --- apps/provisioning_api/appinfo/app.php | 27 ++++++++++++ apps/provisioning_api/appinfo/info.xml | 11 +++++ apps/provisioning_api/appinfo/routes.php | 46 +++++++++++++++++++++ apps/provisioning_api/appinfo/version | 1 + apps/provisioning_api/lib/apps.php | 42 +++++++++++++++++++ apps/provisioning_api/lib/groups.php | 29 +++++++++++++ apps/provisioning_api/lib/users.php | 70 ++++++++++++++++++++++++++++++++ 7 files changed, 226 insertions(+) create mode 100644 apps/provisioning_api/appinfo/app.php create mode 100644 apps/provisioning_api/appinfo/info.xml create mode 100644 apps/provisioning_api/appinfo/routes.php create mode 100644 apps/provisioning_api/appinfo/version create mode 100644 apps/provisioning_api/lib/apps.php create mode 100644 apps/provisioning_api/lib/groups.php create mode 100644 apps/provisioning_api/lib/users.php (limited to 'apps') diff --git a/apps/provisioning_api/appinfo/app.php b/apps/provisioning_api/appinfo/app.php new file mode 100644 index 00000000000..992ee23b5c9 --- /dev/null +++ b/apps/provisioning_api/appinfo/app.php @@ -0,0 +1,27 @@ +. +* +*/ + +OC::$CLASSPATH['OC_Provisioning_API_Users'] = 'apps/provisioning_api/lib/users.php'; +OC::$CLASSPATH['OC_Provisioning_API_Groups'] = 'apps/provisioning_api/lib/groups.php'; +OC::$CLASSPATH['OC_Provisioning_API_Apps'] = 'apps/provisioning_api/lib/apps.php'; +?> \ No newline at end of file diff --git a/apps/provisioning_api/appinfo/info.xml b/apps/provisioning_api/appinfo/info.xml new file mode 100644 index 00000000000..eb96115507a --- /dev/null +++ b/apps/provisioning_api/appinfo/info.xml @@ -0,0 +1,11 @@ + + + provisioning_api + Provisioning API + AGPL + Tom Needham + 5 + true + Provides API methods to manage an ownCloud Instance + + diff --git a/apps/provisioning_api/appinfo/routes.php b/apps/provisioning_api/appinfo/routes.php new file mode 100644 index 00000000000..dcfaf7b78bc --- /dev/null +++ b/apps/provisioning_api/appinfo/routes.php @@ -0,0 +1,46 @@ +. +* +*/ + +// users +OCP\API::register('get', '/users', array('OC_Provisioning_API_Users', 'getUsers'), 'provisioning_api'); +OCP\API::register('post', '/users', array('OC_Provisioning_API_Users', 'addUser'), 'provisioning_api'); +OCP\API::register('get', '/users/{userid}', array('OC_Provisioning_API_Users', 'getUser'), 'provisioning_api'); +OCP\API::register('put', '/users/{userid}', array('OC_Provisioning_API_Users', 'editUser'), 'provisioning_api'); +OCP\API::register('delete', '/users/{userid}', array('OC_Provisioning_API_Users', 'getUsers'), 'provisioning_api'); +OCP\API::register('get', '/users/{userid}/sharedwith', array('OC_Provisioning_API_Users', 'getSharedWithUser'), 'provisioning_api'); +OCP\API::register('get', '/users/{userid}/sharedby', array('OC_Provisioning_API_Users', 'getSharedByUser'), 'provisioning_api'); +OCP\API::register('delete', '/users/{userid}/sharedby', array('OC_Provisioning_API_Users', 'deleteSharedByUser'), 'provisioning_api'); +OCP\API::register('get', '/users/{userid}/groups', array('OC_Provisioning_API_Users', 'getUsersGroups'), 'provisioning_api'); +OCP\API::register('post', '/users/{userid}/groups', array('OC_Provisioning_API_Users', 'addToGroup'), 'provisioning_api'); +OCP\API::register('delete', '/users/{userid}/groups', array('OC_Provisioning_API_Users', 'removeFromGroup'), 'provisioning_api'); +// groups +OCP\API::register('get', '/groups', array('OC_Provisioning_API_Groups', 'getGroups'), 'provisioning_api'); +OCP\API::register('post', '/groups', array('OC_Provisioning_API_Groups', 'addGroup'), 'provisioning_api'); +OCP\API::register('get', '/groups/{groupid}', array('OC_Provisioning_API_Groups', 'getGroup'), 'provisioning_api'); +OCP\API::register('delete', '/groups/{groupid}', array('OC_Provisioning_API_Groups', 'deleteGroup'), 'provisioning_api'); +// apps +OCP\API::register('get', '/apps', array('OC_Provisioning_API_Apps', 'getApps'), 'provisioning_api'); +OCP\API::register('get', '/apps/{appid}', array('OC_Provisioning_API_Apps', 'getApp'), 'provisioning_api'); +OCP\API::register('post', '/apps/{appid}', array('OC_Provisioning_API_Apps', 'enable'), 'provisioning_api'); +OCP\API::register('delete', '/apps/{appid}', array('OC_Provisioning_API_Apps', 'disable'), 'provisioning_api'); +?> \ No newline at end of file diff --git a/apps/provisioning_api/appinfo/version b/apps/provisioning_api/appinfo/version new file mode 100644 index 00000000000..49d59571fbf --- /dev/null +++ b/apps/provisioning_api/appinfo/version @@ -0,0 +1 @@ +0.1 diff --git a/apps/provisioning_api/lib/apps.php b/apps/provisioning_api/lib/apps.php new file mode 100644 index 00000000000..fcb1e5ba8f4 --- /dev/null +++ b/apps/provisioning_api/lib/apps.php @@ -0,0 +1,42 @@ +. +* +*/ + +class OC_Provisioning_API_Apps { + + public static function getApps($parameters){ + + } + + public static function getAppInfo($parameters){ + + } + + public static function enable($parameters){ + + } + + public static function diable($parameters){ + + } + +} \ No newline at end of file diff --git a/apps/provisioning_api/lib/groups.php b/apps/provisioning_api/lib/groups.php new file mode 100644 index 00000000000..7e27eeafb08 --- /dev/null +++ b/apps/provisioning_api/lib/groups.php @@ -0,0 +1,29 @@ +. +* +*/ + +class OC_Provisioning_API_Groups{ + + public static function getGroups($parameters){ + + } +} \ No newline at end of file diff --git a/apps/provisioning_api/lib/users.php b/apps/provisioning_api/lib/users.php new file mode 100644 index 00000000000..77f84f4bb1c --- /dev/null +++ b/apps/provisioning_api/lib/users.php @@ -0,0 +1,70 @@ +. +* +*/ + +class OC_Provisioning_API_Users { + + public static function getUsers($parameters){ + + } + + public static function addUser($parameters){ + + } + + public static function getUser($parameters){ + + } + + public static function editUser($parameters){ + + } + + public static function deleteUser($parameters){ + + } + + public static function getSharedWithUser($parameters){ + + } + + public static function getSharedByUser($parameters){ + + } + + public static function deleteSharedByUser($parameters){ + + } + + public static function getUsersGroups($parameters){ + + } + + public static function addToGroup($parameters){ + + } + + public static function removeFromGroup($parameters){ + + } + +} \ No newline at end of file -- cgit v1.2.3 From caa9182eed93b07d6f47bc1bc629f811172b0a02 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Mon, 30 Jul 2012 15:25:53 +0000 Subject: Updated group methods for provisioning api --- apps/provisioning_api/lib/groups.php | 53 +++++++++++++++++++++++++++++++++++- 1 file changed, 52 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/provisioning_api/lib/groups.php b/apps/provisioning_api/lib/groups.php index 7e27eeafb08..6a18e6b37fc 100644 --- a/apps/provisioning_api/lib/groups.php +++ b/apps/provisioning_api/lib/groups.php @@ -23,7 +23,58 @@ class OC_Provisioning_API_Groups{ + /** + * returns a list of groups + */ public static function getGroups($parameters){ - + $groups = OC_Group::getGroups(); + return empty($groups) ? 404 : $groups; } + + /** + * returns an array of users in the group specified + */ + public static function getGroup($parameters){ + // Check the group exists + if(!OC_Group::groupExists($parameters['groupid'])){ + return 404; + } + return OC_Group::usersInGroup($parameters['groupid']); + } + + /** + * creates a new group + */ + public static function addGroup($parameters){ + // Validate name + if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $parameters['groupid'] ) || empty($parameters['groupid'])){ + return 401; + } + // Check if it exists + if(OC_Group::groupExists($parameters['groupid'])){ + return 409; + } + if(OC_Group::createGroup($parameters['groupid'])){ + return 200; + } else { + return 500; + } + } + + public static function deleteGroup($parameters){ + // Check it exists + if(!OC_Group::groupExists($parameters['groupid'])){ + return 404; + } else if($parameters['groupid'] == 'admin'){ + // Cannot delete admin group + return 403; + } else { + if(OC_Group::deleteGroup($parameters['groupid'])){ + return 200; + } else { + return 500; + } + } + } + } \ No newline at end of file -- cgit v1.2.3 From c4d87c1aff470d77a90b9969160ef0237d93e68b Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Mon, 30 Jul 2012 15:34:47 +0000 Subject: Add methods for getting users and creating users to provisioning api --- apps/provisioning_api/lib/users.php | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/provisioning_api/lib/users.php b/apps/provisioning_api/lib/users.php index 77f84f4bb1c..2bc0434d878 100644 --- a/apps/provisioning_api/lib/users.php +++ b/apps/provisioning_api/lib/users.php @@ -23,14 +23,37 @@ class OC_Provisioning_API_Users { + /** + * returns a list of users + */ public static function getUsers($parameters){ - + return OC_User::getUsers(); } public static function addUser($parameters){ - + try { + OC_User::createUser($parameters['userid'], $parameters['password']); + return 200; + } catch (Exception $e) { + switch($e->getMessage()){ + case 'Only the following characters are allowed in a username: "a-z", "A-Z", "0-9", and "_.@-"': + case 'A valid username must be provided': + case 'A valid password must be provided': + return 400; + break; + case 'The username is already being used'; + return 409; + break; + default: + return 500; + break; + } + } } + /** + * gets user info + */ public static function getUser($parameters){ } -- cgit v1.2.3 From 75dbed22080850b850e2e4befafc6ced557bdba9 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Wed, 1 Aug 2012 14:12:59 +0100 Subject: Fix the api routes --- apps/provisioning_api/appinfo/routes.php | 38 ++++++++++++++++---------------- ocs/routes.php | 4 ++-- 2 files changed, 21 insertions(+), 21 deletions(-) (limited to 'apps') diff --git a/apps/provisioning_api/appinfo/routes.php b/apps/provisioning_api/appinfo/routes.php index dcfaf7b78bc..c942dea537c 100644 --- a/apps/provisioning_api/appinfo/routes.php +++ b/apps/provisioning_api/appinfo/routes.php @@ -22,25 +22,25 @@ */ // users -OCP\API::register('get', '/users', array('OC_Provisioning_API_Users', 'getUsers'), 'provisioning_api'); -OCP\API::register('post', '/users', array('OC_Provisioning_API_Users', 'addUser'), 'provisioning_api'); -OCP\API::register('get', '/users/{userid}', array('OC_Provisioning_API_Users', 'getUser'), 'provisioning_api'); -OCP\API::register('put', '/users/{userid}', array('OC_Provisioning_API_Users', 'editUser'), 'provisioning_api'); -OCP\API::register('delete', '/users/{userid}', array('OC_Provisioning_API_Users', 'getUsers'), 'provisioning_api'); -OCP\API::register('get', '/users/{userid}/sharedwith', array('OC_Provisioning_API_Users', 'getSharedWithUser'), 'provisioning_api'); -OCP\API::register('get', '/users/{userid}/sharedby', array('OC_Provisioning_API_Users', 'getSharedByUser'), 'provisioning_api'); -OCP\API::register('delete', '/users/{userid}/sharedby', array('OC_Provisioning_API_Users', 'deleteSharedByUser'), 'provisioning_api'); -OCP\API::register('get', '/users/{userid}/groups', array('OC_Provisioning_API_Users', 'getUsersGroups'), 'provisioning_api'); -OCP\API::register('post', '/users/{userid}/groups', array('OC_Provisioning_API_Users', 'addToGroup'), 'provisioning_api'); -OCP\API::register('delete', '/users/{userid}/groups', array('OC_Provisioning_API_Users', 'removeFromGroup'), 'provisioning_api'); +OCP\API::register('get', '/cloud/users', array('OC_Provisioning_API_Users', 'getUsers'), 'provisioning_api'); +OCP\API::register('post', '/cloud/users', array('OC_Provisioning_API_Users', 'addUser'), 'provisioning_api'); +OCP\API::register('get', '/cloud/users/{userid}', array('OC_Provisioning_API_Users', 'getUser'), 'provisioning_api'); +OCP\API::register('put', '/cloud/users/{userid}', array('OC_Provisioning_API_Users', 'editUser'), 'provisioning_api'); +OCP\API::register('delete', '/cloud/users/{userid}', array('OC_Provisioning_API_Users', 'getUsers'), 'provisioning_api'); +OCP\API::register('get', '/cloud/users/{userid}/sharedwith', array('OC_Provisioning_API_Users', 'getSharedWithUser'), 'provisioning_api'); +OCP\API::register('get', '/cloud/users/{userid}/sharedby', array('OC_Provisioning_API_Users', 'getSharedByUser'), 'provisioning_api'); +OCP\API::register('delete', '/cloud/users/{userid}/sharedby', array('OC_Provisioning_API_Users', 'deleteSharedByUser'), 'provisioning_api'); +OCP\API::register('get', '/cloud/users/{userid}/groups', array('OC_Provisioning_API_Users', 'getUsersGroups'), 'provisioning_api'); +OCP\API::register('post', '/cloud/users/{userid}/groups', array('OC_Provisioning_API_Users', 'addToGroup'), 'provisioning_api'); +OCP\API::register('delete', '/cloud/users/{userid}/groups', array('OC_Provisioning_API_Users', 'removeFromGroup'), 'provisioning_api'); // groups -OCP\API::register('get', '/groups', array('OC_Provisioning_API_Groups', 'getGroups'), 'provisioning_api'); -OCP\API::register('post', '/groups', array('OC_Provisioning_API_Groups', 'addGroup'), 'provisioning_api'); -OCP\API::register('get', '/groups/{groupid}', array('OC_Provisioning_API_Groups', 'getGroup'), 'provisioning_api'); -OCP\API::register('delete', '/groups/{groupid}', array('OC_Provisioning_API_Groups', 'deleteGroup'), 'provisioning_api'); +OCP\API::register('get', '/cloud/groups', array('OC_Provisioning_API_Groups', 'getGroups'), 'provisioning_api'); +OCP\API::register('post', '/cloud/groups', array('OC_Provisioning_API_Groups', 'addGroup'), 'provisioning_api'); +OCP\API::register('get', '/cloud/groups/{groupid}', array('OC_Provisioning_API_Groups', 'getGroup'), 'provisioning_api'); +OCP\API::register('delete', '/cloud/groups/{groupid}', array('OC_Provisioning_API_Groups', 'deleteGroup'), 'provisioning_api'); // apps -OCP\API::register('get', '/apps', array('OC_Provisioning_API_Apps', 'getApps'), 'provisioning_api'); -OCP\API::register('get', '/apps/{appid}', array('OC_Provisioning_API_Apps', 'getApp'), 'provisioning_api'); -OCP\API::register('post', '/apps/{appid}', array('OC_Provisioning_API_Apps', 'enable'), 'provisioning_api'); -OCP\API::register('delete', '/apps/{appid}', array('OC_Provisioning_API_Apps', 'disable'), 'provisioning_api'); +OCP\API::register('get', '/cloud/apps', array('OC_Provisioning_API_Apps', 'getApps'), 'provisioning_api'); +OCP\API::register('get', '/cloud/apps/{appid}', array('OC_Provisioning_API_Apps', 'getApp'), 'provisioning_api'); +OCP\API::register('post', '/cloud/apps/{appid}', array('OC_Provisioning_API_Apps', 'enable'), 'provisioning_api'); +OCP\API::register('delete', '/cloud/apps/{appid}', array('OC_Provisioning_API_Apps', 'disable'), 'provisioning_api'); ?> \ No newline at end of file diff --git a/ocs/routes.php b/ocs/routes.php index ac23e29af8a..696b17ca23b 100644 --- a/ocs/routes.php +++ b/ocs/routes.php @@ -19,8 +19,8 @@ OC_API::register('post', '/privatedata/setattribute/{app}/{key}', array('OC_OCS_ OC_API::register('post', '/privatedata/deleteattribute/{app}/{key}', array('OC_OCS_Privatedata', 'delete'), 'ocs'); // Cloud OC_API::register('get', '/cloud/system/webapps', array('OC_OCS_Cloud', 'getSystemWebApps'), 'ocs'); -OC_API::register('get', '/cloud/user/{user}', array('OC_OCS_Cloud', 'getUserQuota'), 'ocs'); -OC_API::register('post', '/cloud/user/{user}', array('OC_OCS_Cloud', 'setUserQuota'), 'ocs'); +OC_API::register('get', '/cloud/user/{user}/quota', array('OC_OCS_Cloud', 'getUserQuota'), 'ocs'); +OC_API::register('post', '/cloud/user/{user}/quota', array('OC_OCS_Cloud', 'setUserQuota'), 'ocs'); OC_API::register('get', '/cloud/user/{user}/publickey', array('OC_OCS_Cloud', 'getUserPublicKey'), 'ocs'); OC_API::register('get', '/cloud/user/{user}/privatekey', array('OC_OCS_Cloud', 'getUserPrivateKey'), 'ocs'); -- cgit v1.2.3 From 2c664c60e27df290ba4c1d5de42cf50beac2cfdb Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Wed, 5 Sep 2012 12:27:17 +0000 Subject: API: Fix routes definition --- apps/provisioning_api/appinfo/routes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/provisioning_api/appinfo/routes.php b/apps/provisioning_api/appinfo/routes.php index c942dea537c..6468f814bd8 100644 --- a/apps/provisioning_api/appinfo/routes.php +++ b/apps/provisioning_api/appinfo/routes.php @@ -26,7 +26,7 @@ OCP\API::register('get', '/cloud/users', array('OC_Provisioning_API_Users', 'get OCP\API::register('post', '/cloud/users', array('OC_Provisioning_API_Users', 'addUser'), 'provisioning_api'); OCP\API::register('get', '/cloud/users/{userid}', array('OC_Provisioning_API_Users', 'getUser'), 'provisioning_api'); OCP\API::register('put', '/cloud/users/{userid}', array('OC_Provisioning_API_Users', 'editUser'), 'provisioning_api'); -OCP\API::register('delete', '/cloud/users/{userid}', array('OC_Provisioning_API_Users', 'getUsers'), 'provisioning_api'); +OCP\API::register('delete', '/cloud/users/{userid}', array('OC_Provisioning_API_Users', 'deleteUser'), 'provisioning_api'); OCP\API::register('get', '/cloud/users/{userid}/sharedwith', array('OC_Provisioning_API_Users', 'getSharedWithUser'), 'provisioning_api'); OCP\API::register('get', '/cloud/users/{userid}/sharedby', array('OC_Provisioning_API_Users', 'getSharedByUser'), 'provisioning_api'); OCP\API::register('delete', '/cloud/users/{userid}/sharedby', array('OC_Provisioning_API_Users', 'deleteSharedByUser'), 'provisioning_api'); @@ -40,7 +40,7 @@ OCP\API::register('get', '/cloud/groups/{groupid}', array('OC_Provisioning_API_G OCP\API::register('delete', '/cloud/groups/{groupid}', array('OC_Provisioning_API_Groups', 'deleteGroup'), 'provisioning_api'); // apps OCP\API::register('get', '/cloud/apps', array('OC_Provisioning_API_Apps', 'getApps'), 'provisioning_api'); -OCP\API::register('get', '/cloud/apps/{appid}', array('OC_Provisioning_API_Apps', 'getApp'), 'provisioning_api'); +OCP\API::register('get', '/cloud/apps/{appid}', array('OC_Provisioning_API_Apps', 'getAppInfo'), 'provisioning_api'); OCP\API::register('post', '/cloud/apps/{appid}', array('OC_Provisioning_API_Apps', 'enable'), 'provisioning_api'); OCP\API::register('delete', '/cloud/apps/{appid}', array('OC_Provisioning_API_Apps', 'disable'), 'provisioning_api'); ?> \ No newline at end of file -- cgit v1.2.3 From 3717969fb1e92b9f06e5dd693feb91036d19654d Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Wed, 5 Sep 2012 12:30:24 +0000 Subject: API: Add provisioning api methods for apps --- apps/provisioning_api/lib/apps.php | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) (limited to 'apps') diff --git a/apps/provisioning_api/lib/apps.php b/apps/provisioning_api/lib/apps.php index fcb1e5ba8f4..ef23d8d5a06 100644 --- a/apps/provisioning_api/lib/apps.php +++ b/apps/provisioning_api/lib/apps.php @@ -24,19 +24,41 @@ class OC_Provisioning_API_Apps { public static function getApps($parameters){ - + $filter = isset($_GET['filter']) ? $_GET['filter'] : false; + if($filter){ + switch($filter){ + case 'enabled': + return array('apps' => OC_App::getEnabledApps()); + break; + case 'disabled': + $apps = OC_App::getAllApps(); + $enabled = OC_App::getEnabledApps(); + return array('apps' => array_diff($apps, $enabled)); + break; + default: + // Invalid filter variable + return 101; + break; + } + + } else { + return array('apps' => OC_App::getAllApps()); + } } public static function getAppInfo($parameters){ - + $app = $parameters['appid']; + return OC_App::getAppInfo($app); } public static function enable($parameters){ - + $app = $parameters['appid']; + OC_App::enable($app); } public static function diable($parameters){ - + $app = $parameters['appid']; + OC_App::disable($app); } } \ No newline at end of file -- cgit v1.2.3 From 6c98a94d3deb5a50fed57c5752999d60601e4af5 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Wed, 5 Sep 2012 12:32:29 +0000 Subject: API: Fix addUser and added getUser methods --- apps/provisioning_api/lib/users.php | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) (limited to 'apps') diff --git a/apps/provisioning_api/lib/users.php b/apps/provisioning_api/lib/users.php index 2bc0434d878..93eef495e3f 100644 --- a/apps/provisioning_api/lib/users.php +++ b/apps/provisioning_api/lib/users.php @@ -30,22 +30,24 @@ class OC_Provisioning_API_Users { return OC_User::getUsers(); } - public static function addUser($parameters){ + public static function addUser(){ + $userid = isset($_POST['userid']) ? $_POST['userid'] : null; + $password = isset($_POST['password']) ? $_POST['password'] : null; try { - OC_User::createUser($parameters['userid'], $parameters['password']); - return 200; + OC_User::createUser($userid, $password); + return 100; } catch (Exception $e) { switch($e->getMessage()){ case 'Only the following characters are allowed in a username: "a-z", "A-Z", "0-9", and "_.@-"': case 'A valid username must be provided': case 'A valid password must be provided': - return 400; + return 101; break; case 'The username is already being used'; - return 409; + return 102; break; default: - return 500; + return 103; break; } } @@ -55,7 +57,12 @@ class OC_Provisioning_API_Users { * gets user info */ public static function getUser($parameters){ - + $userid = $parameters['userid']; + $return = array(); + $return['email'] = OC_Preferences::getValue($userid, 'settings', 'email', ''); + $default = OC_Appconfig::getValue('files', 'default_quota', 0); + $return['quota'] = OC_Preferences::getValue($userid, 'files', 'quota', $default); + return $return; } public static function editUser($parameters){ @@ -79,7 +86,8 @@ class OC_Provisioning_API_Users { } public static function getUsersGroups($parameters){ - + $userid = $parameters['userid']; + return array('groups' => OC_Group::getUserGroups($userid)); } public static function addToGroup($parameters){ -- cgit v1.2.3 From 6fbc1d74c4d492485c3a2813839dbda6aa68d8cd Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Wed, 5 Sep 2012 12:40:29 +0000 Subject: API: Fix responses of enable and disable app methods --- apps/provisioning_api/lib/apps.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/provisioning_api/lib/apps.php b/apps/provisioning_api/lib/apps.php index ef23d8d5a06..0cac183e4e3 100644 --- a/apps/provisioning_api/lib/apps.php +++ b/apps/provisioning_api/lib/apps.php @@ -54,11 +54,13 @@ class OC_Provisioning_API_Apps { public static function enable($parameters){ $app = $parameters['appid']; OC_App::enable($app); + return 100; } - public static function diable($parameters){ + public static function disable($parameters){ $app = $parameters['appid']; OC_App::disable($app); + return 100; } } \ No newline at end of file -- cgit v1.2.3 From 707f74226f5438e825dbe443dd227fbf41c6a3c9 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Wed, 5 Sep 2012 12:49:25 +0000 Subject: API: /cloud/groups use OCS response codes, fix response of getGroups, fix addGroup --- apps/provisioning_api/lib/groups.php | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'apps') diff --git a/apps/provisioning_api/lib/groups.php b/apps/provisioning_api/lib/groups.php index 6a18e6b37fc..0dc93197822 100644 --- a/apps/provisioning_api/lib/groups.php +++ b/apps/provisioning_api/lib/groups.php @@ -27,8 +27,7 @@ class OC_Provisioning_API_Groups{ * returns a list of groups */ public static function getGroups($parameters){ - $groups = OC_Group::getGroups(); - return empty($groups) ? 404 : $groups; + return array('groups' => OC_Group::getGroups()); } /** @@ -37,9 +36,9 @@ class OC_Provisioning_API_Groups{ public static function getGroup($parameters){ // Check the group exists if(!OC_Group::groupExists($parameters['groupid'])){ - return 404; + return 101; } - return OC_Group::usersInGroup($parameters['groupid']); + return array('users' => OC_Group::usersInGroup($parameters['groupid'])); } /** @@ -47,32 +46,33 @@ class OC_Provisioning_API_Groups{ */ public static function addGroup($parameters){ // Validate name - if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $parameters['groupid'] ) || empty($parameters['groupid'])){ - return 401; + $groupid = isset($_POST['groupid']) ? $_POST['groupid'] : ''; + if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $groupid ) || empty($groupid)){ + return 101; } // Check if it exists - if(OC_Group::groupExists($parameters['groupid'])){ - return 409; + if(OC_Group::groupExists($groupid)){ + return 102; } - if(OC_Group::createGroup($parameters['groupid'])){ - return 200; + if(OC_Group::createGroup($groupid)){ + return 100; } else { - return 500; + return 103; } } public static function deleteGroup($parameters){ // Check it exists if(!OC_Group::groupExists($parameters['groupid'])){ - return 404; + return 101; } else if($parameters['groupid'] == 'admin'){ // Cannot delete admin group - return 403; + return 102; } else { if(OC_Group::deleteGroup($parameters['groupid'])){ - return 200; + return 100; } else { - return 500; + return 103; } } } -- cgit v1.2.3 From a0452180b05388b5c31f2cbab9e53c542f3b8cc2 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Thu, 13 Sep 2012 10:28:05 +0000 Subject: Remove provisioning_api apps from core --- apps/provisioning_api/appinfo/app.php | 27 --------- apps/provisioning_api/appinfo/info.xml | 11 ---- apps/provisioning_api/appinfo/routes.php | 46 -------------- apps/provisioning_api/appinfo/version | 1 - apps/provisioning_api/lib/apps.php | 66 -------------------- apps/provisioning_api/lib/groups.php | 80 ------------------------ apps/provisioning_api/lib/users.php | 101 ------------------------------- 7 files changed, 332 deletions(-) delete mode 100644 apps/provisioning_api/appinfo/app.php delete mode 100644 apps/provisioning_api/appinfo/info.xml delete mode 100644 apps/provisioning_api/appinfo/routes.php delete mode 100644 apps/provisioning_api/appinfo/version delete mode 100644 apps/provisioning_api/lib/apps.php delete mode 100644 apps/provisioning_api/lib/groups.php delete mode 100644 apps/provisioning_api/lib/users.php (limited to 'apps') diff --git a/apps/provisioning_api/appinfo/app.php b/apps/provisioning_api/appinfo/app.php deleted file mode 100644 index 992ee23b5c9..00000000000 --- a/apps/provisioning_api/appinfo/app.php +++ /dev/null @@ -1,27 +0,0 @@ -. -* -*/ - -OC::$CLASSPATH['OC_Provisioning_API_Users'] = 'apps/provisioning_api/lib/users.php'; -OC::$CLASSPATH['OC_Provisioning_API_Groups'] = 'apps/provisioning_api/lib/groups.php'; -OC::$CLASSPATH['OC_Provisioning_API_Apps'] = 'apps/provisioning_api/lib/apps.php'; -?> \ No newline at end of file diff --git a/apps/provisioning_api/appinfo/info.xml b/apps/provisioning_api/appinfo/info.xml deleted file mode 100644 index eb96115507a..00000000000 --- a/apps/provisioning_api/appinfo/info.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - provisioning_api - Provisioning API - AGPL - Tom Needham - 5 - true - Provides API methods to manage an ownCloud Instance - - diff --git a/apps/provisioning_api/appinfo/routes.php b/apps/provisioning_api/appinfo/routes.php deleted file mode 100644 index 6468f814bd8..00000000000 --- a/apps/provisioning_api/appinfo/routes.php +++ /dev/null @@ -1,46 +0,0 @@ -. -* -*/ - -// users -OCP\API::register('get', '/cloud/users', array('OC_Provisioning_API_Users', 'getUsers'), 'provisioning_api'); -OCP\API::register('post', '/cloud/users', array('OC_Provisioning_API_Users', 'addUser'), 'provisioning_api'); -OCP\API::register('get', '/cloud/users/{userid}', array('OC_Provisioning_API_Users', 'getUser'), 'provisioning_api'); -OCP\API::register('put', '/cloud/users/{userid}', array('OC_Provisioning_API_Users', 'editUser'), 'provisioning_api'); -OCP\API::register('delete', '/cloud/users/{userid}', array('OC_Provisioning_API_Users', 'deleteUser'), 'provisioning_api'); -OCP\API::register('get', '/cloud/users/{userid}/sharedwith', array('OC_Provisioning_API_Users', 'getSharedWithUser'), 'provisioning_api'); -OCP\API::register('get', '/cloud/users/{userid}/sharedby', array('OC_Provisioning_API_Users', 'getSharedByUser'), 'provisioning_api'); -OCP\API::register('delete', '/cloud/users/{userid}/sharedby', array('OC_Provisioning_API_Users', 'deleteSharedByUser'), 'provisioning_api'); -OCP\API::register('get', '/cloud/users/{userid}/groups', array('OC_Provisioning_API_Users', 'getUsersGroups'), 'provisioning_api'); -OCP\API::register('post', '/cloud/users/{userid}/groups', array('OC_Provisioning_API_Users', 'addToGroup'), 'provisioning_api'); -OCP\API::register('delete', '/cloud/users/{userid}/groups', array('OC_Provisioning_API_Users', 'removeFromGroup'), 'provisioning_api'); -// groups -OCP\API::register('get', '/cloud/groups', array('OC_Provisioning_API_Groups', 'getGroups'), 'provisioning_api'); -OCP\API::register('post', '/cloud/groups', array('OC_Provisioning_API_Groups', 'addGroup'), 'provisioning_api'); -OCP\API::register('get', '/cloud/groups/{groupid}', array('OC_Provisioning_API_Groups', 'getGroup'), 'provisioning_api'); -OCP\API::register('delete', '/cloud/groups/{groupid}', array('OC_Provisioning_API_Groups', 'deleteGroup'), 'provisioning_api'); -// apps -OCP\API::register('get', '/cloud/apps', array('OC_Provisioning_API_Apps', 'getApps'), 'provisioning_api'); -OCP\API::register('get', '/cloud/apps/{appid}', array('OC_Provisioning_API_Apps', 'getAppInfo'), 'provisioning_api'); -OCP\API::register('post', '/cloud/apps/{appid}', array('OC_Provisioning_API_Apps', 'enable'), 'provisioning_api'); -OCP\API::register('delete', '/cloud/apps/{appid}', array('OC_Provisioning_API_Apps', 'disable'), 'provisioning_api'); -?> \ No newline at end of file diff --git a/apps/provisioning_api/appinfo/version b/apps/provisioning_api/appinfo/version deleted file mode 100644 index 49d59571fbf..00000000000 --- a/apps/provisioning_api/appinfo/version +++ /dev/null @@ -1 +0,0 @@ -0.1 diff --git a/apps/provisioning_api/lib/apps.php b/apps/provisioning_api/lib/apps.php deleted file mode 100644 index 0cac183e4e3..00000000000 --- a/apps/provisioning_api/lib/apps.php +++ /dev/null @@ -1,66 +0,0 @@ -. -* -*/ - -class OC_Provisioning_API_Apps { - - public static function getApps($parameters){ - $filter = isset($_GET['filter']) ? $_GET['filter'] : false; - if($filter){ - switch($filter){ - case 'enabled': - return array('apps' => OC_App::getEnabledApps()); - break; - case 'disabled': - $apps = OC_App::getAllApps(); - $enabled = OC_App::getEnabledApps(); - return array('apps' => array_diff($apps, $enabled)); - break; - default: - // Invalid filter variable - return 101; - break; - } - - } else { - return array('apps' => OC_App::getAllApps()); - } - } - - public static function getAppInfo($parameters){ - $app = $parameters['appid']; - return OC_App::getAppInfo($app); - } - - public static function enable($parameters){ - $app = $parameters['appid']; - OC_App::enable($app); - return 100; - } - - public static function disable($parameters){ - $app = $parameters['appid']; - OC_App::disable($app); - return 100; - } - -} \ No newline at end of file diff --git a/apps/provisioning_api/lib/groups.php b/apps/provisioning_api/lib/groups.php deleted file mode 100644 index 0dc93197822..00000000000 --- a/apps/provisioning_api/lib/groups.php +++ /dev/null @@ -1,80 +0,0 @@ -. -* -*/ - -class OC_Provisioning_API_Groups{ - - /** - * returns a list of groups - */ - public static function getGroups($parameters){ - return array('groups' => OC_Group::getGroups()); - } - - /** - * returns an array of users in the group specified - */ - public static function getGroup($parameters){ - // Check the group exists - if(!OC_Group::groupExists($parameters['groupid'])){ - return 101; - } - return array('users' => OC_Group::usersInGroup($parameters['groupid'])); - } - - /** - * creates a new group - */ - public static function addGroup($parameters){ - // Validate name - $groupid = isset($_POST['groupid']) ? $_POST['groupid'] : ''; - if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $groupid ) || empty($groupid)){ - return 101; - } - // Check if it exists - if(OC_Group::groupExists($groupid)){ - return 102; - } - if(OC_Group::createGroup($groupid)){ - return 100; - } else { - return 103; - } - } - - public static function deleteGroup($parameters){ - // Check it exists - if(!OC_Group::groupExists($parameters['groupid'])){ - return 101; - } else if($parameters['groupid'] == 'admin'){ - // Cannot delete admin group - return 102; - } else { - if(OC_Group::deleteGroup($parameters['groupid'])){ - return 100; - } else { - return 103; - } - } - } - -} \ No newline at end of file diff --git a/apps/provisioning_api/lib/users.php b/apps/provisioning_api/lib/users.php deleted file mode 100644 index 93eef495e3f..00000000000 --- a/apps/provisioning_api/lib/users.php +++ /dev/null @@ -1,101 +0,0 @@ -. -* -*/ - -class OC_Provisioning_API_Users { - - /** - * returns a list of users - */ - public static function getUsers($parameters){ - return OC_User::getUsers(); - } - - public static function addUser(){ - $userid = isset($_POST['userid']) ? $_POST['userid'] : null; - $password = isset($_POST['password']) ? $_POST['password'] : null; - try { - OC_User::createUser($userid, $password); - return 100; - } catch (Exception $e) { - switch($e->getMessage()){ - case 'Only the following characters are allowed in a username: "a-z", "A-Z", "0-9", and "_.@-"': - case 'A valid username must be provided': - case 'A valid password must be provided': - return 101; - break; - case 'The username is already being used'; - return 102; - break; - default: - return 103; - break; - } - } - } - - /** - * gets user info - */ - public static function getUser($parameters){ - $userid = $parameters['userid']; - $return = array(); - $return['email'] = OC_Preferences::getValue($userid, 'settings', 'email', ''); - $default = OC_Appconfig::getValue('files', 'default_quota', 0); - $return['quota'] = OC_Preferences::getValue($userid, 'files', 'quota', $default); - return $return; - } - - public static function editUser($parameters){ - - } - - public static function deleteUser($parameters){ - - } - - public static function getSharedWithUser($parameters){ - - } - - public static function getSharedByUser($parameters){ - - } - - public static function deleteSharedByUser($parameters){ - - } - - public static function getUsersGroups($parameters){ - $userid = $parameters['userid']; - return array('groups' => OC_Group::getUserGroups($userid)); - } - - public static function addToGroup($parameters){ - - } - - public static function removeFromGroup($parameters){ - - } - -} \ No newline at end of file -- cgit v1.2.3 From b07944798848bc5196dc75e8d8caea5ca71b0f15 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Sun, 28 Oct 2012 11:06:47 +0000 Subject: Add API method for sharing a file, currently only via a link. --- apps/files_sharing/appinfo/app.php | 3 ++- apps/files_sharing/appinfo/routes.php | 24 ++++++++++++++++++ apps/files_sharing/lib/api.php | 46 +++++++++++++++++++++++++++++++++++ lib/api.php | 2 +- 4 files changed, 73 insertions(+), 2 deletions(-) create mode 100644 apps/files_sharing/appinfo/routes.php create mode 100644 apps/files_sharing/lib/api.php (limited to 'apps') diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index 109f86b2e87..1402a146454 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -3,7 +3,8 @@ OC::$CLASSPATH['OC_Share_Backend_File'] = "apps/files_sharing/lib/share/file.php"; OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'apps/files_sharing/lib/share/folder.php'; OC::$CLASSPATH['OC_Filestorage_Shared'] = "apps/files_sharing/lib/sharedstorage.php"; +OC::$CLASSPATH['OC_Sharing_API'] = "apps/files_sharing/lib/api.php"; OCP\Util::connectHook('OC_Filesystem', 'setup', 'OC_Filestorage_Shared', 'setup'); OCP\Share::registerBackend('file', 'OC_Share_Backend_File'); OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file'); -OCP\Util::addScript('files_sharing', 'share'); +OCP\Util::addScript('files_sharing', 'share'); \ No newline at end of file diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php new file mode 100644 index 00000000000..d10607aa600 --- /dev/null +++ b/apps/files_sharing/appinfo/routes.php @@ -0,0 +1,24 @@ +. +* +*/ +OCP\API::register('post', '/cloud/files/share/{type}/{path}', array('OC_Sharing_API', 'shareFile'), 'files_sharing', OC_API::USER_AUTH, array(), array('type' => 'user|group|link|email|contact|remote', 'path' => '.*')); + +?> \ No newline at end of file diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php new file mode 100644 index 00000000000..b1dc0d9e68e --- /dev/null +++ b/apps/files_sharing/lib/api.php @@ -0,0 +1,46 @@ + OCP\Share::SHARE_TYPE_USER, + 'group' => OCP\Share::SHARE_TYPE_GROUP, + 'link' => OCP\Share::SHARE_TYPE_LINK, + 'email' => OCP\Share::SHARE_TYPE_EMAIL, + 'contact' => OCP\Share::SHARE_TYPE_CONTACT, + 'remote' => OCP\Share::SHARE_TYPE_USER, + ); + $type = $typemap[$parameters['type']]; + $shareWith = isset($_POST['shareWith']) ? $_POST['shareWith'] : ''; + $permissionstring = isset($_POST['permissions']) ? $_POST['permissions'] : ''; + $permissionmap = array( + 'C' => OCP\Share::PERMISSION_CREATE, + 'R' => OCP\Share::PERMISSION_READ, + 'U' => OCP\Share::PERMISSION_UPDATE, + 'D' => OCP\Share::PERMISSION_DELETE, + 'S' => OCP\Share::PERMISSION_SHARE, + ); + $permissions = 0; + foreach($permissionmap as $letter => $permission) { + if(strpos($permissionstring, $letter) !== false) { + $permissions += $permission; + } + } + + try { + OCP\Share::shareItem('file', $fileid, $type, $shareWith, $permissions); + } catch (Exception $e){ + error_log($e->getMessage()); + } + switch($type){ + case OCP\Share::SHARE_TYPE_LINK: + return array('url' => OC_Helper::linkToPublic('files') . '&file=' . OC_User::getUser() . '/files' . $path); + break; + } + + } + +} \ No newline at end of file diff --git a/lib/api.php b/lib/api.php index 29403030233..d11c3799d9a 100644 --- a/lib/api.php +++ b/lib/api.php @@ -91,7 +91,7 @@ class OC_API { // Loop through registered actions foreach(self::$actions[$name] as $action){ $app = $action['app']; - // Authorsie this call + // Authorise this call if(self::isAuthorised($action)){ if(is_callable($action['action'])){ $responses[] = array('app' => $app, 'response' => call_user_func($action['action'], $parameters)); -- cgit v1.2.3 From 6675a46679ca85d28b1122e832fd0e85d4eb4d15 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Sun, 28 Oct 2012 15:03:21 +0000 Subject: Fix url generated for public shared files --- apps/files_sharing/lib/api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index b1dc0d9e68e..b450b359a4b 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -14,7 +14,7 @@ class OC_Sharing_API { 'remote' => OCP\Share::SHARE_TYPE_USER, ); $type = $typemap[$parameters['type']]; - $shareWith = isset($_POST['shareWith']) ? $_POST['shareWith'] : ''; + $shareWith = isset($_POST['shareWith']) ? $_POST['shareWith'] : null; $permissionstring = isset($_POST['permissions']) ? $_POST['permissions'] : ''; $permissionmap = array( 'C' => OCP\Share::PERMISSION_CREATE, @@ -37,7 +37,7 @@ class OC_Sharing_API { } switch($type){ case OCP\Share::SHARE_TYPE_LINK: - return array('url' => OC_Helper::linkToPublic('files') . '&file=' . OC_User::getUser() . '/files' . $path); + return array('url' => OC_Helper::linkToPublic('files') . '&file=/' . OC_User::getUser() . '/files' . $path); break; } -- cgit v1.2.3 From 43917e187b91d8b235c37fa873de306f83e61b36 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Wed, 31 Oct 2012 11:31:19 +0000 Subject: External Share API: Move url down one level in response --- apps/files_sharing/appinfo/routes.php | 1 - apps/files_sharing/lib/api.php | 3 ++- apps/files_sharing/tests/api.php | 13 +++++++++++++ apps2 | 1 + 4 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 apps/files_sharing/tests/api.php create mode 160000 apps2 (limited to 'apps') diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index d10607aa600..180dde635ad 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -20,5 +20,4 @@ * */ OCP\API::register('post', '/cloud/files/share/{type}/{path}', array('OC_Sharing_API', 'shareFile'), 'files_sharing', OC_API::USER_AUTH, array(), array('type' => 'user|group|link|email|contact|remote', 'path' => '.*')); - ?> \ No newline at end of file diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index b450b359a4b..151e6d6cfd4 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -37,7 +37,8 @@ class OC_Sharing_API { } switch($type){ case OCP\Share::SHARE_TYPE_LINK: - return array('url' => OC_Helper::linkToPublic('files') . '&file=/' . OC_User::getUser() . '/files' . $path); + $link = OC_Helper::linkToPublic('files') . '&file=/' . OC_User::getUser() . '/files' . $path; + return array('link' => array('url' => $link)); break; } diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php new file mode 100644 index 00000000000..65d4b87089c --- /dev/null +++ b/apps/files_sharing/tests/api.php @@ -0,0 +1,13 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Share_API extends UnitTestCase { + + function test + +} \ No newline at end of file diff --git a/apps2 b/apps2 new file mode 160000 index 00000000000..5108f1f8c21 --- /dev/null +++ b/apps2 @@ -0,0 +1 @@ +Subproject commit 5108f1f8c21117c164ca0627b22f322a5725154d -- cgit v1.2.3 From 3e39c39d6a106af08898d52e1015142d9c411365 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 21 Dec 2012 00:11:31 +0100 Subject: [tx-robot] updated from transifex --- apps/files_external/l10n/nl.php | 2 + apps/user_ldap/l10n/de_DE.php | 1 + apps/user_ldap/l10n/nl.php | 2 + apps/user_webdavauth/l10n/cs_CZ.php | 3 +- apps/user_webdavauth/l10n/de_DE.php | 2 +- apps/user_webdavauth/l10n/ja_JP.php | 3 +- apps/user_webdavauth/l10n/nl.php | 3 +- apps/user_webdavauth/l10n/pl.php | 2 +- apps/user_webdavauth/l10n/ru_RU.php | 2 +- core/l10n/nl.php | 8 ++++ l10n/ar/settings.po | 6 +-- l10n/bg_BG/settings.po | 6 +-- l10n/ca/settings.po | 6 +-- l10n/cs_CZ/settings.po | 32 +++++++-------- l10n/cs_CZ/user_webdavauth.po | 10 ++--- l10n/da/settings.po | 6 +-- l10n/de/settings.po | 6 +-- l10n/de_DE/settings.po | 35 ++++++++-------- l10n/de_DE/user_ldap.po | 9 +++-- l10n/de_DE/user_webdavauth.po | 9 +++-- l10n/el/settings.po | 6 +-- l10n/eo/settings.po | 6 +-- l10n/es/settings.po | 6 +-- l10n/es_AR/settings.po | 6 +-- l10n/et_EE/settings.po | 6 +-- l10n/eu/settings.po | 6 +-- l10n/fa/settings.po | 6 +-- l10n/fi_FI/settings.po | 6 +-- l10n/fr/settings.po | 6 +-- l10n/gl/settings.po | 6 +-- l10n/he/settings.po | 6 +-- l10n/hr/settings.po | 6 +-- l10n/hu_HU/settings.po | 6 +-- l10n/ia/settings.po | 6 +-- l10n/id/settings.po | 6 +-- l10n/it/settings.po | 32 +++++++-------- l10n/ja_JP/settings.po | 33 +++++++-------- l10n/ja_JP/user_webdavauth.po | 11 ++--- l10n/ka_GE/settings.po | 6 +-- l10n/ko/settings.po | 6 +-- l10n/lb/settings.po | 6 +-- l10n/lt_LT/settings.po | 6 +-- l10n/mk/settings.po | 6 +-- l10n/ms_MY/settings.po | 6 +-- l10n/nb_NO/settings.po | 6 +-- l10n/nl/core.po | 80 ++++++++++++++++++------------------- l10n/nl/files_external.po | 17 ++++---- l10n/nl/settings.po | 33 +++++++-------- l10n/nl/user_ldap.po | 11 ++--- l10n/nl/user_webdavauth.po | 11 ++--- l10n/nn_NO/settings.po | 6 +-- l10n/oc/settings.po | 6 +-- l10n/pl/settings.po | 6 +-- l10n/pl/user_webdavauth.po | 9 +++-- l10n/pt_BR/settings.po | 6 +-- l10n/pt_PT/settings.po | 6 +-- l10n/ro/settings.po | 6 +-- l10n/ru/settings.po | 6 +-- l10n/ru_RU/settings.po | 6 +-- l10n/ru_RU/user_webdavauth.po | 9 +++-- l10n/si_LK/settings.po | 6 +-- l10n/sk_SK/settings.po | 6 +-- l10n/sl/settings.po | 6 +-- l10n/sr/settings.po | 6 +-- l10n/sr@latin/settings.po | 6 +-- l10n/sv/settings.po | 6 +-- l10n/ta_LK/settings.po | 6 +-- l10n/templates/core.pot | 18 ++++----- l10n/templates/files.pot | 38 +++++++++--------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/settings.po | 6 +-- l10n/tr/settings.po | 6 +-- l10n/uk/settings.po | 6 +-- l10n/vi/settings.po | 6 +-- l10n/zh_CN.GB2312/settings.po | 6 +-- l10n/zh_CN/settings.po | 6 +-- l10n/zh_TW/settings.po | 6 +-- settings/l10n/ar.php | 1 + settings/l10n/bg_BG.php | 1 + settings/l10n/ca.php | 1 + settings/l10n/cs_CZ.php | 13 ++++++ settings/l10n/da.php | 1 + settings/l10n/de.php | 1 + settings/l10n/de_DE.php | 15 ++++++- settings/l10n/el.php | 1 + settings/l10n/eo.php | 1 + settings/l10n/es.php | 1 + settings/l10n/es_AR.php | 1 + settings/l10n/et_EE.php | 1 + settings/l10n/eu.php | 1 + settings/l10n/fa.php | 1 + settings/l10n/fi_FI.php | 1 + settings/l10n/fr.php | 1 + settings/l10n/gl.php | 1 + settings/l10n/he.php | 1 + settings/l10n/hr.php | 1 + settings/l10n/hu_HU.php | 1 + settings/l10n/ia.php | 1 + settings/l10n/id.php | 1 + settings/l10n/it.php | 13 ++++++ settings/l10n/ja_JP.php | 13 ++++++ settings/l10n/ka_GE.php | 1 + settings/l10n/ko.php | 1 + settings/l10n/lb.php | 1 + settings/l10n/lt_LT.php | 1 + settings/l10n/mk.php | 1 + settings/l10n/ms_MY.php | 1 + settings/l10n/nb_NO.php | 1 + settings/l10n/nl.php | 13 ++++++ settings/l10n/nn_NO.php | 1 + settings/l10n/oc.php | 1 + settings/l10n/pl.php | 1 + settings/l10n/pt_BR.php | 1 + settings/l10n/pt_PT.php | 1 + settings/l10n/ro.php | 1 + settings/l10n/ru.php | 1 + settings/l10n/ru_RU.php | 1 + settings/l10n/si_LK.php | 1 + settings/l10n/sk_SK.php | 1 + settings/l10n/sl.php | 1 + settings/l10n/sr.php | 1 + settings/l10n/sr@latin.php | 1 + settings/l10n/sv.php | 1 + settings/l10n/ta_LK.php | 1 + settings/l10n/th_TH.php | 1 + settings/l10n/tr.php | 1 + settings/l10n/uk.php | 1 + settings/l10n/vi.php | 1 + settings/l10n/zh_CN.GB2312.php | 1 + settings/l10n/zh_CN.php | 1 + settings/l10n/zh_TW.php | 1 + 138 files changed, 496 insertions(+), 355 deletions(-) (limited to 'apps') diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index d0c0b02b8f8..132c8cf3ac2 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "Vul alle verplichte in", "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", +"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.", "External Storage" => "Externe opslag", "Mount point" => "Aankoppelpunt", "Backend" => "Backend", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index e6288c78af4..82877b5ca1b 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -1,4 +1,5 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://", "Base DN" => "Basis-DN", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index 84c36881f9a..23e9a15c010 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, de backend zal dus niet werken. Vraag uw beheerder de module te installeren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval met ldaps://", "Base DN" => "Basis DN", diff --git a/apps/user_webdavauth/l10n/cs_CZ.php b/apps/user_webdavauth/l10n/cs_CZ.php index a5b7e56771f..5cb9b4c3704 100644 --- a/apps/user_webdavauth/l10n/cs_CZ.php +++ b/apps/user_webdavauth/l10n/cs_CZ.php @@ -1,3 +1,4 @@ "URL WebDAV: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud odešle přihlašovací údaje uživatele na URL a z návratové hodnoty určí stav přihlášení. Http 401 a 403 vyhodnotí jako neplatné údaje a všechny ostatní jako úspěšné přihlášení." ); diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/de_DE.php +++ b/apps/user_webdavauth/l10n/de_DE.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/ja_JP.php b/apps/user_webdavauth/l10n/ja_JP.php index 9bd32954b05..8643805ffcc 100644 --- a/apps/user_webdavauth/l10n/ja_JP.php +++ b/apps/user_webdavauth/l10n/ja_JP.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloudのこのURLへのユーザ資格情報の送信は、資格情報が間違っている場合はHTTP401もしくは403を返し、正しい場合は全てのコードを返します。" ); diff --git a/apps/user_webdavauth/l10n/nl.php b/apps/user_webdavauth/l10n/nl.php index 9bd32954b05..687442fb665 100644 --- a/apps/user_webdavauth/l10n/nl.php +++ b/apps/user_webdavauth/l10n/nl.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud zal de inloggegevens naar deze URL als geïnterpreteerde http 401 en http 403 als de inloggegevens onjuist zijn. Andere codes als de inloggegevens correct zijn." ); diff --git a/apps/user_webdavauth/l10n/pl.php b/apps/user_webdavauth/l10n/pl.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/pl.php +++ b/apps/user_webdavauth/l10n/pl.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/ru_RU.php b/apps/user_webdavauth/l10n/ru_RU.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/ru_RU.php +++ b/apps/user_webdavauth/l10n/ru_RU.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 89bb322773d..c3f5c887658 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -1,4 +1,8 @@ "Gebruiker %s deelde een bestand met u", +"User %s shared a folder with you" => "Gebruiker %s deelde een map met u", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde bestand \"%s\" met u. Het is hier te downloaden: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s", "Category type not provided." => "Categorie type niet opgegeven.", "No category to add?" => "Geen categorie toevoegen?", "This category already exists: " => "Deze categorie bestaat al.", @@ -39,6 +43,8 @@ "Share with link" => "Deel met link", "Password protect" => "Wachtwoord beveiliging", "Password" => "Wachtwoord", +"Email link to person" => "E-mail link naar persoon", +"Send" => "Versturen", "Set expiration date" => "Stel vervaldatum in", "Expiration date" => "Vervaldatum", "Share via email:" => "Deel via email:", @@ -55,6 +61,8 @@ "Password protected" => "Wachtwoord beveiligd", "Error unsetting expiration date" => "Fout tijdens het verwijderen van de verval datum", "Error setting expiration date" => "Fout tijdens het instellen van de vervaldatum", +"Sending ..." => "Versturen ...", +"Email sent" => "E-mail verzonden", "ownCloud password reset" => "ownCloud wachtwoord herstellen", "Use the following link to reset your password: {link}" => "Gebruik de volgende link om je wachtwoord te resetten: {link}", "You will receive a link to reset your password via Email." => "U ontvangt een link om uw wachtwoord opnieuw in te stellen via e-mail.", diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 4ccf4fd4202..9d5c9b6e9e3 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "الزبائن" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 76380b18681..8350e56bea4 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клиенти" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 331a63af1a7..87be5707738 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -151,7 +151,7 @@ msgstr "Heu utilitzat %s d'un total disponible de %s\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 19:53+0000\n" +"Last-Translator: Tomáš Chvátal \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" @@ -123,27 +123,27 @@ msgstr "-licencováno %s z %s dostupných" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klienti" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Stáhnout klienty pro počítač" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Stáhnout klienta pro android" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Stáhnout klienta pro iOS" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -216,15 +216,15 @@ msgstr "Pomoci s překladem" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Verze" #: templates/personal.php:65 msgid "" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index c6d6edace6f..3545665816d 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 19:51+0000\n" +"Last-Translator: Tomáš Chvátal \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" @@ -20,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud odešle přihlašovací údaje uživatele na URL a z návratové hodnoty určí stav přihlášení. Http 401 a 403 vyhodnotí jako neplatné údaje a všechny ostatní jako úspěšné přihlášení." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 9fb7f125016..10983e3830e 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -155,7 +155,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klienter" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index cbc4d58803d..6ea2029ea1f 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -163,7 +163,7 @@ msgstr "Du verwendest %s der verfügbaren %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Kunden" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 62f52d34b42..f1f9d99b929 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -18,14 +18,15 @@ # Phi Lieb <>, 2012. # , 2012. # , 2012. +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 18:46+0000\n" +"Last-Translator: traductor \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" @@ -133,27 +134,27 @@ msgstr "-lizenziert von %s der verfügbaren %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Kunden" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Desktop-Client herunterladen" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Android-Client herunterladen" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "iOS-Client herunterladen" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -226,15 +227,15 @@ msgstr "Helfen Sie bei der Übersetzung" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Version" #: templates/personal.php:65 msgid "" @@ -244,7 +245,7 @@ msgid "" "licensed under the AGPL." -msgstr "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert." +msgstr "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert." #: templates/users.php:21 templates/users.php:76 msgid "Name" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 8e59bdac23d..0d720cd286f 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -8,14 +8,15 @@ # Maurice Preuß <>, 2012. # , 2012. # Phi Lieb <>, 2012. +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 18:43+0000\n" +"Last-Translator: traductor \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,7 +29,7 @@ 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 "" +msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." #: templates/settings.php:11 msgid "" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index d026975111c..c050b2d8808 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 18:31+0000\n" +"Last-Translator: traductor \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" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index f4a0b03ecf3..e7341dbe102 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -157,7 +157,7 @@ msgstr "Χρησιμοποιήσατε %s από διαθέσι #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Πελάτες" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 8614b6b1fe6..3a49fa3de2d 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "Vi uzas %s el la haveblaj %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klientoj" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index a705db8b0d9..edd67031275 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -157,7 +157,7 @@ msgstr "Ha usado %s de %s disponibles" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 3c23f272dbf..d0650773d3c 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "Usaste %s de los %s disponibles" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 17e9aaeab7f..0212408126c 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Kliendid" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index b3a9725781d..93231c3514a 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "Dagoeneko %s erabili duzu eskuragarri duzun %s< #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Bezeroak" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 8b195e20c4d..3d7035f89a2 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -150,7 +150,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "مشتریان" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index c65a8d3da40..be42124a75f 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "Käytössäsi on %s/%s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Asiakkaat" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 60e593f91e7..ffafd0a3264 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -159,7 +159,7 @@ msgstr "Vous avez utilisé %s des %s disponible #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clients" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index aee8d7785c5..234468f6e0a 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "Tes usados %s do total dispoñíbel de %s\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -149,7 +149,7 @@ msgstr "השתמשת ב־%s מתוך %s הזמ #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "לקוחות" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 2597c4cf005..b46de54ca70 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klijenti" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index b4a0c243974..fcc66c8ce64 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Kliensek" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 1908def76a4..892fdc95fd9 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index cbca52ee8d2..4e52623ad95 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -150,7 +150,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klien" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index c678a89ccf9..e26395a5f44 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 06:39+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" @@ -124,27 +124,27 @@ msgstr "-licenziato da %s dei %s disponibili" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Client" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Scarica client desktop" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Scarica client Android" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Scarica client iOS" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -217,15 +217,15 @@ msgstr "Migliora la traduzione" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Versione" #: templates/personal.php:65 msgid "" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index e4303fd636b..b41038ab9a7 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -4,15 +4,16 @@ # # Translators: # Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 03:44+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,27 +121,27 @@ msgstr "-ライセンス: #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "ユーザドキュメント" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "管理者ドキュメント" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "オンラインドキュメント" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "フォーラム" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "バグトラッカー" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "コマーシャルサポート" #: templates/personal.php:8 #, php-format @@ -149,19 +150,19 @@ msgstr "現在、%s / %s を利用していま #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "顧客" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "デスクトップクライアントをダウンロード" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Androidクライアントをダウンロード" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "iOSクライアントをダウンロード" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -213,15 +214,15 @@ msgstr "翻訳に協力する" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "バージョン" #: templates/personal.php:65 msgid "" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 5873fda3833..b6499e4ce5f 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 03:51+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloudのこのURLへのユーザ資格情報の送信は、資格情報が間違っている場合はHTTP401もしくは403を返し、正しい場合は全てのコードを返します。" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 1c117e37a90..363ba8a6bd4 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -147,7 +147,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "კლიენტები" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index f3a933894cc..7e948772a38 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "현재 공간 %s/%s을(를) 사용 중 #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "고객" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 7f7bba58429..90bde23fab6 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -147,7 +147,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clienten" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 4b5d562b1d0..34f05c7c008 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klientai" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 0dac229dcd7..1f1f8fa6be3 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "Имате искористено %s од достап #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клиенти" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 11b17fa24a9..f4c24535347 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -150,7 +150,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "klien" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index f95fe62e3ea..96e64f4b1a8 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -153,7 +153,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klienter" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 4dd97cac611..322c4e3bbf4 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 17:28+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" @@ -34,26 +34,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Gebruiker %s deelde een bestand met u" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Gebruiker %s deelde een map met u" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Gebruiker %s deelde bestand \"%s\" met u. Het is hier te downloaden: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -175,8 +175,8 @@ msgid "The object type is not specified." msgstr "Het object type is niet gespecificeerd." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fout" @@ -188,7 +188,7 @@ msgstr "De app naam is niet gespecificeerd." msgid "The required file {file} is not installed!" msgstr "Het vereiste bestand {file} is niet geïnstalleerd!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -216,22 +216,22 @@ msgstr "Deel met" msgid "Share with link" msgstr "Deel met link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Wachtwoord beveiliging" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Wachtwoord" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "E-mail link naar persoon" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Versturen" #: js/share.js:177 msgid "Set expiration date" @@ -285,25 +285,25 @@ msgstr "verwijderen" msgid "share" msgstr "deel" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Versturen ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "E-mail verzonden" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -325,8 +325,8 @@ msgstr "Reset e-mail verstuurd." msgid "Request failed!" msgstr "Verzoek mislukt!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Gebruikersnaam" @@ -415,44 +415,44 @@ msgstr "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htacces msgid "Create an admin account" msgstr "Maak een beheerdersaccount aan" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Geavanceerd" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Gegevensmap" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configureer de database" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "zal gebruikt worden" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Database server" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Installatie afronden" @@ -540,29 +540,29 @@ msgstr "Webdiensten in eigen beheer" msgid "Log out" msgstr "Afmelden" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatische aanmelding geweigerd!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Als u uw wachtwoord niet onlangs heeft aangepast, kan uw account overgenomen zijn!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Wijzig uw wachtwoord zodat uw account weer beveiligd is." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Uw wachtwoord vergeten?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "onthoud gegevens" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Meld je aan" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index dcc92f2a2cd..73a37735f70 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2012. # Richard Bos , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"PO-Revision-Date: 2012-12-20 17:34+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" @@ -46,14 +47,14 @@ msgstr "Fout tijdens het configureren van Google Drive opslag" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +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:435 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 "" +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." #: templates/settings.php:3 msgid "External Storage" @@ -100,7 +101,7 @@ msgid "Users" msgstr "Gebruikers" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Verwijder" @@ -112,10 +113,10 @@ msgstr "Externe opslag voor gebruikers activeren" msgid "Allow users to mount their own external storage" msgstr "Sta gebruikers toe om hun eigen externe opslag aan te koppelen" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL root certificaten" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Importeer root certificaat" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 1447d5696c9..52bcdb4ed53 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2012. # , 2011. # , 2012. # , 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 17:37+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" @@ -127,27 +128,27 @@ msgstr "-Gelicenseerd door %s van de %s beschikbaren geb #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klanten" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Download Desktop Clients" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Download Android Client" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Download iOS Client" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -220,15 +221,15 @@ msgstr "Help met vertalen" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Versie" #: templates/personal.php:65 msgid "" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index a608c7eddea..840adfacc66 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 17:25+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" @@ -23,13 +24,13 @@ 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 "" +msgstr "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, de backend zal dus niet werken. Vraag uw beheerder de module te installeren." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/nl/user_webdavauth.po b/l10n/nl/user_webdavauth.po index b8142985770..81dd911eef5 100644 --- a/l10n/nl/user_webdavauth.po +++ b/l10n/nl/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2012. # Richard Bos , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 17:23+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" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud zal de inloggegevens naar deze URL als geïnterpreteerde http 401 en http 403 als de inloggegevens onjuist zijn. Andere codes als de inloggegevens correct zijn." diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index e66fabad4ed..b62189d236d 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klientar" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index ae2f77de6c0..aa5ccaa9439 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -147,7 +147,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Practica" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 4c1931f5277..bd13e836e65 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -156,7 +156,7 @@ msgstr "Korzystasz z %s z dostępnych %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klienci" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index 34edc0bee37..f745f1f1320 100644 --- a/l10n/pl/user_webdavauth.po +++ b/l10n/pl/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # Cyryl Sochacki , 2012. +# Marcin Małecki , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 11:39+0000\n" +"Last-Translator: Marcin Małecki \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" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 84ffc9b282a..67cb06fbd6d 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -155,7 +155,7 @@ msgstr "Você usou %s do seu espaço de %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index e5dee687e28..2df165fde5b 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -151,7 +151,7 @@ msgstr "Usou %s do disponivel %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 1c57e59c9c5..98f2a2844e7 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -152,7 +152,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clienți" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 90a09200a89..d47fe1cca61 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -157,7 +157,7 @@ msgstr "Вы использовали %s из доступны #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клиенты" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 322c4dfdbfa..7731c49e2d1 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -147,7 +147,7 @@ msgstr "Вы использовали %s из возможны #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клиенты" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ru_RU/user_webdavauth.po b/l10n/ru_RU/user_webdavauth.po index 34bc8c116fb..5308dbe4c2d 100644 --- a/l10n/ru_RU/user_webdavauth.po +++ b/l10n/ru_RU/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 06:57+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 58e765d3158..6bfa8851760 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "සේවාලාභීන්" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 72c5a0b9d42..7fc980b9834 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -151,7 +151,7 @@ msgstr "Použili ste %s z %s dostupných " #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klienti" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 9675db5bf52..9bf1d7498ab 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -150,7 +150,7 @@ msgstr "Uporabljate %s od razpoložljivih %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Stranka" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 2d01c631fa5..e608c443bcc 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "Искористили сте %s од дозвољен #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клијенти" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index d8cd86aace3..1fa664360e9 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -147,7 +147,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klijenti" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index facc19476c7..397ccdff0f2 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -153,7 +153,7 @@ msgstr "Du har använt %s av tillgängliga %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Kunder" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 77831e0c91c..d06ae0bdd28 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -147,7 +147,7 @@ msgstr "நீங்கள் %s இலுள்ள %s< #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "வாடிக்கையாளர்கள்" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 7257ede1892..5d7f37bb3b7 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -206,7 +206,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "" @@ -312,7 +312,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "" @@ -526,29 +526,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ca7511eccaf..b50639f96ba 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:09+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -110,76 +110,76 @@ msgstr "" msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:442 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 384330aba1d..18ba9997b7f 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:09+0100\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 49ae8e1b274..c3b5c0f60f7 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:09+0100\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 4249ed53583..7c8266d73f2 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:09+0100\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 669c85df254..006ef4c048a 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:09+0100\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 7f4e045559f..69c4599f7d3 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\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 35950821584..eb1545b7247 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\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 457ac73372b..91ef55584b8 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\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 d379ecf13c8..35ef6d16f39 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 3ca61934b5d..41350a3882c 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "คุณได้ใช้งานไปแล้ว %s\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -150,7 +150,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Müşteriler" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index bce528e3b74..3c59ae24b65 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "Ви використали %s із доступних #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клієнти" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 9c6e9741936..e17d6607eed 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -152,7 +152,7 @@ msgstr "Bạn đã sử dụng %s có sẵn %s \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "客户" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 9902bd89a23..8a68e4eac0a 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -151,7 +151,7 @@ msgstr "你已使用 %s,有效空间 %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "客户" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 71e3aea87af..ca897a2325b 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -152,7 +152,7 @@ msgstr "您已經使用了 %s ,目前可用空間為 #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "客戶" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 045ee99bb1d..f6e059f64bf 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -6,6 +6,7 @@ "Saving..." => "حفظ", "__language_name__" => "__language_name__", "Select an App" => "إختر تطبيقاً", +"Clients" => "الزبائن", "Password" => "كلمات السر", "Unable to change your password" => "لم يتم تعديل كلمة السر بنجاح", "Current password" => "كلمات السر الحالية", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index cf95fb061b3..18784fae7b0 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -9,6 +9,7 @@ "Enable" => "Включване", "Saving..." => "Записване...", "Select an App" => "Изберете програма", +"Clients" => "Клиенти", "Password" => "Парола", "Unable to change your password" => "Невъзможна промяна на паролата", "Current password" => "Текуща парола", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 257ccc721fb..2c58fdfe131 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", "-licensed by " => "-propietat de ", "You have used %s of the available %s" => "Heu utilitzat %s d'un total disponible de %s", +"Clients" => "Clients", "Password" => "Contrasenya", "Your password was changed" => "La seva contrasenya s'ha canviat", "Unable to change your password" => "No s'ha pogut canviar la contrasenya", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index daee91b7158..c88959026da 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -23,7 +23,17 @@ "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", "-licensed by " => "-licencováno ", +"User Documentation" => "Uživatelská dokumentace", +"Administrator Documentation" => "Dokumentace správce", +"Online Documentation" => "Online dokumentace", +"Forum" => "Fórum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Placená podpora", "You have used %s of the available %s" => "Používáte %s z %s dostupných", +"Clients" => "Klienti", +"Download Desktop Clients" => "Stáhnout klienty pro počítač", +"Download Android Client" => "Stáhnout klienta pro android", +"Download iOS Client" => "Stáhnout klienta pro iOS", "Password" => "Heslo", "Your password was changed" => "Vaše heslo bylo změněno", "Unable to change your password" => "Vaše heslo nelze změnit", @@ -36,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte adresu e-mailu", "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů", +"Version" => "Verze", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL.", "Name" => "Jméno", "Groups" => "Skupiny", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 6d62e1060b1..7d54763284a 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -22,6 +22,7 @@ "Select an App" => "Vælg en App", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", "-licensed by " => "-licenseret af ", +"Clients" => "Klienter", "Password" => "Kodeord", "Your password was changed" => "Din adgangskode blev ændret", "Unable to change your password" => "Ude af stand til at ændre dit kodeord", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 3ebf86b4f47..11ec83ef67d 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Weitere Anwendungen findest Du auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", "You have used %s of the available %s" => "Du verwendest %s der verfügbaren %s", +"Clients" => "Kunden", "Password" => "Passwort", "Your password was changed" => "Dein Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 0307225f83d..1fc8f591abf 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -23,7 +23,17 @@ "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", +"User Documentation" => "Dokumentation für Benutzer", +"Administrator Documentation" => "Dokumentation für Administratoren", +"Online Documentation" => "Online-Dokumentation", +"Forum" => "Forum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Kommerzieller Support", "You have used %s of the available %s" => "Sie verwenden %s der verfügbaren %s", +"Clients" => "Kunden", +"Download Desktop Clients" => "Desktop-Client herunterladen", +"Download Android Client" => "Android-Client herunterladen", +"Download iOS Client" => "iOS-Client herunterladen", "Password" => "Passwort", "Your password was changed" => "Ihr Passwort wurde geändert.", "Unable to change your password" => "Das Passwort konnte nicht geändert werden", @@ -36,7 +46,10 @@ "Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert.", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden", +"Version" => "Version", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert.", "Name" => "Name", "Groups" => "Gruppen", "Create" => "Anlegen", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index a82d23d10e1..6e4923fd7de 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com", "-licensed by " => "-άδεια από ", "You have used %s of the available %s" => "Χρησιμοποιήσατε %s από διαθέσιμα %s", +"Clients" => "Πελάτες", "Password" => "Συνθηματικό", "Your password was changed" => "Το συνθηματικό σας έχει αλλάξει", "Unable to change your password" => "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index f43af780deb..668d48f30b3 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com", "-licensed by " => "-permesilhavigita de ", "You have used %s of the available %s" => "Vi uzas %s el la haveblaj %s", +"Clients" => "Klientoj", "Password" => "Pasvorto", "Your password was changed" => "Via pasvorto ŝanĝiĝis", "Unable to change your password" => "Ne eblis ŝanĝi vian pasvorton", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 797b1dfd00a..2f7a639ee00 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", "You have used %s of the available %s" => "Ha usado %s de %s disponibles", +"Clients" => "Clientes", "Password" => "Contraseña", "Your password was changed" => "Su contraseña ha sido cambiada", "Unable to change your password" => "No se ha podido cambiar tu contraseña", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 520a720eda6..b408405d6da 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", "You have used %s of the available %s" => "Usaste %s de los %s disponibles", +"Clients" => "Clientes", "Password" => "Contraseña", "Your password was changed" => "Tu contraseña fue cambiada", "Unable to change your password" => "No fue posible cambiar tu contraseña", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index cddda0fbb0d..7b61ee92eb0 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -22,6 +22,7 @@ "Select an App" => "Vali programm", "See application page at apps.owncloud.com" => "Vaata rakenduste lehte aadressil apps.owncloud.com", "-licensed by " => "-litsenseeritud ", +"Clients" => "Kliendid", "Password" => "Parool", "Your password was changed" => "Sinu parooli on muudetud", "Unable to change your password" => "Sa ei saa oma parooli muuta", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 75cb288a3e3..463e9c19af9 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Ikusi programen orria apps.owncloud.com en", "-licensed by " => "-lizentziatua ", "You have used %s of the available %s" => "Dagoeneko %s erabili duzu eskuragarri duzun %setatik", +"Clients" => "Bezeroak", "Password" => "Pasahitza", "Your password was changed" => "Zere pasahitza aldatu da", "Unable to change your password" => "Ezin izan da zure pasahitza aldatu", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 603fcaf8598..764bef6dc8b 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -13,6 +13,7 @@ "Add your App" => "برنامه خود را بیافزایید", "Select an App" => "یک برنامه انتخاب کنید", "See application page at apps.owncloud.com" => "صفحه این اٌپ را در apps.owncloud.com ببینید", +"Clients" => "مشتریان", "Password" => "گذرواژه", "Your password was changed" => "رمز عبور شما تغییر یافت", "Unable to change your password" => "ناتوان در تغییر گذرواژه", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index c11323fd08c..ff5f7f6a2b7 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", "-licensed by " => "-lisensoija ", "You have used %s of the available %s" => "Käytössäsi on %s/%s", +"Clients" => "Asiakkaat", "Password" => "Salasana", "Your password was changed" => "Salasanasi vaihdettiin", "Unable to change your password" => "Salasanaasi ei voitu vaihtaa", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 06a3e9c6303..b504d261f66 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", "-licensed by " => "Distribué sous licence , par ", "You have used %s of the available %s" => "Vous avez utilisé %s des %s disponibles", +"Clients" => "Clients", "Password" => "Mot de passe", "Your password was changed" => "Votre mot de passe a été changé", "Unable to change your password" => "Impossible de changer votre mot de passe", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index a90e8e5b71d..b322c6f8bcf 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Vexa a páxina do aplicativo en apps.owncloud.com", "-licensed by " => "-licenciado por", "You have used %s of the available %s" => "Tes usados %s do total dispoñíbel de %s", +"Clients" => "Clientes", "Password" => "Contrasinal", "Your password was changed" => "O seu contrasinal foi cambiado", "Unable to change your password" => "Incapaz de trocar o seu contrasinal", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 64ce6a134cd..2524c076b79 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "צפה בעמוד הישום ב apps.owncloud.com", "-licensed by " => "ברישיון לטובת ", "You have used %s of the available %s" => "השתמשת ב־%s מתוך %s הזמינים לך", +"Clients" => "לקוחות", "Password" => "ססמה", "Your password was changed" => "הססמה שלך הוחלפה", "Unable to change your password" => "לא ניתן לשנות את הססמה שלך", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 9db7526b599..437afeb7f59 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -13,6 +13,7 @@ "Add your App" => "Dodajte vašu aplikaciju", "Select an App" => "Odaberite Aplikaciju", "See application page at apps.owncloud.com" => "Pogledajte stranicu s aplikacijama na apps.owncloud.com", +"Clients" => "Klijenti", "Password" => "Lozinka", "Unable to change your password" => "Nemoguće promijeniti lozinku", "Current password" => "Trenutna lozinka", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 05fa6ef8ccf..18f21129b85 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -13,6 +13,7 @@ "Add your App" => "App hozzáadása", "Select an App" => "Egy App kiválasztása", "See application page at apps.owncloud.com" => "Lásd apps.owncloud.com, alkalmazások oldal", +"Clients" => "Kliensek", "Password" => "Jelszó", "Unable to change your password" => "Nem lehet megváltoztatni a jelszavad", "Current password" => "Jelenlegi jelszó", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index ec25c3ae217..f2053b95279 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -5,6 +5,7 @@ "__language_name__" => "Interlingua", "Add your App" => "Adder tu application", "Select an App" => "Selectionar un app", +"Clients" => "Clientes", "Password" => "Contrasigno", "Unable to change your password" => "Non pote cambiar tu contrasigno", "Current password" => "Contrasigno currente", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 62184d3e8f1..fd2be4856d9 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -12,6 +12,7 @@ "Add your App" => "Tambahkan App anda", "Select an App" => "Pilih satu aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman aplikasi di apps.owncloud.com", +"Clients" => "Klien", "Password" => "Password", "Unable to change your password" => "Tidak dapat merubah password anda", "Current password" => "Password saat ini", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 5bbbbf591c3..79551579fc2 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -23,7 +23,17 @@ "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", "-licensed by " => "-licenziato da ", +"User Documentation" => "Documentazione utente", +"Administrator Documentation" => "Documentazione amministratore", +"Online Documentation" => "Documentazione in linea", +"Forum" => "Forum", +"Bugtracker" => "Sistema di tracciamento bug", +"Commercial Support" => "Supporto commerciale", "You have used %s of the available %s" => "Hai utilizzato %s dei %s disponibili", +"Clients" => "Client", +"Download Desktop Clients" => "Scarica client desktop", +"Download Android Client" => "Scarica client Android", +"Download iOS Client" => "Scarica client iOS", "Password" => "Password", "Your password was changed" => "La tua password è cambiata", "Unable to change your password" => "Modifica password non riuscita", @@ -36,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password", "Language" => "Lingua", "Help translate" => "Migliora la traduzione", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file", +"Version" => "Versione", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Sviluppato dalla comunità di ownCloud, il codice sorgente è licenziato nei termini della AGPL.", "Name" => "Nome", "Groups" => "Gruppi", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 20f61eac15a..847f696037d 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -23,7 +23,17 @@ "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", "-licensed by " => "-ライセンス: ", +"User Documentation" => "ユーザドキュメント", +"Administrator Documentation" => "管理者ドキュメント", +"Online Documentation" => "オンラインドキュメント", +"Forum" => "フォーラム", +"Bugtracker" => "バグトラッカー", +"Commercial Support" => "コマーシャルサポート", "You have used %s of the available %s" => "現在、%s / %s を利用しています", +"Clients" => "顧客", +"Download Desktop Clients" => "デスクトップクライアントをダウンロード", +"Download Android Client" => "Androidクライアントをダウンロード", +"Download iOS Client" => "iOSクライアントをダウンロード", "Password" => "パスワード", "Your password was changed" => "パスワードを変更しました", "Unable to change your password" => "パスワードを変更することができません", @@ -36,6 +46,9 @@ "Fill in an email address to enable password recovery" => "※パスワード回復を有効にするにはメールアドレスの入力が必要です", "Language" => "言語", "Help translate" => "翻訳に協力する", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください", +"Version" => "バージョン", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud communityにより開発されています、ソースコードライセンスは、AGPL ライセンスにより提供されています。", "Name" => "名前", "Groups" => "グループ", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 39778c939c0..26720b20619 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -22,6 +22,7 @@ "Select an App" => "აირჩიეთ აპლიკაცია", "See application page at apps.owncloud.com" => "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე", "-licensed by " => "-ლიცენსირებულია ", +"Clients" => "კლიენტები", "Password" => "პაროლი", "Your password was changed" => "თქვენი პაროლი შეიცვალა", "Unable to change your password" => "თქვენი პაროლი არ შეიცვალა", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 52248abebf8..286cac87c53 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "apps.owncloud.com에 있는 앱 페이지를 참고하십시오", "-licensed by " => "-라이선스 보유자 ", "You have used %s of the available %s" => "현재 공간 %s/%s을(를) 사용 중입니다", +"Clients" => "고객", "Password" => "암호", "Your password was changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index f26a4b53c9d..baa89a033b6 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -13,6 +13,7 @@ "Add your App" => "Setz deng App bei", "Select an App" => "Wiel eng Applikatioun aus", "See application page at apps.owncloud.com" => "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un", +"Clients" => "Clienten", "Password" => "Passwuert", "Unable to change your password" => "Konnt däin Passwuert net änneren", "Current password" => "Momentan 't Passwuert", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 5d6e5164b23..f5fa8e29d96 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -15,6 +15,7 @@ "More Apps" => "Daugiau aplikacijų", "Select an App" => "Pasirinkite programą", "-licensed by " => "- autorius", +"Clients" => "Klientai", "Password" => "Slaptažodis", "Your password was changed" => "Jūsų slaptažodis buvo pakeistas", "Unable to change your password" => "Neįmanoma pakeisti slaptažodžio", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 8039422e7e4..bca762f8144 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Види ја страницата со апликации на apps.owncloud.com", "-licensed by " => "-лиценцирано од ", "You have used %s of the available %s" => "Имате искористено %s од достапните %s", +"Clients" => "Клиенти", "Password" => "Лозинка", "Your password was changed" => "Вашата лозинка беше променета.", "Unable to change your password" => "Вашата лозинка неможе да се смени", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 11d279e3e53..608ed7e05d5 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -12,6 +12,7 @@ "Add your App" => "Tambah apps anda", "Select an App" => "Pilih aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman applikasi di apps.owncloud.com", +"Clients" => "klien", "Password" => "Kata laluan ", "Unable to change your password" => "Gagal mengubah kata laluan anda ", "Current password" => "Kata laluan semasa", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 5f2f3c3db3f..0800b6682e6 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -21,6 +21,7 @@ "More Apps" => "Flere Apps", "Select an App" => "Velg en app", "See application page at apps.owncloud.com" => "Se applikasjonens side på apps.owncloud.org", +"Clients" => "Klienter", "Password" => "Passord", "Your password was changed" => "Passord har blitt endret", "Unable to change your password" => "Kunne ikke endre passordet ditt", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 7ce49f0c59f..40d8742d7b3 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -23,7 +23,17 @@ "Select an App" => "Selecteer een app", "See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", "-licensed by " => "-Gelicenseerd door ", +"User Documentation" => "Gebruikersdocumentatie", +"Administrator Documentation" => "Beheerdersdocumentatie", +"Online Documentation" => "Online documentatie", +"Forum" => "Forum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Commerciële ondersteuning", "You have used %s of the available %s" => "U heeft %s van de %s beschikbaren gebruikt", +"Clients" => "Klanten", +"Download Desktop Clients" => "Download Desktop Clients", +"Download Android Client" => "Download Android Client", +"Download iOS Client" => "Download iOS Client", "Password" => "Wachtwoord", "Your password was changed" => "Je wachtwoord is veranderd", "Unable to change your password" => "Niet in staat om uw wachtwoord te wijzigen", @@ -36,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren", "Language" => "Taal", "Help translate" => "Help met vertalen", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer", +"Version" => "Versie", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL.", "Name" => "Naam", "Groups" => "Groepen", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 0865d28a66f..92ff6d22df2 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -10,6 +10,7 @@ "Enable" => "Slå på", "__language_name__" => "Nynorsk", "Select an App" => "Vel ein applikasjon", +"Clients" => "Klientar", "Password" => "Passord", "Unable to change your password" => "Klarte ikkje å endra passordet", "Current password" => "Passord", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index 66839eb3812..0bed7a9a416 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -21,6 +21,7 @@ "Select an App" => "Selecciona una applicacion", "See application page at apps.owncloud.com" => "Agacha la pagina d'applications en cò de apps.owncloud.com", "-licensed by " => "-licençiat per ", +"Clients" => "Practica", "Password" => "Senhal", "Your password was changed" => "Ton senhal a cambiat", "Unable to change your password" => "Pas possible de cambiar ton senhal", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index ad4ba8a946e..3668421d9c7 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "-licensed by " => "-licencjonowane przez ", "You have used %s of the available %s" => "Korzystasz z %s z dostępnych %s", +"Clients" => "Klienci", "Password" => "Hasło", "Your password was changed" => "Twoje hasło zostało zmienione", "Unable to change your password" => "Nie można zmienić hasła", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index a9dee157b77..ebbdc85e45b 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Ver página do aplicativo em apps.owncloud.com", "-licensed by " => "-licenciado por ", "You have used %s of the available %s" => "Você usou %s do seu espaço de %s", +"Clients" => "Clientes", "Password" => "Senha", "Your password was changed" => "Sua senha foi alterada", "Unable to change your password" => "Não é possivel alterar a sua senha", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 43a776d1daf..fa5d01d8679 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Ver a página da aplicação em apps.owncloud.com", "-licensed by " => "-licenciado por ", "You have used %s of the available %s" => "Usou %s do disponivel %s", +"Clients" => "Clientes", "Password" => "Palavra-chave", "Your password was changed" => "A sua palavra-passe foi alterada", "Unable to change your password" => "Não foi possivel alterar a sua palavra-chave", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 214bf0c7ed6..26865c8c711 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -21,6 +21,7 @@ "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", "-licensed by " => "-licențiat ", +"Clients" => "Clienți", "Password" => "Parolă", "Your password was changed" => "Parola a fost modificată", "Unable to change your password" => "Imposibil de-ați schimbat parola", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 0b8fbc91ea4..ba26cb13353 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "-licensed by " => " лицензия. Автор ", "You have used %s of the available %s" => "Вы использовали %s из доступных %s", +"Clients" => "Клиенты", "Password" => "Пароль", "Your password was changed" => "Ваш пароль изменён", "Unable to change your password" => "Невозможно сменить пароль", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index aa91eee87c3..a12bd09d28a 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com", "-licensed by " => "-licensed by ", "You have used %s of the available %s" => "Вы использовали %s из возможных %s", +"Clients" => "Клиенты", "Password" => "Пароль", "Your password was changed" => "Ваш пароль был изменен", "Unable to change your password" => "Невозможно изменить Ваш пароль", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 22a3d65058b..6c46834beb1 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -18,6 +18,7 @@ "Add your App" => "යෙදුමක් එක් කිරීම", "More Apps" => "තවත් යෙදුම්", "Select an App" => "යෙදුමක් තොරන්න", +"Clients" => "සේවාලාභීන්", "Password" => "මුරපදය", "Your password was changed" => "ඔබගේ මුර පදය වෙනස් කෙරුණි", "Unable to change your password" => "මුර පදය වෙනස් කළ නොහැකි විය", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index a07ee5998a4..08b9079c3ae 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Pozrite si stránku aplikácií na apps.owncloud.com", "-licensed by " => "-licencované ", "You have used %s of the available %s" => "Použili ste %s z %s dostupných ", +"Clients" => "Klienti", "Password" => "Heslo", "Your password was changed" => "Heslo bolo zmenené", "Unable to change your password" => "Nie je možné zmeniť vaše heslo", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 32ab3b8f54c..01d1d481b97 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Obiščite spletno stran programa na apps.owncloud.com", "-licensed by " => "-z dovoljenjem s strani ", "You have used %s of the available %s" => "Uporabljate %s od razpoložljivih %s", +"Clients" => "Stranka", "Password" => "Geslo", "Your password was changed" => "Vaše geslo je spremenjeno", "Unable to change your password" => "Gesla ni mogoče spremeniti.", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 78bb3daae38..be30ab45f53 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Погледајте страницу са програмима на apps.owncloud.com", "-licensed by " => "-лиценцирао ", "You have used %s of the available %s" => "Искористили сте %s од дозвољених %s", +"Clients" => "Клијенти", "Password" => "Лозинка", "Your password was changed" => "Лозинка је промењена", "Unable to change your password" => "Не могу да изменим вашу лозинку", diff --git a/settings/l10n/sr@latin.php b/settings/l10n/sr@latin.php index 9e8436567df..9ee84bc255a 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -4,6 +4,7 @@ "Authentication error" => "Greška pri autentifikaciji", "Language changed" => "Jezik je izmenjen", "Select an App" => "Izaberite program", +"Clients" => "Klijenti", "Password" => "Lozinka", "Unable to change your password" => "Ne mogu da izmenim vašu lozinku", "Current password" => "Trenutna lozinka", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 10d3d069016..9f372cc9e06 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", "-licensed by " => "-licensierad av ", "You have used %s of the available %s" => "Du har använt %s av tillgängliga %s", +"Clients" => "Kunder", "Password" => "Lösenord", "Your password was changed" => "Ditt lösenord har ändrats", "Unable to change your password" => "Kunde inte ändra ditt lösenord", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index 1a11a9a7102..cbc2eec8fb7 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -23,6 +23,7 @@ "See application page at apps.owncloud.com" => "apps.owncloud.com இல் செயலி பக்கத்தை பார்க்க", "-licensed by " => "-அனுமதி பெற்ற ", "You have used %s of the available %s" => "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்", +"Clients" => "வாடிக்கையாளர்கள்", "Password" => "கடவுச்சொல்", "Your password was changed" => "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது", "Unable to change your password" => "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index d9c9101143f..063ec8733ae 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -23,6 +23,7 @@ "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", "-licensed by " => "-ลิขสิทธิ์การใช้งานโดย ", "You have used %s of the available %s" => "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s", +"Clients" => "ลูกค้า", "Password" => "รหัสผ่าน", "Your password was changed" => "รหัสผ่านของคุณถูกเปลี่ยนแล้ว", "Unable to change your password" => "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 2c79b93d954..f8acb9b28f2 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -20,6 +20,7 @@ "More Apps" => "Daha fazla App", "Select an App" => "Bir uygulama seçin", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", +"Clients" => "Müşteriler", "Password" => "Parola", "Your password was changed" => "Şifreniz değiştirildi", "Unable to change your password" => "Parolanız değiştirilemiyor", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 5707b3cdafc..0cbce797e1d 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Перегляньте сторінку програм на apps.owncloud.com", "-licensed by " => "-licensed by ", "You have used %s of the available %s" => "Ви використали %s із доступних %s", +"Clients" => "Клієнти", "Password" => "Пароль", "Your password was changed" => "Ваш пароль змінено", "Unable to change your password" => "Не вдалося змінити Ваш пароль", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 49aee419bfb..50259953acd 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Xem nhiều ứng dụng hơn tại apps.owncloud.com", "-licensed by " => "-Giấy phép được cấp bởi ", "You have used %s of the available %s" => "Bạn đã sử dụng %s có sẵn %s ", +"Clients" => "Khách hàng", "Password" => "Mật khẩu", "Your password was changed" => "Mật khẩu của bạn đã được thay đổi.", "Unable to change your password" => "Không thể đổi mật khẩu", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 2e429cf6b1e..cd6610d5a17 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -22,6 +22,7 @@ "Select an App" => "选择一个程序", "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", "-licensed by " => "授权协议 ", +"Clients" => "客户", "Password" => "密码", "Your password was changed" => "您的密码以变更", "Unable to change your password" => "不能改变你的密码", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 3e0f8340eae..adc07e20675 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", "-licensed by " => "-核准: ", "You have used %s of the available %s" => "你已使用 %s,有效空间 %s", +"Clients" => "客户", "Password" => "密码", "Your password was changed" => "密码已修改", "Unable to change your password" => "无法修改密码", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 33f4cb1194e..6589973bf99 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", "-licensed by " => "-核准: ", "You have used %s of the available %s" => "您已經使用了 %s ,目前可用空間為 %s", +"Clients" => "客戶", "Password" => "密碼", "Your password was changed" => "你的密碼已更改", "Unable to change your password" => "無法變更你的密碼", -- cgit v1.2.3 From 05fda76776890a449366b3a4a766080e61ffabb6 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 22 Dec 2012 00:26:25 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/th_TH.php | 1 + apps/files_external/l10n/el.php | 2 + apps/files_external/l10n/ru_RU.php | 2 +- apps/user_webdavauth/l10n/ca.php | 3 +- apps/user_webdavauth/l10n/de_DE.php | 3 +- apps/user_webdavauth/l10n/el.php | 2 +- apps/user_webdavauth/l10n/it.php | 3 +- apps/user_webdavauth/l10n/pt_PT.php | 3 +- core/l10n/el.php | 8 ++++ core/l10n/ru_RU.php | 1 + l10n/ca/settings.po | 30 +++++++------- l10n/ca/user_webdavauth.po | 10 ++--- l10n/de/settings.po | 28 ++++++------- l10n/de_DE/core.po | 40 +++++++++---------- l10n/de_DE/settings.po | 6 +-- l10n/de_DE/user_webdavauth.po | 9 +++-- l10n/el/core.po | 80 ++++++++++++++++++------------------- l10n/el/files_external.po | 17 ++++---- l10n/el/settings.po | 30 +++++++------- l10n/el/user_webdavauth.po | 9 +++-- l10n/fi_FI/settings.po | 30 +++++++------- l10n/it/user_webdavauth.po | 10 ++--- l10n/mk/settings.po | 28 ++++++------- l10n/pt_PT/settings.po | 30 +++++++------- l10n/pt_PT/user_webdavauth.po | 11 ++--- l10n/ru_RU/core.po | 22 +++++----- l10n/ru_RU/files_external.po | 12 +++--- l10n/ru_RU/settings.po | 28 ++++++------- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 80 ++++++++++++++++++------------------- settings/l10n/ca.php | 12 ++++++ settings/l10n/de.php | 12 ++++++ settings/l10n/el.php | 12 ++++++ settings/l10n/fi_FI.php | 12 ++++++ settings/l10n/mk.php | 11 +++++ settings/l10n/pt_PT.php | 12 ++++++ settings/l10n/ru_RU.php | 11 +++++ 46 files changed, 371 insertions(+), 269 deletions(-) (limited to 'apps') diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 343138ba126..bad817ab006 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -1,5 +1,6 @@ "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML", "The uploaded file was only partially uploaded" => "ไฟล์ที่อัพโหลดยังไม่ได้ถูกอัพโหลดอย่างสมบูรณ์", "No file was uploaded" => "ยังไม่มีไฟล์ที่ถูกอัพโหลด", diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index a1dae9d4888..9bf499a911d 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "Συμπληρώστε όλα τα απαιτούμενα πεδία", "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" => "Εξωτερικό Αποθηκευτικό Μέσο", "Mount point" => "Σημείο προσάρτησης", "Backend" => "Σύστημα υποστήριξης", diff --git a/apps/files_external/l10n/ru_RU.php b/apps/files_external/l10n/ru_RU.php index 05a784100c2..e539b3cb2cf 100644 --- a/apps/files_external/l10n/ru_RU.php +++ b/apps/files_external/l10n/ru_RU.php @@ -5,7 +5,7 @@ "Fill out all required fields" => "Заполните все требуемые поля", "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\" не установлен. Mounting of CIFS/SMB shares is not possible. Пожалуйста, обратитесь к системному администратору, чтобы установить его.", +"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" => "Внешние системы хранения данных", "Mount point" => "Точка монтирования", diff --git a/apps/user_webdavauth/l10n/ca.php b/apps/user_webdavauth/l10n/ca.php index a59bffb870d..84a6c599e78 100644 --- a/apps/user_webdavauth/l10n/ca.php +++ b/apps/user_webdavauth/l10n/ca.php @@ -1,3 +1,4 @@ "Adreça WebDAV: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviarà les credencials d'usuari a aquesta URL. S'interpretarà http 401 i http 403 com a credencials incorrectes i tots els altres codis com a credencials correctes." ); diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php index 245a5101341..3d73dccfe8e 100644 --- a/apps/user_webdavauth/l10n/de_DE.php +++ b/apps/user_webdavauth/l10n/de_DE.php @@ -1,3 +1,4 @@ "URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud " ); diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/el.php +++ b/apps/user_webdavauth/l10n/el.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/it.php b/apps/user_webdavauth/l10n/it.php index a5b7e56771f..b0abf2f2082 100644 --- a/apps/user_webdavauth/l10n/it.php +++ b/apps/user_webdavauth/l10n/it.php @@ -1,3 +1,4 @@ "URL WebDAV: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud invierà le credenziali dell'utente a questo URL. Interpreta i codici http 401 e http 403 come credenziali errate e tutti gli altri codici come credenziali corrette." ); diff --git a/apps/user_webdavauth/l10n/pt_PT.php b/apps/user_webdavauth/l10n/pt_PT.php index 1aca5caeff1..e8bfcfda81e 100644 --- a/apps/user_webdavauth/l10n/pt_PT.php +++ b/apps/user_webdavauth/l10n/pt_PT.php @@ -1,3 +1,4 @@ "Endereço WebDAV: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "O ownCloud vai enviar as credenciais para este URL. Todos os códigos http 401 e 403 serão interpretados como credenciais inválidas, todos os restantes códigos http serão interpretados como credenciais correctas." ); diff --git a/core/l10n/el.php b/core/l10n/el.php index e01de9fdc2c..d8a5d7aef51 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -1,4 +1,8 @@ "Ο χρήστης %s διαμοιράστηκε ένα αρχείο με εσάς", +"User %s shared a folder with you" => "Ο χρήστης %s διαμοιράστηκε ένα φάκελο με εσάς", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Ο χρήστης %s διαμοιράστηκε το αρχείο \"%s\" μαζί σας. Είναι διαθέσιμο για λήψη εδώ: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Ο χρήστης %s διαμοιράστηκε τον φάκελο \"%s\" μαζί σας. Είναι διαθέσιμος για λήψη εδώ: %s", "Category type not provided." => "Δεν δώθηκε τύπος κατηγορίας.", "No category to add?" => "Δεν έχετε κατηγορία να προσθέσετε;", "This category already exists: " => "Αυτή η κατηγορία υπάρχει ήδη:", @@ -39,6 +43,8 @@ "Share with link" => "Διαμοιρασμός με σύνδεσμο", "Password protect" => "Προστασία συνθηματικού", "Password" => "Συνθηματικό", +"Email link to person" => "Αποστολή συνδέσμου με email ", +"Send" => "Αποστολή", "Set expiration date" => "Ορισμός ημ. λήξης", "Expiration date" => "Ημερομηνία λήξης", "Share via email:" => "Διαμοιρασμός μέσω email:", @@ -55,6 +61,8 @@ "Password protected" => "Προστασία με συνθηματικό", "Error unsetting expiration date" => "Σφάλμα κατά την διαγραφή της ημ. λήξης", "Error setting expiration date" => "Σφάλμα κατά τον ορισμό ημ. λήξης", +"Sending ..." => "Αποστολή...", +"Email sent" => "Το Email απεστάλη ", "ownCloud password reset" => "Επαναφορά συνθηματικού ownCloud", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", "You will receive a link to reset your password via Email." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου.", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 3d67179c14e..c18fe245c9e 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -43,6 +43,7 @@ "Share with link" => "Опубликовать с ссылкой", "Password protect" => "Защитить паролем", "Password" => "Пароль", +"Email link to person" => "Ссылка на адрес электронной почты", "Send" => "Отправить", "Set expiration date" => "Установить срок действия", "Expiration date" => "Дата истечения срока действия", diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 87be5707738..da4cfbd6279 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 09:18+0000\n" +"Last-Translator: rogerc \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" @@ -122,27 +122,27 @@ msgstr "-propietat de \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 09:21+0000\n" +"Last-Translator: rogerc \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,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud enviarà les credencials d'usuari a aquesta URL. S'interpretarà http 401 i http 403 com a credencials incorrectes i tots els altres codis com a credencials correctes." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 6ea2029ea1f..14926bb214e 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 12:07+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" @@ -134,27 +134,27 @@ msgstr "-lizenziert von \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 10:42+0000\n" +"Last-Translator: a.tangemann \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" @@ -176,8 +176,8 @@ msgid "The object type is not specified." msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fehler" @@ -189,7 +189,7 @@ msgstr "Der App-Name ist nicht angegeben." msgid "The required file {file} is not installed!" msgstr "Die benötigte Datei {file} ist nicht installiert." -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Fehler bei der Freigabe" @@ -217,11 +217,11 @@ msgstr "Freigeben für" msgid "Share with link" msgstr "Über einen Link freigeben" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Passwort" @@ -286,23 +286,23 @@ msgstr "löschen" msgid "share" msgstr "freigeben" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Email gesendet" @@ -327,7 +327,7 @@ msgid "Request failed!" msgstr "Die Anfrage schlug fehl!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Benutzername" @@ -541,29 +541,29 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "Log out" msgstr "Abmelden" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatische Anmeldung verweigert." -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "merken" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Einloggen" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index f1f9d99b929..d3dc81a2b5f 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 18:46+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 10:41+0000\n" +"Last-Translator: a.tangemann \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" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index c050b2d8808..9cb13ec43ec 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -4,14 +4,15 @@ # # Translators: # , 2012. +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 18:31+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 23:03+0000\n" +"Last-Translator: multimill \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,4 +29,4 @@ msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud " diff --git a/l10n/el/core.po b/l10n/el/core.po index 29a4a7ee03e..7a42857d69c 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 13:25+0000\n" +"Last-Translator: Efstathios Iosifidis \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" @@ -27,26 +27,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Ο χρήστης %s διαμοιράστηκε ένα αρχείο με εσάς" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Ο χρήστης %s διαμοιράστηκε ένα φάκελο με εσάς" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Ο χρήστης %s διαμοιράστηκε το αρχείο \"%s\" μαζί σας. Είναι διαθέσιμο για λήψη εδώ: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Ο χρήστης %s διαμοιράστηκε τον φάκελο \"%s\" μαζί σας. Είναι διαθέσιμος για λήψη εδώ: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -168,8 +168,8 @@ msgid "The object type is not specified." msgstr "Δεν καθορίστηκε ο τύπος του αντικειμένου." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Σφάλμα" @@ -181,7 +181,7 @@ msgstr "Δεν καθορίστηκε το όνομα της εφαρμογής. msgid "The required file {file} is not installed!" msgstr "Το απαιτούμενο αρχείο {file} δεν εγκαταστάθηκε!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -209,22 +209,22 @@ msgstr "Διαμοιρασμός με" msgid "Share with link" msgstr "Διαμοιρασμός με σύνδεσμο" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Προστασία συνθηματικού" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Συνθηματικό" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Αποστολή συνδέσμου με email " #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Αποστολή" #: js/share.js:177 msgid "Set expiration date" @@ -278,25 +278,25 @@ msgstr "διαγραφή" msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Αποστολή..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Το Email απεστάλη " #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -318,8 +318,8 @@ msgstr "Η επαναφορά του email στάλθηκε." msgid "Request failed!" msgstr "Η αίτηση απέτυχε!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Όνομα Χρήστη" @@ -408,44 +408,44 @@ msgstr "Ο κατάλογος data και τα αρχεία σας πιθανό msgid "Create an admin account" msgstr "Δημιουργήστε έναν λογαριασμό διαχειριστή" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Για προχωρημένους" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Φάκελος δεδομένων" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Ρύθμιση της βάσης δεδομένων" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "θα χρησιμοποιηθούν" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Χρήστης της βάσης δεδομένων" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Συνθηματικό βάσης δεδομένων" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης Δεδομένων" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" @@ -533,29 +533,29 @@ msgstr "Υπηρεσίες web υπό τον έλεγχό σας" msgid "Log out" msgstr "Αποσύνδεση" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Απορρίφθηκε η αυτόματη σύνδεση!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Εάν δεν αλλάξατε το συνθηματικό σας προσφάτως, ο λογαριασμός μπορεί να έχει διαρρεύσει!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Παρακαλώ αλλάξτε το συνθηματικό σας για να ασφαλίσετε πάλι τον λογαριασμό σας." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ξεχάσατε το συνθηματικό σας;" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "απομνημόνευση" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Είσοδος" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index c1705152ae5..f72135ae53a 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2012. # Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. # Petros Kyladitis , 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 13:41+0000\n" +"Last-Translator: Efstathios Iosifidis \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,14 +51,14 @@ msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." #: lib/config.php:435 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 "" +msgstr "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." #: templates/settings.php:3 msgid "External Storage" @@ -104,7 +105,7 @@ msgid "Users" msgstr "Χρήστες" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Διαγραφή" @@ -116,10 +117,10 @@ msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού msgid "Allow users to mount their own external storage" msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "Πιστοποιητικά SSL root" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Εισαγωγή Πιστοποιητικού Root" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index e7341dbe102..4b27d019760 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 13:06+0000\n" +"Last-Translator: Efstathios Iosifidis \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" @@ -128,27 +128,27 @@ msgstr "-άδεια από , 2012. +# Efstathios Iosifidis , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 13:00+0000\n" +"Last-Translator: Efstathios Iosifidis \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" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index be42124a75f..18876d4aa6b 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 17:40+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" @@ -120,27 +120,27 @@ msgstr "-lisensoija \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 08:45+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" @@ -20,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud invierà le credenziali dell'utente a questo URL. Interpreta i codici http 401 e http 403 come credenziali errate e tutti gli altri codici come credenziali corrette." diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 1f1f8fa6be3..3195e2e0539 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 13:39+0000\n" +"Last-Translator: Georgi Stanojevski \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,19 +120,19 @@ msgstr "-лиценцирано од \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-20 23:51+0000\n" +"Last-Translator: Mouxy \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" @@ -122,27 +122,27 @@ msgstr "-licenciado por , 2012. # Helder Meneses , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-20 23:46+0000\n" +"Last-Translator: Mouxy \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" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "O ownCloud vai enviar as credenciais para este URL. Todos os códigos http 401 e 403 serão interpretados como credenciais inválidas, todos os restantes códigos http serão interpretados como credenciais correctas." diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 007386b6eb0..c94ef7d516d 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 10:54+0000\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 08:08+0000\n" "Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -207,14 +207,14 @@ msgstr "Опубликовать с ссылкой" msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Пароль" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Ссылка на адрес электронной почты" #: js/share.js:173 msgid "Send" @@ -313,7 +313,7 @@ msgid "Request failed!" msgstr "Не удалось выполнить запрос!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Имя пользователя" @@ -527,29 +527,29 @@ msgstr "веб-сервисы под Вашим контролем" msgid "Log out" msgstr "Выйти" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Автоматический вход в систему отклонен!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Если Вы недавно не меняли пароль, Ваш аккаунт может быть подвергнут опасности!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Пожалуйста, измените пароль, чтобы защитить ваш аккаунт еще раз." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "запомнить" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Войти" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po index 66ab6707a11..b93907dab57 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/ru_RU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 11:24+0000\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 10:27+0000\n" "Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "Ошибка настройки хранилища Google Drive" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Предупреждение: \"smbclient\" не установлен. Mounting of CIFS/SMB shares is not possible. Пожалуйста, обратитесь к системному администратору, чтобы установить его." +msgstr "Предупреждение: \"smbclient\" не установлен. Подключение общих папок CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." #: lib/config.php:435 msgid "" @@ -100,7 +100,7 @@ msgid "Users" msgstr "Пользователи" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Удалить" @@ -112,10 +112,10 @@ msgstr "Включить пользовательскую внешнюю сис msgid "Allow users to mount their own external storage" msgstr "Разрешить пользователям монтировать их собственную внешнюю систему хранения данных" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "Корневые сертификаты SSL" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Импортировать корневые сертификаты" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 7731c49e2d1..15f03042ae5 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 10:00+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,27 +118,27 @@ msgstr "-licensed by \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b50639f96ba..bfe9b09567c 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 18ba9997b7f..ca6e60cba87 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 c3b5c0f60f7..8feb3108281 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 7c8266d73f2..4dbc3f13c49 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 006ef4c048a..188ef5efdbf 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 69c4599f7d3..f925dbe49c7 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 eb1545b7247..ff152eea274 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 91ef55584b8..496d89af3fa 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 35ef6d16f39..fdf8cc62304 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 63252d60677..cff6308811a 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 10:27+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถ #: ajax/upload.php:21 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" #: ajax/upload.php:23 msgid "" @@ -54,11 +54,11 @@ msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้ msgid "Files" msgstr "ไฟล์" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "ยกเลิกการแชร์ข้อมูล" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "ลบ" @@ -66,39 +66,39 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "แทนที่ {new_name} แล้ว" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "ยกเลิกการแชร์แล้ว {files} ไฟล์" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "ลบไฟล์แล้ว {files} ไฟล์" @@ -108,80 +108,80 @@ msgid "" "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "เกิดข้อผิดพลาดในการอัพโหลด" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "ปิด" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "กำลังอัพโหลด {count} ไฟล์" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "ชื่อโฟลเดอร์ที่ใช้ไม่ถูกต้อง การใช้งาน \"ถูกแชร์\" ถูกสงวนไว้เฉพาะ Owncloud เท่านั้น" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "สแกนไฟล์แล้ว {count} ไฟล์" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "พบข้อผิดพลาดในระหว่างการสแกนไฟล์" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ชื่อ" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "ขนาด" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ไฟล์" @@ -241,28 +241,28 @@ msgstr "อัพโหลด" msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 2c58fdfe131..0f57387355a 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -23,8 +23,17 @@ "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", "-licensed by " => "-propietat de ", +"User Documentation" => "Documentació d'usuari", +"Administrator Documentation" => "Documentació d'administrador", +"Online Documentation" => "Documentació en línia", +"Forum" => "Fòrum", +"Bugtracker" => "Seguiment d'errors", +"Commercial Support" => "Suport comercial", "You have used %s of the available %s" => "Heu utilitzat %s d'un total disponible de %s", "Clients" => "Clients", +"Download Desktop Clients" => "Baixa clients d'escriptori", +"Download Android Client" => " Baixa el client per Android", +"Download iOS Client" => "Baixa el client per iOS", "Password" => "Contrasenya", "Your password was changed" => "La seva contrasenya s'ha canviat", "Unable to change your password" => "No s'ha pogut canviar la contrasenya", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Ompliu el correu electrònic per activar la recuperació de contrasenya", "Language" => "Idioma", "Help translate" => "Ajudeu-nos amb la traducció", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers", +"Version" => "Versió", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolupat per la comunitat ownCloud, el codi font té llicència AGPL.", "Name" => "Nom", "Groups" => "Grups", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 11ec83ef67d..836e5112665 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -23,8 +23,17 @@ "Select an App" => "Wähle eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen findest Du auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", +"User Documentation" => "Dokumentation für Benutzer", +"Administrator Documentation" => "Dokumentation für Administratoren", +"Online Documentation" => "Online-Dokumentation", +"Forum" => "Forum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Kommerzieller Support", "You have used %s of the available %s" => "Du verwendest %s der verfügbaren %s", "Clients" => "Kunden", +"Download Desktop Clients" => "Desktop-Client herunterladen", +"Download Android Client" => "Android-Client herunterladen", +"Download iOS Client" => "iOS-Client herunterladen", "Password" => "Passwort", "Your password was changed" => "Dein Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Language" => "Sprache", "Help translate" => "Hilf bei der Übersetzung", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden", +"Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert.", "Name" => "Name", "Groups" => "Gruppen", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 6e4923fd7de..38b96151cb4 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -23,8 +23,17 @@ "Select an App" => "Επιλέξτε μια Εφαρμογή", "See application page at apps.owncloud.com" => "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com", "-licensed by " => "-άδεια από ", +"User Documentation" => "Τεκμηρίωση Χρήστη", +"Administrator Documentation" => "Τεκμηρίωση Διαχειριστή", +"Online Documentation" => "Τεκμηρίωση στο Διαδίκτυο", +"Forum" => "Φόρουμ", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Εμπορική Υποστήριξη", "You have used %s of the available %s" => "Χρησιμοποιήσατε %s από διαθέσιμα %s", "Clients" => "Πελάτες", +"Download Desktop Clients" => "Λήψη Προγραμμάτων για Σταθερούς Υπολογιστές", +"Download Android Client" => "Λήψη Προγράμματος Android", +"Download iOS Client" => "Λήψη Προγράμματος iOS", "Password" => "Συνθηματικό", "Your password was changed" => "Το συνθηματικό σας έχει αλλάξει", "Unable to change your password" => "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού", "Language" => "Γλώσσα", "Help translate" => "Βοηθήστε στη μετάφραση", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας", +"Version" => "Έκδοση", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL.", "Name" => "Όνομα", "Groups" => "Ομάδες", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index ff5f7f6a2b7..2d9d6ce941c 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -23,8 +23,17 @@ "Select an App" => "Valitse sovellus", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", "-licensed by " => "-lisensoija ", +"User Documentation" => "Käyttäjäohjeistus", +"Administrator Documentation" => "Ylläpito-ohjeistus", +"Online Documentation" => "Verkko-ohjeistus", +"Forum" => "Keskustelupalsta", +"Bugtracker" => "Ohjelmistovirheiden jäljitys", +"Commercial Support" => "Kaupallinen tuki", "You have used %s of the available %s" => "Käytössäsi on %s/%s", "Clients" => "Asiakkaat", +"Download Desktop Clients" => "Lataa työpöytäsovelluksia", +"Download Android Client" => "Lataa Android-sovellus", +"Download iOS Client" => "Lataa iOS-sovellus", "Password" => "Salasana", "Your password was changed" => "Salasanasi vaihdettiin", "Unable to change your password" => "Salasanaasi ei voitu vaihtaa", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa", "Language" => "Kieli", "Help translate" => "Auta kääntämisessä", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen", +"Version" => "Versio", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Kehityksestä on vastannut ownCloud-yhteisö, lähdekoodi on julkaistu lisenssin AGPL alaisena.", "Name" => "Nimi", "Groups" => "Ryhmät", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index bca762f8144..25a3fa80c47 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -23,8 +23,16 @@ "Select an App" => "Избери аппликација", "See application page at apps.owncloud.com" => "Види ја страницата со апликации на apps.owncloud.com", "-licensed by " => "-лиценцирано од ", +"User Documentation" => "Корисничка документација", +"Administrator Documentation" => "Администраторска документација", +"Online Documentation" => "Документација на интернет", +"Forum" => "Форум", +"Commercial Support" => "Комерцијална подршка", "You have used %s of the available %s" => "Имате искористено %s од достапните %s", "Clients" => "Клиенти", +"Download Desktop Clients" => "Преземи клиенти за десктоп", +"Download Android Client" => "Преземи клиент за Андроид", +"Download iOS Client" => "Преземи iOS клиент", "Password" => "Лозинка", "Your password was changed" => "Вашата лозинка беше променета.", "Unable to change your password" => "Вашата лозинка неможе да се смени", @@ -37,6 +45,9 @@ "Fill in an email address to enable password recovery" => "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката", "Language" => "Јазик", "Help translate" => "Помогни во преводот", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Користете ја оваа адреса да ", +"Version" => "Верзија", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Развој од ownCloud заедницата, изворниот код е лиценциран соAGPL.", "Name" => "Име", "Groups" => "Групи", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index fa5d01d8679..6c2a50047db 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -23,8 +23,17 @@ "Select an App" => "Selecione uma aplicação", "See application page at apps.owncloud.com" => "Ver a página da aplicação em apps.owncloud.com", "-licensed by " => "-licenciado por ", +"User Documentation" => "Documentação de Utilizador", +"Administrator Documentation" => "Documentação de administrador.", +"Online Documentation" => "Documentação Online", +"Forum" => "Fórum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Suporte Comercial", "You have used %s of the available %s" => "Usou %s do disponivel %s", "Clients" => "Clientes", +"Download Desktop Clients" => "Transferir os clientes de sincronização", +"Download Android Client" => "Transferir o cliente android", +"Download iOS Client" => "Transferir o cliente iOS", "Password" => "Palavra-chave", "Your password was changed" => "A sua palavra-passe foi alterada", "Unable to change your password" => "Não foi possivel alterar a sua palavra-chave", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Use este endereço no seu gestor de ficheiros para ligar à sua ownCloud", +"Version" => "Versão", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolvido pela comunidade ownCloud, ocódigo fonte está licenciado sob a AGPL.", "Name" => "Nome", "Groups" => "Grupos", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index a12bd09d28a..a964fe9166e 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -23,8 +23,16 @@ "Select an App" => "Выбрать приложение", "See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com", "-licensed by " => "-licensed by ", +"User Documentation" => "Документация пользователя", +"Administrator Documentation" => "Документация администратора", +"Online Documentation" => "Документация online", +"Forum" => "Форум", +"Bugtracker" => "Отслеживание ошибок", +"Commercial Support" => "Коммерческая поддержка", "You have used %s of the available %s" => "Вы использовали %s из возможных %s", "Clients" => "Клиенты", +"Download Android Client" => "Загрузить клиент под Android ", +"Download iOS Client" => "Загрузить клиент под iOS ", "Password" => "Пароль", "Your password was changed" => "Ваш пароль был изменен", "Unable to change your password" => "Невозможно изменить Ваш пароль", @@ -37,6 +45,9 @@ "Fill in an email address to enable password recovery" => "Введите адрес электронной почты для возможности восстановления пароля", "Language" => "Язык", "Help translate" => "Помогите перевести", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Используйте этот адрес для подключения к ownCloud в Вашем файловом менеджере", +"Version" => "Версия", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Разработанный ownCloud community, the source code is licensed under the AGPL.", "Name" => "Имя", "Groups" => "Группы", -- cgit v1.2.3 From 0656b4174728595139dff5265553fdc44015a912 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 23 Dec 2012 00:10:23 +0100 Subject: [tx-robot] updated from transifex --- apps/files_external/l10n/de.php | 4 ++-- apps/files_external/l10n/de_DE.php | 4 ++-- apps/files_sharing/l10n/ar.php | 9 +++++++++ apps/files_versions/l10n/ar.php | 8 ++++++++ apps/user_ldap/l10n/ar.php | 3 +++ apps/user_ldap/l10n/de.php | 4 ++-- apps/user_ldap/l10n/de_DE.php | 1 + apps/user_webdavauth/l10n/ar.php | 2 +- apps/user_webdavauth/l10n/de.php | 3 ++- apps/user_webdavauth/l10n/uk.php | 3 ++- core/l10n/de.php | 8 ++++---- core/l10n/de_DE.php | 10 +++++----- l10n/ar/files_sharing.po | 31 ++++++++++++++++--------------- l10n/ar/files_versions.po | 23 ++++++++++++----------- l10n/ar/settings.po | 6 +++--- l10n/ar/user_ldap.po | 6 +++--- l10n/ar/user_webdavauth.po | 9 +++++---- l10n/de/core.po | 30 +++++++++++++++--------------- l10n/de/files_external.po | 16 ++++++++-------- l10n/de/settings.po | 8 ++++---- l10n/de/user_ldap.po | 10 +++++----- l10n/de/user_webdavauth.po | 10 +++++----- l10n/de_DE/core.po | 16 ++++++++-------- l10n/de_DE/files_external.po | 16 ++++++++-------- l10n/de_DE/settings.po | 8 ++++---- l10n/de_DE/user_ldap.po | 8 ++++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/uk/settings.po | 31 ++++++++++++++++--------------- l10n/uk/user_webdavauth.po | 11 ++++++----- settings/l10n/ar.php | 1 + settings/l10n/de.php | 2 +- settings/l10n/de_DE.php | 2 +- settings/l10n/uk.php | 12 ++++++++++++ 42 files changed, 188 insertions(+), 147 deletions(-) create mode 100644 apps/files_sharing/l10n/ar.php create mode 100644 apps/files_versions/l10n/ar.php create mode 100644 apps/user_ldap/l10n/ar.php (limited to 'apps') diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php index 196b3af2038..277cc2e6efe 100644 --- a/apps/files_external/l10n/de.php +++ b/apps/files_external/l10n/de.php @@ -5,8 +5,8 @@ "Fill out all required fields" => "Bitte alle notwendigen Felder füllen", "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", -"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-Verwalter 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: \"smbclient\" ist nicht aktiv oder nicht installiert. Das Einhängen von FTP-Freigaben ist nicht möglich. Bitte Deinen System-Verwalter dies zu installieren.", +"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.", "External Storage" => "Externer Speicher", "Mount point" => "Mount-Point", "Backend" => "Backend", diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index fb969006d66..5675eb057f0 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -5,8 +5,8 @@ "Fill out all required fields" => "Bitte alle notwendigen Felder füllen", "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." => "Achtung: \"smbclient\" ist nicht installiert. Das Laden von CIFS/SMB shares ist nicht möglich. Bitte wenden Sie sich an Ihren Systemadministrator.", -"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Achtung: Die FTP Unterstützung von PHP ist nicht initialisiert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator.", +"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.", "External Storage" => "Externer Speicher", "Mount point" => "Mount-Point", "Backend" => "Backend", diff --git a/apps/files_sharing/l10n/ar.php b/apps/files_sharing/l10n/ar.php new file mode 100644 index 00000000000..4cf3f8c0920 --- /dev/null +++ b/apps/files_sharing/l10n/ar.php @@ -0,0 +1,9 @@ + "كلمة المرور", +"Submit" => "تطبيق", +"%s shared the folder %s with you" => "%s شارك المجلد %s معك", +"%s shared the file %s with you" => "%s شارك الملف %s معك", +"Download" => "تحميل", +"No preview available for" => "لا يوجد عرض مسبق لـ", +"web services under your control" => "خدمات الشبكة تحت سيطرتك" +); diff --git a/apps/files_versions/l10n/ar.php b/apps/files_versions/l10n/ar.php new file mode 100644 index 00000000000..fea7f1c7562 --- /dev/null +++ b/apps/files_versions/l10n/ar.php @@ -0,0 +1,8 @@ + "إنهاء تاريخ الإنتهاء لجميع الإصدارات", +"History" => "السجل الزمني", +"Versions" => "الإصدارات", +"This will delete all existing backup versions of your files" => "هذه العملية ستقوم بإلغاء جميع إصدارات النسخ الاحتياطي للملفات", +"Files Versioning" => "أصدرة الملفات", +"Enable" => "تفعيل" +); diff --git a/apps/user_ldap/l10n/ar.php b/apps/user_ldap/l10n/ar.php new file mode 100644 index 00000000000..ced0b4293b7 --- /dev/null +++ b/apps/user_ldap/l10n/ar.php @@ -0,0 +1,3 @@ + "كلمة المرور" +); diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index bcd8ccfe343..87579cb2431 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -1,6 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Apps user_ldap und user_webdavauth sind nicht kompatible. Unerwartetes Verhalten kann auftreten. Bitte Deinen System-Verwalter eine von beiden zu de-aktivieren.", -"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen System-Administrator das Modul zu installieren.", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen Systemadministrator das Modul zu installieren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://", "Base DN" => "Basis-DN", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 82877b5ca1b..f986ae83e87 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -1,5 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://", "Base DN" => "Basis-DN", diff --git a/apps/user_webdavauth/l10n/ar.php b/apps/user_webdavauth/l10n/ar.php index 9bd32954b05..cf59cd2519e 100644 --- a/apps/user_webdavauth/l10n/ar.php +++ b/apps/user_webdavauth/l10n/ar.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "الرابط: http://" ); diff --git a/apps/user_webdavauth/l10n/de.php b/apps/user_webdavauth/l10n/de.php index 9bd32954b05..8589dc0c4fd 100644 --- a/apps/user_webdavauth/l10n/de.php +++ b/apps/user_webdavauth/l10n/de.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud wird die Logindaten zu dieser URL senden. http 401 und http 403 werden als falsche Logindaten interpretiert und alle anderen Codes als korrekte Logindaten." ); diff --git a/apps/user_webdavauth/l10n/uk.php b/apps/user_webdavauth/l10n/uk.php index 9bd32954b05..57aa90684ae 100644 --- a/apps/user_webdavauth/l10n/uk.php +++ b/apps/user_webdavauth/l10n/uk.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud відправить облікові дані на цей URL та буде інтерпретувати http 401 і http 403, як невірні облікові дані, а всі інші коди, як вірні." ); diff --git a/core/l10n/de.php b/core/l10n/de.php index 08a120763a3..c5867eda8c3 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,8 +1,8 @@ "%s möchte eine Datei mit dir teilen", -"User %s shared a folder with you" => "%s möchte ein Verzeichnis mit dir teilen", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s möchte die Datei %s mit dir teilen. Sie liegt hier zum Download bereit: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s möchte das Verzeichnis %s mit dir teilen. Es liegt hier zum Download bereit: %s", +"User %s shared a file with you" => "Der Nutzer %s hat eine Datei für Dich freigegeben", +"User %s shared a folder with you" => "%s hat ein Verzeichnis für Dich freigegeben", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s hat eine Datei \"%s\" für Dich freigegeben. Sie ist zum Download hier ferfügbar: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat eine Verzeichnis \"%s\" für Dich freigegeben. Es ist zum Download hier ferfügbar: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index e32068f6db2..ed0bc0e0ffb 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,8 +1,8 @@ "Der Nutzer %s teilt eine Datei mit dir", -"User %s shared a folder with you" => "Der Nutzer %s teilt einen Ordner mit dir", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt die Datei \"%s\" mit dir. Du kannst diese hier herunterladen: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt den Ornder \"%s\" mit dir. Du kannst diesen hier herunterladen: %s", +"User %s shared a file with you" => "Der Nutzer %s hat eine Datei für Sie freigegeben", +"User %s shared a folder with you" => "%s hat ein Verzeichnis für Sie freigegeben", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s hat eine Datei \"%s\" für Sie freigegeben. Sie ist zum Download hier ferfügbar: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat eine Verzeichnis \"%s\" für Sie freigegeben. Es ist zum Download hier ferfügbar: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", @@ -43,7 +43,7 @@ "Share with link" => "Über einen Link freigeben", "Password protect" => "Passwortschutz", "Password" => "Passwort", -"Email link to person" => "Link per Mail an Person schicken", +"Email link to person" => "Link per E-Mail verschicken", "Send" => "Senden", "Set expiration date" => "Setze ein Ablaufdatum", "Expiration date" => "Ablaufdatum", diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 4c6c7c44821..92546656f2f 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 19:42+0000\n" +"Last-Translator: aboodilankaboot \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,30 +20,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "كلمة المرور" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "تطبيق" -#: templates/public.php:9 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s شارك المجلد %s معك" -#: templates/public.php:11 +#: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s شارك الملف %s معك" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:22 templates/public.php:38 msgid "Download" -msgstr "" +msgstr "تحميل" -#: templates/public.php:29 +#: templates/public.php:37 msgid "No preview available for" -msgstr "" +msgstr "لا يوجد عرض مسبق لـ" -#: templates/public.php:37 +#: templates/public.php:43 msgid "web services under your control" -msgstr "" +msgstr "خدمات الشبكة تحت سيطرتك" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index 850b57a0081..3b32ba6301d 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 19:47+0000\n" +"Last-Translator: aboodilankaboot \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" @@ -17,26 +18,26 @@ 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" -#: js/settings-personal.js:31 templates/settings-personal.php:10 +#: js/settings-personal.js:31 templates/settings-personal.php:7 msgid "Expire all versions" -msgstr "" +msgstr "إنهاء تاريخ الإنتهاء لجميع الإصدارات" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "السجل الزمني" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "الإصدارات" -#: templates/settings-personal.php:7 +#: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "هذه العملية ستقوم بإلغاء جميع إصدارات النسخ الاحتياطي للملفات" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "أصدرة الملفات" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "تفعيل" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 9d5c9b6e9e3..0681094b946 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 19:51+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "" #: js/apps.js:28 js/apps.js:55 msgid "Enable" -msgstr "" +msgstr "تفعيل" #: js/personal.js:69 msgid "Saving..." diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 6a78dcfd054..7aaa90abe9a 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 19:40+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" @@ -60,7 +60,7 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "كلمة المرور" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." diff --git a/l10n/ar/user_webdavauth.po b/l10n/ar/user_webdavauth.po index 1d788f23767..ac1aa5b4a5e 100644 --- a/l10n/ar/user_webdavauth.po +++ b/l10n/ar/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 19:22+0000\n" +"Last-Translator: aboodilankaboot \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" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "الرابط: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/de/core.po b/l10n/de/core.po index 4d2fac3a45e..861465cce99 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -23,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 08:06+0000\n" -"Last-Translator: Susi <>\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 13:50+0000\n" +"Last-Translator: Mirodin \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" @@ -36,26 +36,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "%s möchte eine Datei mit dir teilen" +msgstr "Der Nutzer %s hat eine Datei für Dich freigegeben" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "%s möchte ein Verzeichnis mit dir teilen" +msgstr "%s hat ein Verzeichnis für Dich freigegeben" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "%s möchte die Datei %s mit dir teilen. Sie liegt hier zum Download bereit: %s" +msgstr "%s hat eine Datei \"%s\" für Dich freigegeben. Sie ist zum Download hier ferfügbar: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "%s möchte das Verzeichnis %s mit dir teilen. Es liegt hier zum Download bereit: %s" +msgstr "%s hat eine Verzeichnis \"%s\" für Dich freigegeben. Es ist zum Download hier ferfügbar: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -222,7 +222,7 @@ msgstr "Über einen Link freigeben" msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Passwort" @@ -328,7 +328,7 @@ msgid "Request failed!" msgstr "Die Anfrage schlug fehl!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Benutzername" @@ -542,29 +542,29 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "Log out" msgstr "Abmelden" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatischer Login zurückgewiesen!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "merken" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Einloggen" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 42d733228c9..c8d7b8f8e41 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" -"PO-Revision-Date: 2012-12-15 19:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 13:57+0000\n" +"Last-Translator: Mirodin \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" @@ -50,14 +50,14 @@ msgstr "Fehler beim Einrichten von Google Drive" 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-Verwalter dies zu installieren." +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:435 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: \"smbclient\" ist nicht aktiv oder nicht installiert. Das Einhängen von FTP-Freigaben ist nicht möglich. Bitte Deinen System-Verwalter dies zu installieren." +msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator." #: templates/settings.php:3 msgid "External Storage" @@ -104,7 +104,7 @@ msgid "Users" msgstr "Benutzer" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Löschen" @@ -116,10 +116,10 @@ msgstr "Externen Speicher für Benutzer aktivieren" msgid "Allow users to mount their own external storage" msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 14926bb214e..019a9c65ce0 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 12:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 14:02+0000\n" +"Last-Translator: Mirodin \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" @@ -231,7 +231,7 @@ msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" +msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" #: templates/personal.php:63 msgid "Version" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 2d9cbf3b697..7e83a5b2043 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 08:19+0000\n" -"Last-Translator: Susi <>\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 14:04+0000\n" +"Last-Translator: Mirodin \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" @@ -30,13 +30,13 @@ 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 "Warnung: Die Apps user_ldap und user_webdavauth sind nicht kompatible. Unerwartetes Verhalten kann auftreten. Bitte Deinen System-Verwalter eine von beiden zu de-aktivieren." +msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen System-Administrator das Modul zu installieren." +msgstr "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen Systemadministrator das Modul zu installieren." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/de/user_webdavauth.po b/l10n/de/user_webdavauth.po index b79ed12e950..392938e5f92 100644 --- a/l10n/de/user_webdavauth.po +++ b/l10n/de/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 14:08+0000\n" +"Last-Translator: Mirodin \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" @@ -21,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud wird die Logindaten zu dieser URL senden. http 401 und http 403 werden als falsche Logindaten interpretiert und alle anderen Codes als korrekte Logindaten." diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 1dbf430164c..116cf3006cd 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 10:42+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 13:52+0000\n" +"Last-Translator: Mirodin \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" @@ -35,26 +35,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "Der Nutzer %s teilt eine Datei mit dir" +msgstr "Der Nutzer %s hat eine Datei für Sie freigegeben" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "Der Nutzer %s teilt einen Ordner mit dir" +msgstr "%s hat ein Verzeichnis für Sie freigegeben" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Der Nutzer %s teilt die Datei \"%s\" mit dir. Du kannst diese hier herunterladen: %s" +msgstr "%s hat eine Datei \"%s\" für Sie freigegeben. Sie ist zum Download hier ferfügbar: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Der Nutzer %s teilt den Ornder \"%s\" mit dir. Du kannst diesen hier herunterladen: %s" +msgstr "%s hat eine Verzeichnis \"%s\" für Sie freigegeben. Es ist zum Download hier ferfügbar: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -228,7 +228,7 @@ msgstr "Passwort" #: js/share.js:172 msgid "Email link to person" -msgstr "Link per Mail an Person schicken" +msgstr "Link per E-Mail verschicken" #: js/share.js:173 msgid "Send" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 1b603f1ee39..6567207b387 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 11:52+0000\n" -"Last-Translator: deh3nne \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 13:57+0000\n" +"Last-Translator: Mirodin \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" @@ -50,14 +50,14 @@ msgstr "Fehler beim Einrichten von Google Drive" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Achtung: \"smbclient\" ist nicht installiert. Das Laden von CIFS/SMB shares ist nicht möglich. Bitte wenden Sie sich an Ihren Systemadministrator." +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:435 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 "Achtung: Die FTP Unterstützung von PHP ist nicht initialisiert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." +msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." #: templates/settings.php:3 msgid "External Storage" @@ -104,7 +104,7 @@ msgid "Users" msgstr "Benutzer" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Löschen" @@ -116,10 +116,10 @@ msgstr "Externen Speicher für Benutzer aktivieren" msgid "Allow users to mount their own external storage" msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index d3dc81a2b5f..d95b7bb40db 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 10:41+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 14:01+0000\n" +"Last-Translator: Mirodin \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" @@ -231,7 +231,7 @@ msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" +msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" #: templates/personal.php:63 msgid "Version" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 0d720cd286f..843b2e80f4d 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 18:43+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 14:04+0000\n" +"Last-Translator: Mirodin \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" @@ -35,7 +35,7 @@ msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkom msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 0d2a2170aca..4b7fb0fec62 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 bfe9b09567c..7a44cdd0641 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 ca6e60cba87..8e65b3fa81d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 8feb3108281..d9aed4d9c67 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 4dbc3f13c49..f790c23a1b9 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 188ef5efdbf..d59a26bbdb8 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 f925dbe49c7..7c919b714a9 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 ff152eea274..f8796fdcda4 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 496d89af3fa..69bcd199616 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 fdf8cc62304..a09b859730d 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 3c59ae24b65..613086e2095 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -5,13 +5,14 @@ # Translators: # , 2012. # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 02:04+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -119,27 +120,27 @@ msgstr "-licensed by , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 01:58+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud відправить облікові дані на цей URL та буде інтерпретувати http 401 і http 403, як невірні облікові дані, а всі інші коди, як вірні." diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index f6e059f64bf..9edbe1a4212 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -3,6 +3,7 @@ "Invalid request" => "طلبك غير مفهوم", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Language changed" => "تم تغيير اللغة", +"Enable" => "تفعيل", "Saving..." => "حفظ", "__language_name__" => "__language_name__", "Select an App" => "إختر تطبيقاً", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 836e5112665..e27d1c1c432 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -47,7 +47,7 @@ "Language" => "Sprache", "Help translate" => "Hilf bei der Übersetzung", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden", +"Use this address to connect to your ownCloud in your file manager" => "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden", "Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert.", "Name" => "Name", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 1fc8f591abf..99d7c1360ce 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -47,7 +47,7 @@ "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden", +"Use this address to connect to your ownCloud in your file manager" => "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden", "Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert.", "Name" => "Name", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 0cbce797e1d..b9f48b2e881 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -23,8 +23,17 @@ "Select an App" => "Вибрати додаток", "See application page at apps.owncloud.com" => "Перегляньте сторінку програм на apps.owncloud.com", "-licensed by " => "-licensed by ", +"User Documentation" => "Документація Користувача", +"Administrator Documentation" => "Документація Адміністратора", +"Online Documentation" => "Он-Лайн Документація", +"Forum" => "Форум", +"Bugtracker" => "БагТрекер", +"Commercial Support" => "Комерційна підтримка", "You have used %s of the available %s" => "Ви використали %s із доступних %s", "Clients" => "Клієнти", +"Download Desktop Clients" => "Завантажити клієнт для ПК", +"Download Android Client" => "Завантажити клієнт для Android", +"Download iOS Client" => "Завантажити клієнт для iOS", "Password" => "Пароль", "Your password was changed" => "Ваш пароль змінено", "Unable to change your password" => "Не вдалося змінити Ваш пароль", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Введіть адресу електронної пошти для відновлення паролю", "Language" => "Мова", "Help translate" => "Допомогти з перекладом", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Використовуйте цю адресу для під'єднання до вашого ownCloud у вашому файловому менеджері", +"Version" => "Версія", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Розроблено ownCloud громадою, вихідний код має ліцензію AGPL.", "Name" => "Ім'я", "Groups" => "Групи", -- cgit v1.2.3 From 7d52c39419123ed3d20368245166e6fc1150975a Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 24 Dec 2012 00:12:16 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/da.php | 4 + apps/files_external/l10n/da.php | 2 + apps/files_external/l10n/zh_CN.php | 2 + apps/user_webdavauth/l10n/da.php | 4 + apps/user_webdavauth/l10n/sv.php | 2 +- apps/user_webdavauth/l10n/zh_CN.php | 2 +- core/l10n/ar.php | 50 ++++++++++- core/l10n/ca.php | 2 +- core/l10n/da.php | 21 +++++ core/l10n/zh_CN.php | 7 ++ l10n/ar/core.po | 161 ++++++++++++++++++------------------ l10n/ar/lib.po | 30 +++---- l10n/ar/settings.po | 73 ++++++++-------- l10n/ca/core.po | 64 +++++++------- l10n/da/core.po | 107 ++++++++++++------------ l10n/da/files.po | 87 +++++++++---------- l10n/da/files_external.po | 17 ++-- l10n/da/lib.po | 37 +++++---- l10n/da/user_webdavauth.po | 11 +-- l10n/sv/user_webdavauth.po | 8 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/zh_CN/core.po | 79 +++++++++--------- l10n/zh_CN/files_external.po | 17 ++-- l10n/zh_CN/settings.po | 31 +++---- l10n/zh_CN/user_webdavauth.po | 9 +- lib/l10n/ar.php | 5 +- lib/l10n/da.php | 7 +- settings/l10n/ar.php | 33 ++++++++ settings/l10n/zh_CN.php | 12 +++ 38 files changed, 528 insertions(+), 376 deletions(-) create mode 100644 apps/user_webdavauth/l10n/da.php (limited to 'apps') diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 24652622c61..05404d27af7 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -1,5 +1,6 @@ "Der er ingen fejl, filen blev uploadet med success", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen", "The uploaded file was only partially uploaded" => "Den uploadede file blev kun delvist uploadet", "No file was uploaded" => "Ingen fil blev uploadet", @@ -18,6 +19,7 @@ "replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}", "unshared {files}" => "ikke delte {files}", "deleted {files}" => "slettede {files}", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.", "generating ZIP-file, it may take some time." => "genererer ZIP-fil, det kan tage lidt tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom", "Upload Error" => "Fejl ved upload", @@ -27,6 +29,7 @@ "{count} files uploading" => "{count} filer uploades", "Upload cancelled." => "Upload afbrudt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", +"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud", "{count} files scanned" => "{count} filer skannet", "error while scanning" => "fejl under scanning", "Name" => "Navn", @@ -47,6 +50,7 @@ "New" => "Ny", "Text file" => "Tekstfil", "Folder" => "Mappe", +"From link" => "Fra link", "Upload" => "Upload", "Cancel upload" => "Fortryd upload", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!", diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index 00a81f3da16..bae89a6cfdd 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "Udfyld alle nødvendige felter", "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", +"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.", "External Storage" => "Ekstern opbevaring", "Mount point" => "Monteringspunkt", "Backend" => "Backend", diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 247ef7ce95c..1bb88564630 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "完成所有必填项", "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 分享挂载无法实现。请咨询系统管理员进行安装。", "External Storage" => "外部存储", "Mount point" => "挂载点", "Backend" => "后端", diff --git a/apps/user_webdavauth/l10n/da.php b/apps/user_webdavauth/l10n/da.php new file mode 100644 index 00000000000..7d9ee1d5b29 --- /dev/null +++ b/apps/user_webdavauth/l10n/da.php @@ -0,0 +1,4 @@ + "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud vil sende brugeroplysningerne til denne webadresse er fortolker http 401 og http 403 som brugeroplysninger forkerte og alle andre koder som brugeroplysninger korrekte." +); diff --git a/apps/user_webdavauth/l10n/sv.php b/apps/user_webdavauth/l10n/sv.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/sv.php +++ b/apps/user_webdavauth/l10n/sv.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/zh_CN.php b/apps/user_webdavauth/l10n/zh_CN.php index 33c77f7d30e..5b06409b42e 100644 --- a/apps/user_webdavauth/l10n/zh_CN.php +++ b/apps/user_webdavauth/l10n/zh_CN.php @@ -1,3 +1,3 @@ "WebDAV地址: http://" +"URL: http://" => "URL:http://" ); diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 80a22a248e6..d33de577b3d 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,10 +1,48 @@ "ألا توجد فئة للإضافة؟", +"This category already exists: " => "هذه الفئة موجودة مسبقاً", +"No categories selected for deletion." => "لم يتم اختيار فئة للحذف", "Settings" => "تعديلات", +"seconds ago" => "منذ ثواني", +"1 minute ago" => "منذ دقيقة", +"{minutes} minutes ago" => "{minutes} منذ دقائق", +"today" => "اليوم", +"Choose" => "اختيار", "Cancel" => "الغاء", +"No" => "لا", +"Yes" => "نعم", +"Ok" => "موافق", +"Error" => "خطأ", +"Error while sharing" => "حصل خطأ عند عملية المشاركة", +"Error while unsharing" => "حصل خطأ عند عملية إزالة المشاركة", +"Error while changing permissions" => "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل", +"Shared with you and the group {group} by {owner}" => "شورك معك ومع المجموعة {group} من قبل {owner}", +"Shared with you by {owner}" => "شورك معك من قبل {owner}", +"Share with" => "شارك مع", +"Share with link" => "شارك مع رابط", +"Password protect" => "حماية كلمة السر", "Password" => "كلمة السر", +"Set expiration date" => "تعيين تاريخ إنتهاء الصلاحية", +"Expiration date" => "تاريخ إنتهاء الصلاحية", +"Share via email:" => "مشاركة عبر البريد الإلكتروني:", +"No people found" => "لم يتم العثور على أي شخص", +"Resharing is not allowed" => "لا يسمح بعملية إعادة المشاركة", +"Shared in {item} with {user}" => "شورك في {item} مع {user}", "Unshare" => "إلغاء مشاركة", +"can edit" => "التحرير مسموح", +"access control" => "ضبط الوصول", +"create" => "إنشاء", +"update" => "تحديث", +"delete" => "حذف", +"share" => "مشاركة", +"Password protected" => "محمي بكلمة السر", +"Error unsetting expiration date" => "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية", +"Error setting expiration date" => "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية", +"ownCloud password reset" => "إعادة تعيين كلمة سر ownCloud", "Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}", "You will receive a link to reset your password via Email." => "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر.", +"Reset email send." => "إعادة إرسال البريد الإلكتروني.", +"Request failed!" => "فشل الطلب", "Username" => "إسم المستخدم", "Request reset" => "طلب تعديل", "Your password was reset" => "لقد تم تعديل كلمة السر", @@ -16,9 +54,12 @@ "Apps" => "التطبيقات", "Admin" => "مستخدم رئيسي", "Help" => "المساعدة", +"Access forbidden" => "التوصّل محظور", "Cloud not found" => "لم يتم إيجاد", "Edit categories" => "عدل الفئات", "Add" => "أدخل", +"Security Warning" => "تحذير أمان", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension.", "Create an admin account" => "أضف مستخدم رئيسي ", "Advanced" => "خيارات متقدمة", "Data folder" => "مجلد المعلومات", @@ -27,6 +68,7 @@ "Database user" => "مستخدم قاعدة البيانات", "Database password" => "كلمة سر مستخدم قاعدة البيانات", "Database name" => "إسم قاعدة البيانات", +"Database tablespace" => "مساحة جدول قاعدة البيانات", "Database host" => "خادم قاعدة البيانات", "Finish setup" => "انهاء التعديلات", "Sunday" => "الاحد", @@ -50,10 +92,16 @@ "December" => "كانون الاول", "web services under your control" => "خدمات الوب تحت تصرفك", "Log out" => "الخروج", +"Automatic logon rejected!" => "تم رفض تسجيل الدخول التلقائي!", +"If you did not change your password recently, your account may be compromised!" => "قد يكون حسابك في خطر إن لم تقم بإعادة تعيين كلمة السر حديثاً", +"Please change your password to secure your account again." => "الرجاء إعادة تعيين كلمة السر لتأمين حسابك.", "Lost your password?" => "هل نسيت كلمة السر؟", "remember" => "تذكر", "Log in" => "أدخل", "You are logged out." => "تم الخروج بنجاح.", "prev" => "السابق", -"next" => "التالي" +"next" => "التالي", +"Security Warning!" => "تحذير أمان!", +"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "الرجاء التحقق من كلمة السر.
من الممكن أحياناً أن نطلب منك إعادة إدخال كلمة السر مرة أخرى.", +"Verify" => "تحقيق" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index cf7cdfb7c94..f98922f8f38 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -33,7 +33,7 @@ "The object type is not specified." => "No s'ha especificat el tipus d'objecte.", "Error" => "Error", "The app name is not specified." => "No s'ha especificat el nom de l'aplicació.", -"The required file {file} is not installed!" => "El figtxer requerit {file} no està instal·lat!", +"The required file {file} is not installed!" => "El fitxer requerit {file} no està instal·lat!", "Error while sharing" => "Error en compartir", "Error while unsharing" => "Error en deixar de compartir", "Error while changing permissions" => "Error en canviar els permisos", diff --git a/core/l10n/da.php b/core/l10n/da.php index 2798b22830f..a792e1d9bae 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -1,15 +1,27 @@ "Bruger %s delte en fil med dig", +"User %s shared a folder with you" => "Bruger %s delte en mappe med dig", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Bruger %s delte filen \"%s\" med dig. Den kan hentes her: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s", +"Category type not provided." => "Kategori typen ikke er fastsat.", "No category to add?" => "Ingen kategori at tilføje?", "This category already exists: " => "Denne kategori eksisterer allerede: ", +"Object type not provided." => "Object type ikke er fastsat.", +"%s ID not provided." => "%s ID ikke oplyst.", +"Error adding %s to favorites." => "Fejl ved tilføjelse af %s til favoritter.", "No categories selected for deletion." => "Ingen kategorier valgt", +"Error removing %s from favorites." => "Fejl ved fjernelse af %s fra favoritter.", "Settings" => "Indstillinger", "seconds ago" => "sekunder siden", "1 minute ago" => "1 minut siden", "{minutes} minutes ago" => "{minutes} minutter siden", +"1 hour ago" => "1 time siden", +"{hours} hours ago" => "{hours} timer siden", "today" => "i dag", "yesterday" => "i går", "{days} days ago" => "{days} dage siden", "last month" => "sidste måned", +"{months} months ago" => "{months} måneder siden", "months ago" => "måneder siden", "last year" => "sidste år", "years ago" => "år siden", @@ -18,7 +30,10 @@ "No" => "Nej", "Yes" => "Ja", "Ok" => "OK", +"The object type is not specified." => "Objekttypen er ikke angivet.", "Error" => "Fejl", +"The app name is not specified." => "Den app navn er ikke angivet.", +"The required file {file} is not installed!" => "Den krævede fil {file} er ikke installeret!", "Error while sharing" => "Fejl under deling", "Error while unsharing" => "Fejl under annullering af deling", "Error while changing permissions" => "Fejl under justering af rettigheder", @@ -28,6 +43,8 @@ "Share with link" => "Del med link", "Password protect" => "Beskyt med adgangskode", "Password" => "Kodeord", +"Email link to person" => "E-mail link til person", +"Send" => "Send", "Set expiration date" => "Vælg udløbsdato", "Expiration date" => "Udløbsdato", "Share via email:" => "Del via email:", @@ -44,9 +61,13 @@ "Password protected" => "Beskyttet med adgangskode", "Error unsetting expiration date" => "Fejl ved fjernelse af udløbsdato", "Error setting expiration date" => "Fejl under sætning af udløbsdato", +"Sending ..." => "Sender ...", +"Email sent" => "E-mail afsendt", "ownCloud password reset" => "Nulstil ownCloud kodeord", "Use the following link to reset your password: {link}" => "Anvend følgende link til at nulstille din adgangskode: {link}", "You will receive a link to reset your password via Email." => "Du vil modtage et link til at nulstille dit kodeord via email.", +"Reset email send." => "Reset-mail afsendt.", +"Request failed!" => "Anmodningen mislykkedes!", "Username" => "Brugernavn", "Request reset" => "Anmod om nulstilling", "Your password was reset" => "Dit kodeord blev nulstillet", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index a83382904d3..64b108ca1dd 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -1,4 +1,8 @@ "用户 %s 与您共享了一个文件", +"User %s shared a folder with you" => "用户 %s 与您共享了一个文件夹", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件\"%s\"。文件下载地址:%s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地址:%s", "Category type not provided." => "未提供分类类型。", "No category to add?" => "没有可添加分类?", "This category already exists: " => "此分类已存在: ", @@ -39,6 +43,7 @@ "Share with link" => "共享链接", "Password protect" => "密码保护", "Password" => "密码", +"Send" => "发送", "Set expiration date" => "设置过期日期", "Expiration date" => "过期日期", "Share via email:" => "通过Email共享", @@ -55,6 +60,8 @@ "Password protected" => "密码已受保护", "Error unsetting expiration date" => "取消设置过期日期时出错", "Error setting expiration date" => "设置过期日期时出错", +"Sending ..." => "正在发送...", +"Email sent" => "邮件已发送", "ownCloud password reset" => "重置 ownCloud 密码", "Use the following link to reset your password: {link}" => "使用以下链接重置您的密码:{link}", "You will receive a link to reset your password via Email." => "您将会收到包含可以重置密码链接的邮件。", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 4671747f750..0785bd05e65 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 19:06+0000\n" +"Last-Translator: aboodilankaboot \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" @@ -48,11 +49,11 @@ msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "" +msgstr "ألا توجد فئة للإضافة؟" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "" +msgstr "هذه الفئة موجودة مسبقاً" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -73,7 +74,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "" +msgstr "لم يتم اختيار فئة للحذف" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -86,15 +87,15 @@ msgstr "تعديلات" #: js/js.js:704 msgid "seconds ago" -msgstr "" +msgstr "منذ ثواني" #: js/js.js:705 msgid "1 minute ago" -msgstr "" +msgstr "منذ دقيقة" #: js/js.js:706 msgid "{minutes} minutes ago" -msgstr "" +msgstr "{minutes} منذ دقائق" #: js/js.js:707 msgid "1 hour ago" @@ -106,7 +107,7 @@ msgstr "" #: js/js.js:709 msgid "today" -msgstr "" +msgstr "اليوم" #: js/js.js:710 msgid "yesterday" @@ -138,7 +139,7 @@ msgstr "" #: js/oc-dialogs.js:126 msgid "Choose" -msgstr "" +msgstr "اختيار" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" @@ -146,15 +147,15 @@ msgstr "الغاء" #: js/oc-dialogs.js:162 msgid "No" -msgstr "" +msgstr "لا" #: js/oc-dialogs.js:163 msgid "Yes" -msgstr "" +msgstr "نعم" #: js/oc-dialogs.js:180 msgid "Ok" -msgstr "" +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 @@ -162,10 +163,10 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" -msgstr "" +msgstr "خطأ" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -175,39 +176,39 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "" +msgstr "حصل خطأ عند عملية المشاركة" #: js/share.js:135 msgid "Error while unsharing" -msgstr "" +msgstr "حصل خطأ عند عملية إزالة المشاركة" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "شورك معك ومع المجموعة {group} من قبل {owner}" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "" +msgstr "شورك معك من قبل {owner}" #: js/share.js:158 msgid "Share with" -msgstr "" +msgstr "شارك مع" #: js/share.js:163 msgid "Share with link" -msgstr "" +msgstr "شارك مع رابط" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" -msgstr "" +msgstr "حماية كلمة السر" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "كلمة السر" @@ -222,27 +223,27 @@ msgstr "" #: js/share.js:177 msgid "Set expiration date" -msgstr "" +msgstr "تعيين تاريخ إنتهاء الصلاحية" #: js/share.js:178 msgid "Expiration date" -msgstr "" +msgstr "تاريخ إنتهاء الصلاحية" #: js/share.js:210 msgid "Share via email:" -msgstr "" +msgstr "مشاركة عبر البريد الإلكتروني:" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "لم يتم العثور على أي شخص" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "لا يسمح بعملية إعادة المشاركة" #: js/share.js:275 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "شورك في {item} مع {user}" #: js/share.js:296 msgid "Unshare" @@ -250,51 +251,51 @@ msgstr "إلغاء مشاركة" #: js/share.js:308 msgid "can edit" -msgstr "" +msgstr "التحرير مسموح" #: js/share.js:310 msgid "access control" -msgstr "" +msgstr "ضبط الوصول" #: js/share.js:313 msgid "create" -msgstr "" +msgstr "إنشاء" #: js/share.js:316 msgid "update" -msgstr "" +msgstr "تحديث" #: js/share.js:319 msgid "delete" -msgstr "" +msgstr "حذف" #: js/share.js:322 msgid "share" -msgstr "" +msgstr "مشاركة" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" -msgstr "" +msgstr "محمي بكلمة السر" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" -msgstr "" +msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" #: lostpassword/controller.php:47 msgid "ownCloud password reset" -msgstr "" +msgstr "إعادة تعيين كلمة سر ownCloud" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -306,14 +307,14 @@ msgstr "سوف نرسل لك بريد يحتوي على وصلة لتجديد ك #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "إعادة إرسال البريد الإلكتروني." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "فشل الطلب" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "إسم المستخدم" @@ -359,7 +360,7 @@ msgstr "المساعدة" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "التوصّل محظور" #: templates/404.php:12 msgid "Cloud not found" @@ -375,13 +376,13 @@ msgstr "أدخل" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "تحذير أمان" #: templates/installation.php:24 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension." #: templates/installation.php:26 msgid "" @@ -402,44 +403,44 @@ msgstr "" msgid "Create an admin account" msgstr "أضف
مستخدم رئيسي " -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "خيارات متقدمة" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "مجلد المعلومات" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "أسس قاعدة البيانات" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "سيتم استخدمه" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" -msgstr "" +msgstr "مساحة جدول قاعدة البيانات" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "انهاء التعديلات" @@ -527,29 +528,29 @@ msgstr "خدمات الوب تحت تصرفك" msgid "Log out" msgstr "الخروج" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "تم رفض تسجيل الدخول التلقائي!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "قد يكون حسابك في خطر إن لم تقم بإعادة تعيين كلمة السر حديثاً" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "الرجاء إعادة تعيين كلمة السر لتأمين حسابك." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "هل نسيت كلمة السر؟" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "تذكر" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "أدخل" @@ -567,14 +568,14 @@ msgstr "التالي" #: templates/verify.php:5 msgid "Security Warning!" -msgstr "" +msgstr "تحذير أمان!" #: templates/verify.php:6 msgid "" "Please verify your password.
For security reasons you may be " "occasionally asked to enter your password again." -msgstr "" +msgstr "الرجاء التحقق من كلمة السر.
من الممكن أحياناً أن نطلب منك إعادة إدخال كلمة السر مرة أخرى." #: templates/verify.php:16 msgid "Verify" -msgstr "" +msgstr "تحقيق" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index fc9b90e3d69..6a9cdf2b15b 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"PO-Revision-Date: 2012-12-23 19:00+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" @@ -17,43 +17,43 @@ 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" -#: app.php:285 +#: app.php:287 msgid "Help" msgstr "المساعدة" -#: app.php:292 +#: app.php:294 msgid "Personal" msgstr "شخصي" -#: app.php:297 +#: app.php:299 msgid "Settings" msgstr "تعديلات" -#: app.php:302 +#: app.php:304 msgid "Users" msgstr "المستخدمين" -#: app.php:309 +#: app.php:311 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:313 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" @@ -83,11 +83,11 @@ msgstr "" #: template.php:103 msgid "seconds ago" -msgstr "" +msgstr "منذ ثواني" #: template.php:104 msgid "1 minute ago" -msgstr "" +msgstr "منذ دقيقة" #: template.php:105 #, php-format @@ -105,7 +105,7 @@ msgstr "" #: template.php:108 msgid "today" -msgstr "" +msgstr "اليوم" #: template.php:109 msgid "yesterday" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 0681094b946..e3ac2066d0d 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -4,14 +4,15 @@ # # Translators: # , 2012. +# , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 19:51+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"PO-Revision-Date: 2012-12-23 18:36+0000\n" +"Last-Translator: aboodilankaboot \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" @@ -21,27 +22,27 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "" +msgstr "فشل تحميل القائمة من الآب ستور" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "المجموعة موجودة مسبقاً" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "فشل إضافة المجموعة" #: ajax/enableapp.php:12 msgid "Could not enable app. " -msgstr "" +msgstr "فشل عملية تفعيل التطبيق" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "تم حفظ البريد الإلكتروني" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "البريد الإلكتروني غير صالح" #: ajax/openid.php:13 msgid "OpenID Changed" @@ -53,7 +54,7 @@ msgstr "طلبك غير مفهوم" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "فشل إزالة المجموعة" #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" @@ -61,7 +62,7 @@ msgstr "لم يتم التأكد من الشخصية بنجاح" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "" +msgstr "فشل إزالة المستخدم" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -69,21 +70,21 @@ msgstr "تم تغيير اللغة" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "لا يستطيع المدير إزالة حسابه من مجموعة المديرين" #: ajax/togglegroups.php:28 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "فشل إضافة المستخدم الى المجموعة %s" #: ajax/togglegroups.php:34 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "فشل إزالة المستخدم من المجموعة %s" #: js/apps.js:28 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "إيقاف" #: js/apps.js:28 js/apps.js:55 msgid "Enable" @@ -99,11 +100,11 @@ msgstr "__language_name__" #: templates/apps.php:10 msgid "Add your App" -msgstr "" +msgstr "أضف تطبيقاتك" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "المزيد من التطبيقات" #: templates/apps.php:27 msgid "Select an App" @@ -111,40 +112,40 @@ msgstr "إختر تطبيقاً" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "راجع صفحة التطبيق على apps.owncloud.com" #: templates/apps.php:32 msgid "-licensed by " -msgstr "" +msgstr "-ترخيص من قبل " #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "كتاب توثيق المستخدم" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "كتاب توثيق المدير" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "توثيق متوفر على الشبكة" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "منتدى" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "تعقب علة" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "دعم تجاري" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "تم إستهلاك %s من المتوفر %s" #: templates/personal.php:12 msgid "Clients" @@ -152,15 +153,15 @@ msgstr "الزبائن" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "تحميل عملاء سطح المكتب" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "تحميل عميل آندرويد" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "تحميل عميل آي أو أس" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -168,7 +169,7 @@ msgstr "كلمات السر" #: templates/personal.php:22 msgid "Your password was changed" -msgstr "" +msgstr "لقد تم تغيير كلمة السر" #: templates/personal.php:23 msgid "Unable to change your password" @@ -212,15 +213,15 @@ msgstr "ساعد في الترجمه" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "إصدار" #: templates/personal.php:65 msgid "" @@ -230,7 +231,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "طوّر من قبل ownCloud مجتمع, الـ النص المصدري مرخص بموجب رخصة أفيرو العمومية." #: templates/users.php:21 templates/users.php:76 msgid "Name" @@ -246,7 +247,7 @@ msgstr "انشئ" #: templates/users.php:35 msgid "Default Quota" -msgstr "" +msgstr "الحصة النسبية الإفتراضية" #: templates/users.php:55 templates/users.php:138 msgid "Other" @@ -254,7 +255,7 @@ msgstr "شيء آخر" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "مدير المجموعة" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 0ce863841d7..9fd20a8ef12 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 09:48+0000\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 14:22+0000\n" "Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "No s'ha especificat el tipus d'objecte." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Error" @@ -174,9 +174,9 @@ msgstr "No s'ha especificat el nom de l'aplicació." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "El figtxer requerit {file} no està instal·lat!" +msgstr "El fitxer requerit {file} no està instal·lat!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Error en compartir" @@ -204,11 +204,11 @@ msgstr "Comparteix amb" msgid "Share with link" msgstr "Comparteix amb enllaç" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protegir amb contrasenya" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Contrasenya" @@ -273,23 +273,23 @@ msgstr "elimina" msgid "share" msgstr "comparteix" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data d'expiració" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Error en establir la data d'expiració" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" @@ -313,8 +313,8 @@ msgstr "S'ha enviat el correu reinicialització" msgid "Request failed!" msgstr "El requeriment ha fallat!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nom d'usuari" @@ -403,44 +403,44 @@ msgstr "La carpeta de dades i els fitxers provablement són accessibles des d'in msgid "Create an admin account" msgstr "Crea un compte d'administrador" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Carpeta de dades" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configura la base de dades" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "s'usarà" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Acaba la configuració" @@ -528,29 +528,29 @@ msgstr "controleu els vostres serveis web" msgid "Log out" msgstr "Surt" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "L'ha rebutjat l'acceditació automàtica!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se no heu canviat la contrasenya recentment el vostre compte pot estar compromès!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "recorda'm" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Inici de sessió" diff --git a/l10n/da/core.po b/l10n/da/core.po index 01fdc7642c0..6fa46250122 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2011, 2012. # Morten Juhl-Johansen Zölde-Fejér , 2011-2012. # Ole Holm Frandsen , 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 21:57+0000\n" +"Last-Translator: cronner \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" @@ -27,30 +28,30 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Bruger %s delte en fil med dig" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Bruger %s delte en mappe med dig" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Bruger %s delte filen \"%s\" med dig. Den kan hentes her: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Kategori typen ikke er fastsat." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -64,18 +65,18 @@ msgstr "Denne kategori eksisterer allerede: " #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Object type ikke er fastsat." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID ikke oplyst." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Fejl ved tilføjelse af %s til favoritter." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -84,7 +85,7 @@ msgstr "Ingen kategorier valgt" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Fejl ved fjernelse af %s fra favoritter." #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" @@ -104,11 +105,11 @@ msgstr "{minutes} minutter siden" #: js/js.js:707 msgid "1 hour ago" -msgstr "" +msgstr "1 time siden" #: js/js.js:708 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} timer siden" #: js/js.js:709 msgid "today" @@ -128,7 +129,7 @@ msgstr "sidste måned" #: js/js.js:713 msgid "{months} months ago" -msgstr "" +msgstr "{months} måneder siden" #: js/js.js:714 msgid "months ago" @@ -165,23 +166,23 @@ msgstr "OK" #: 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 "" +msgstr "Objekttypen er ikke angivet." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fejl" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Den app navn er ikke angivet." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "Den krævede fil {file} er ikke installeret!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Fejl under deling" @@ -209,22 +210,22 @@ msgstr "Del med" msgid "Share with link" msgstr "Del med link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Beskyt med adgangskode" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Kodeord" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "E-mail link til person" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Send" #: js/share.js:177 msgid "Set expiration date" @@ -278,25 +279,25 @@ msgstr "slet" msgid "share" msgstr "del" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Sender ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "E-mail afsendt" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -312,14 +313,14 @@ msgstr "Du vil modtage et link til at nulstille dit kodeord via email." #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "Reset-mail afsendt." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "Anmodningen mislykkedes!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Brugernavn" @@ -408,44 +409,44 @@ msgstr "Din data mappe og dine filer er muligvis tilgængelige fra internettet. msgid "Create an admin account" msgstr "Opret en administratorkonto" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avanceret" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "vil blive brugt" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Navn på database" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Afslut opsætning" @@ -533,29 +534,29 @@ msgstr "Webtjenester under din kontrol" msgid "Log out" msgstr "Log ud" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatisk login afvist!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Hvis du ikke har ændret din adgangskode for nylig, har nogen muligvis tiltvunget sig adgang til din konto!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Skift adgangskode for at sikre din konto igen." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "husk" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Log ind" diff --git a/l10n/da/files.po b/l10n/da/files.po index 2b9b44a9169..185ea7031e7 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Morten Juhl-Johansen Zölde-Fejér , 2011-2012. # Ole Holm Frandsen , 2012. # , 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 21:45+0000\n" +"Last-Translator: cronner \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" @@ -31,7 +32,7 @@ msgstr "Der er ingen fejl, filen blev uploadet med success" #: ajax/upload.php:21 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" #: ajax/upload.php:23 msgid "" @@ -59,11 +60,11 @@ msgstr "Fejl ved skrivning til disk." msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Fjern deling" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Slet" @@ -71,39 +72,39 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "erstat" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "erstattede {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "fortryd" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "ikke delte {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "slettede {files}" @@ -111,82 +112,82 @@ msgstr "slettede {files}" msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "genererer ZIP-fil, det kan tage lidt tid." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Luk" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Afventer" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} filer uploades" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "" +msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} filer skannet" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "fejl under scanning" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Navn" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Størrelse" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Ændret" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 fil" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} filer" @@ -236,7 +237,7 @@ msgstr "Mappe" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Fra link" #: templates/index.php:35 msgid "Upload" @@ -246,28 +247,28 @@ msgstr "Upload" msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Download" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Upload for stor" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 804a2489d08..d21b07f05e6 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Morten Juhl-Johansen Zölde-Fejér , 2012. # Ole Holm Frandsen , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 21:47+0000\n" +"Last-Translator: cronner \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" @@ -47,14 +48,14 @@ msgstr "Fejl ved konfiguration af Google Drive plads" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +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:435 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 "" +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." #: templates/settings.php:3 msgid "External Storage" @@ -101,7 +102,7 @@ msgid "Users" msgstr "Brugere" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Slet" @@ -113,10 +114,10 @@ msgstr "Aktiver ekstern opbevaring for brugere" msgid "Allow users to mount their own external storage" msgstr "Tillad brugere at montere deres egne eksterne opbevaring" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL-rodcertifikater" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Importer rodcertifikat" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 76cd064267c..187d797c533 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Morten Juhl-Johansen Zölde-Fejér , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"PO-Revision-Date: 2012-12-23 21:58+0000\n" +"Last-Translator: cronner \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" @@ -19,43 +20,43 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:287 msgid "Help" msgstr "Hjælp" -#: app.php:292 +#: app.php:294 msgid "Personal" msgstr "Personlig" -#: app.php:297 +#: app.php:299 msgid "Settings" msgstr "Indstillinger" -#: app.php:302 +#: app.php:304 msgid "Users" msgstr "Brugere" -#: app.php:309 +#: app.php:311 msgid "Apps" msgstr "Apps" -#: app.php:311 +#: app.php:313 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Tilbage til Filer" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." @@ -81,7 +82,7 @@ msgstr "SMS" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Billeder" #: template.php:103 msgid "seconds ago" @@ -98,12 +99,12 @@ msgstr "%d minutter siden" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "1 time siden" #: template.php:107 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d timer siden" #: template.php:108 msgid "today" @@ -125,7 +126,7 @@ msgstr "Sidste måned" #: template.php:112 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d måneder siden" #: template.php:113 msgid "last year" @@ -151,4 +152,4 @@ msgstr "Check for opdateringer er deaktiveret" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Kunne ikke finde kategorien \"%s\"" diff --git a/l10n/da/user_webdavauth.po b/l10n/da/user_webdavauth.po index 3ff9f07c589..73cb352861f 100644 --- a/l10n/da/user_webdavauth.po +++ b/l10n/da/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 22:14+0000\n" +"Last-Translator: cronner \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" @@ -19,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud vil sende brugeroplysningerne til denne webadresse er fortolker http 401 og http 403 som brugeroplysninger forkerte og alle andre koder som brugeroplysninger korrekte." diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index b6c5c862388..9d0afe72975 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 13:56+0000\n" +"Last-Translator: Magnus Höglund \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 +20,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 4b7fb0fec62..dd269ac2440 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 7a44cdd0641..d521a4ad6fc 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 8e65b3fa81d..791b21e4910 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 d9aed4d9c67..8c1397baf0e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 f790c23a1b9..bc5ba1ad9ea 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 d59a26bbdb8..0576b77aa21 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 7c919b714a9..dd29190b8da 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:11+0100\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 f8796fdcda4..5528f1026e9 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:11+0100\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 69bcd199616..c783b1c38bb 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 a09b859730d..835e8193715 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 118d37c13f9..2742708ecc6 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -4,6 +4,7 @@ # # Translators: # , 2012. +# Dianjin Wang <1132321739qq@gmail.com>, 2012. # Phoenix Nemo <>, 2012. # , 2012. # , 2011, 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 14:31+0000\n" +"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,26 +25,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "用户 %s 与您共享了一个文件" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "用户 %s 与您共享了一个文件夹" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "用户 %s 与您共享了文件\"%s\"。文件下载地址:%s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地址:%s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -165,8 +166,8 @@ msgid "The object type is not specified." msgstr "未指定对象类型。" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "错误" @@ -178,7 +179,7 @@ msgstr "未指定App名称。" msgid "The required file {file} is not installed!" msgstr "所需文件{file}未安装!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "共享时出错" @@ -206,11 +207,11 @@ msgstr "共享" msgid "Share with link" msgstr "共享链接" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "密码保护" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "密码" @@ -221,7 +222,7 @@ msgstr "" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "发送" #: js/share.js:177 msgid "Set expiration date" @@ -275,25 +276,25 @@ msgstr "删除" msgid "share" msgstr "共享" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "正在发送..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "邮件已发送" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -315,8 +316,8 @@ msgstr "重置邮件已发送。" msgid "Request failed!" msgstr "请求失败!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "用户名" @@ -405,44 +406,44 @@ msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的. msgid "Create an admin account" msgstr "创建管理员账号" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "高级" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "数据目录" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "将被使用" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "安装完成" @@ -530,29 +531,29 @@ msgstr "由您掌控的网络服务" msgid "Log out" msgstr "注销" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "自动登录被拒绝!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "如果您没有最近修改您的密码,您的帐户可能会受到影响!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "请修改您的密码,以保护您的账户安全。" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "记住" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "登录" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index fda4fc50739..674ecf16c69 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Dianjin Wang <1132321739qq@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 14:40+0000\n" +"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,14 +47,14 @@ msgstr "配置Google Drive存储时出错" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" #: lib/config.php:435 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 "" +msgstr "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。" #: templates/settings.php:3 msgid "External Storage" @@ -100,7 +101,7 @@ msgid "Users" msgstr "用户" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "删除" @@ -112,10 +113,10 @@ msgstr "启用用户外部存储" msgid "Allow users to mount their own external storage" msgstr "允许用户挂载自有外部存储" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL根证书" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "导入根证书" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 8a68e4eac0a..2e39772a758 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -4,6 +4,7 @@ # # Translators: # , 2012. +# Dianjin Wang <1132321739qq@gmail.com>, 2012. # Phoenix Nemo <>, 2012. # , 2012. # , 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"PO-Revision-Date: 2012-12-23 13:54+0000\n" +"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -122,27 +123,27 @@ msgstr "-核准: #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "用户文档" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "管理员文档" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "在线文档" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "论坛" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "问题跟踪器" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "商业支持" #: templates/personal.php:8 #, php-format @@ -155,15 +156,15 @@ msgstr "客户" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "下载桌面客户端" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "下载 Android 客户端" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "下载 iOS 客户端" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -215,15 +216,15 @@ msgstr "帮助翻译" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "用该地址来连接文件管理器中的 ownCloud" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "版本" #: templates/personal.php:65 msgid "" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index e8ca11af596..fc3ccc1393b 100644 --- a/l10n/zh_CN/user_webdavauth.po +++ b/l10n/zh_CN/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Dianjin Wang <1132321739qq@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 13:55+0000\n" +"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL:http://" #: templates/settings.php:6 msgid "" diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 3ae226f04fd..77e02dd77b1 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -5,5 +5,8 @@ "Users" => "المستخدمين", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Files" => "الملفات", -"Text" => "معلومات إضافية" +"Text" => "معلومات إضافية", +"seconds ago" => "منذ ثواني", +"1 minute ago" => "منذ دقيقة", +"today" => "اليوم" ); diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 7458b329782..a0ab1f17014 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -14,16 +14,21 @@ "Token expired. Please reload page." => "Adgang er udløbet. Genindlæs siden.", "Files" => "Filer", "Text" => "SMS", +"Images" => "Billeder", "seconds ago" => "sekunder siden", "1 minute ago" => "1 minut siden", "%d minutes ago" => "%d minutter siden", +"1 hour ago" => "1 time siden", +"%d hours ago" => "%d timer siden", "today" => "I dag", "yesterday" => "I går", "%d days ago" => "%d dage siden", "last month" => "Sidste måned", +"%d months ago" => "%d måneder siden", "last year" => "Sidste år", "years ago" => "år siden", "%s is available. Get more information" => "%s er tilgængelig. Få mere information", "up to date" => "opdateret", -"updates check is disabled" => "Check for opdateringer er deaktiveret" +"updates check is disabled" => "Check for opdateringer er deaktiveret", +"Could not find category \"%s\"" => "Kunne ikke finde kategorien \"%s\"" ); diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 9edbe1a4212..730db722111 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -1,14 +1,41 @@ "فشل تحميل القائمة من الآب ستور", +"Group already exists" => "المجموعة موجودة مسبقاً", +"Unable to add group" => "فشل إضافة المجموعة", +"Could not enable app. " => "فشل عملية تفعيل التطبيق", +"Email saved" => "تم حفظ البريد الإلكتروني", +"Invalid email" => "البريد الإلكتروني غير صالح", "OpenID Changed" => "تم تغيير ال OpenID", "Invalid request" => "طلبك غير مفهوم", +"Unable to delete group" => "فشل إزالة المجموعة", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", +"Unable to delete user" => "فشل إزالة المستخدم", "Language changed" => "تم تغيير اللغة", +"Admins can't remove themself from the admin group" => "لا يستطيع المدير إزالة حسابه من مجموعة المديرين", +"Unable to add user to group %s" => "فشل إضافة المستخدم الى المجموعة %s", +"Unable to remove user from group %s" => "فشل إزالة المستخدم من المجموعة %s", +"Disable" => "إيقاف", "Enable" => "تفعيل", "Saving..." => "حفظ", "__language_name__" => "__language_name__", +"Add your App" => "أضف تطبيقاتك", +"More Apps" => "المزيد من التطبيقات", "Select an App" => "إختر تطبيقاً", +"See application page at apps.owncloud.com" => "راجع صفحة التطبيق على apps.owncloud.com", +"-licensed by " => "-ترخيص من قبل ", +"User Documentation" => "كتاب توثيق المستخدم", +"Administrator Documentation" => "كتاب توثيق المدير", +"Online Documentation" => "توثيق متوفر على الشبكة", +"Forum" => "منتدى", +"Bugtracker" => "تعقب علة", +"Commercial Support" => "دعم تجاري", +"You have used %s of the available %s" => "تم إستهلاك %s من المتوفر %s", "Clients" => "الزبائن", +"Download Desktop Clients" => "تحميل عملاء سطح المكتب", +"Download Android Client" => "تحميل عميل آندرويد", +"Download iOS Client" => "تحميل عميل آي أو أس", "Password" => "كلمات السر", +"Your password was changed" => "لقد تم تغيير كلمة السر", "Unable to change your password" => "لم يتم تعديل كلمة السر بنجاح", "Current password" => "كلمات السر الحالية", "New password" => "كلمات سر جديدة", @@ -19,10 +46,16 @@ "Fill in an email address to enable password recovery" => "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور", "Language" => "اللغة", "Help translate" => "ساعد في الترجمه", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات", +"Version" => "إصدار", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "طوّر من قبل ownCloud مجتمع, الـ النص المصدري مرخص بموجب رخصة أفيرو العمومية.", "Name" => "الاسم", "Groups" => "مجموعات", "Create" => "انشئ", +"Default Quota" => "الحصة النسبية الإفتراضية", "Other" => "شيء آخر", +"Group Admin" => "مدير المجموعة", "Quota" => "حصه", "Delete" => "حذف" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index adc07e20675..99fb0b2279c 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -23,8 +23,17 @@ "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", "-licensed by " => "-核准: ", +"User Documentation" => "用户文档", +"Administrator Documentation" => "管理员文档", +"Online Documentation" => "在线文档", +"Forum" => "论坛", +"Bugtracker" => "问题跟踪器", +"Commercial Support" => "商业支持", "You have used %s of the available %s" => "你已使用 %s,有效空间 %s", "Clients" => "客户", +"Download Desktop Clients" => "下载桌面客户端", +"Download Android Client" => "下载 Android 客户端", +"Download iOS Client" => "下载 iOS 客户端", "Password" => "密码", "Your password was changed" => "密码已修改", "Unable to change your password" => "无法修改密码", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复功能", "Language" => "语言", "Help translate" => "帮助翻译", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "用该地址来连接文件管理器中的 ownCloud", +"Version" => "版本", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "由ownCloud社区开发, 源代码AGPL许可证下发布。", "Name" => "名称", "Groups" => "组", -- cgit v1.2.3 From 5d59ac07391841677e204958ea20be3fe05cd8ef Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 25 Dec 2012 00:11:11 +0100 Subject: [tx-robot] updated from transifex --- apps/user_ldap/l10n/fr.php | 2 + core/l10n/fr.php | 7 ++++ l10n/fr/core.po | 79 +++++++++++++++++++------------------ l10n/fr/settings.po | 31 ++++++++------- l10n/fr/user_ldap.po | 11 +++--- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/fr.php | 12 ++++++ 16 files changed, 93 insertions(+), 69 deletions(-) (limited to 'apps') diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index a0b1c6b7d9c..9750d1352a8 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Avertissement: Les applications user_ldap et user_webdavauth sont incompatibles. Des disfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il désactive l'une d'elles.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Avertissement: Le module PHP LDAP requis n'est pas installé, l'application ne marchera pas. Contactez votre administrateur système pour qu'il l'installe.", "Host" => "Hôte", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://", "Base DN" => "DN Racine", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index f02a7b0087c..3d174b327a2 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -1,4 +1,7 @@ "L'utilisateur %s a partagé un fichier avec vous", +"User %s shared a folder with you" => "L'utilsateur %s a partagé un dossier avec vous", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le télécharger ici : %s", "Category type not provided." => "Type de catégorie non spécifié.", "No category to add?" => "Pas de catégorie à ajouter ?", "This category already exists: " => "Cette catégorie existe déjà : ", @@ -39,6 +42,8 @@ "Share with link" => "Partager via lien", "Password protect" => "Protéger par un mot de passe", "Password" => "Mot de passe", +"Email link to person" => "Envoyez le lien par email", +"Send" => "Envoyer", "Set expiration date" => "Spécifier la date d'expiration", "Expiration date" => "Date d'expiration", "Share via email:" => "Partager via e-mail :", @@ -55,6 +60,8 @@ "Password protected" => "Protégé par un mot de passe", "Error unsetting expiration date" => "Un erreur est survenue pendant la suppression de la date d'expiration", "Error setting expiration date" => "Erreur lors de la spécification de la date d'expiration", +"Sending ..." => "En cours d'envoi ...", +"Email sent" => "Email envoyé", "ownCloud password reset" => "Réinitialisation de votre mot de passe Owncloud", "Use the following link to reset your password: {link}" => "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}", "You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe.", diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 3630d49e784..58f5d6bd5e7 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -7,6 +7,7 @@ # , 2012. # , 2012. # Guillaume Paumier , 2012. +# , 2012. # Nahir Mohamed , 2012. # , 2012. # , 2011. @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"PO-Revision-Date: 2012-12-24 14:22+0000\n" +"Last-Translator: mishka \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" @@ -28,19 +29,19 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "L'utilisateur %s a partagé un fichier avec vous" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "L'utilsateur %s a partagé un dossier avec vous" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le télécharger ici : %s" #: ajax/share.php:90 #, php-format @@ -169,8 +170,8 @@ msgid "The object type is not specified." msgstr "Le type d'objet n'est pas spécifié." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Erreur" @@ -182,7 +183,7 @@ msgstr "Le nom de l'application n'est pas spécifié." msgid "The required file {file} is not installed!" msgstr "Le fichier requis {file} n'est pas installé !" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -210,22 +211,22 @@ msgstr "Partager avec" msgid "Share with link" msgstr "Partager via lien" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protéger par un mot de passe" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Mot de passe" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Envoyez le lien par email" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Envoyer" #: js/share.js:177 msgid "Set expiration date" @@ -279,25 +280,25 @@ msgstr "supprimer" msgid "share" msgstr "partager" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Un erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "En cours d'envoi ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Email envoyé" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -319,8 +320,8 @@ msgstr "Mail de réinitialisation envoyé." msgid "Request failed!" msgstr "La requête a échoué !" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nom d'utilisateur" @@ -409,44 +410,44 @@ msgstr "Votre dossier data et vos fichiers sont probablement accessibles depuis msgid "Create an admin account" msgstr "Créer un compte administrateur" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avancé" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Répertoire des données" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurer la base de données" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "sera utilisé" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Terminer l'installation" @@ -534,29 +535,29 @@ msgstr "services web sous votre contrôle" msgid "Log out" msgstr "Se déconnecter" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Connexion automatique rejetée !" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Si vous n'avez pas changé votre mot de passe récemment, votre compte risque d'être compromis !" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Connexion" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index ffafd0a3264..3d95e66bbea 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,6 +11,7 @@ # , 2012. # Jan-Christoph Borchardt , 2011. # , 2012. +# , 2012. # Nahir Mohamed , 2012. # , 2012. # Robert Di Rosa <>, 2012. @@ -20,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"PO-Revision-Date: 2012-12-24 14:10+0000\n" +"Last-Translator: mishka \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" @@ -130,27 +131,27 @@ msgstr "Distribué sous licence , par , 2012. # , 2012. +# , 2012. # Romain DEP. , 2012. # , 2012. # , 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"PO-Revision-Date: 2012-12-24 14:18+0000\n" +"Last-Translator: mishka \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" @@ -27,13 +28,13 @@ 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 "" +msgstr "Avertissement: Les applications user_ldap et user_webdavauth sont incompatibles. Des disfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il désactive l'une d'elles." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Avertissement: Le module PHP LDAP requis n'est pas installé, l'application ne marchera pas. Contactez votre administrateur système pour qu'il l'installe." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index dd269ac2440..ff3c8bfbf6b 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 d521a4ad6fc..0818212bd19 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 791b21e4910..fb7b97cbf90 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 8c1397baf0e..659e1e0bb54 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 bc5ba1ad9ea..1984b3a0014 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 0576b77aa21..4b79897af20 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 dd29190b8da..f7d273a1391 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 5528f1026e9..081fc8b3630 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 c783b1c38bb..1915a2b814d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 835e8193715..8eab468ae32 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index b504d261f66..b4b3d46e05f 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -23,8 +23,17 @@ "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", "-licensed by " => "Distribué sous licence , par ", +"User Documentation" => "Documentation utilisateur", +"Administrator Documentation" => "Documentation administrateur", +"Online Documentation" => "Documentation en ligne", +"Forum" => "Forum", +"Bugtracker" => "Suivi de bugs", +"Commercial Support" => "Support commercial", "You have used %s of the available %s" => "Vous avez utilisé %s des %s disponibles", "Clients" => "Clients", +"Download Desktop Clients" => "Télécharger des clients de bureau", +"Download Android Client" => "Télécharger le client Android", +"Download iOS Client" => "Télécharger le client iOS", "Password" => "Mot de passe", "Your password was changed" => "Votre mot de passe a été changé", "Unable to change your password" => "Impossible de changer votre mot de passe", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe", "Language" => "Langue", "Help translate" => "Aidez à traduire", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers", +"Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Développé par la communauté ownCloud, le code source est publié sous license AGPL.", "Name" => "Nom", "Groups" => "Groupes", -- cgit v1.2.3 From b7257b25249fbe562a64bc0675b50b097fe68907 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 26 Dec 2012 00:12:10 +0100 Subject: [tx-robot] updated from transifex --- apps/files_external/l10n/sv.php | 2 + apps/user_ldap/l10n/da.php | 14 +++++++ apps/user_webdavauth/l10n/sv.php | 3 +- core/l10n/sv.php | 8 ++++ l10n/da/settings.po | 35 ++++++++-------- l10n/da/user_ldap.po | 36 +++++++++-------- l10n/sv/core.po | 80 ++++++++++++++++++------------------- l10n/sv/files_external.po | 16 ++++---- l10n/sv/settings.po | 30 +++++++------- l10n/sv/user_webdavauth.po | 6 +-- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/da.php | 14 +++++++ settings/l10n/sv.php | 12 ++++++ 22 files changed, 165 insertions(+), 111 deletions(-) (limited to 'apps') diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index 0a5e1c66d99..0d42a1f4682 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "Fyll i alla obligatoriska fält", "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", +"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.", "External Storage" => "Extern lagring", "Mount point" => "Monteringspunkt", "Backend" => "Källa", diff --git a/apps/user_ldap/l10n/da.php b/apps/user_ldap/l10n/da.php index cce3de085d2..b11b56f9b65 100644 --- a/apps/user_ldap/l10n/da.php +++ b/apps/user_ldap/l10n/da.php @@ -2,10 +2,24 @@ "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://", "Base DN" => "Base DN", +"You can specify Base DN for users and groups in the Advanced tab" => "You can specify Base DN for users and groups in the Advanced tab", "User DN" => "Bruger DN", "Password" => "Kodeord", +"For anonymous access, leave DN and Password empty." => "For anonym adgang, skal du lade DN og Adgangskode tomme.", +"User Login Filter" => "Bruger Login Filter", +"User List Filter" => "Brugerliste Filter", +"Defines the filter to apply, when retrieving users." => "Definere filteret der bruges ved indlæsning af brugere.", +"Group Filter" => "Gruppe Filter", +"Defines the filter to apply, when retrieving groups." => "Definere filteret der bruges når der indlæses grupper.", "Port" => "Port", +"Base User Tree" => "Base Bruger Træ", +"Base Group Tree" => "Base Group Tree", +"Group-Member association" => "Group-Member association", "Use TLS" => "Brug TLS", +"Do not use it for SSL connections, it will fail." => "Brug ikke til SSL forbindelser, da den vil fejle.", +"Turn off SSL certificate validation." => "Deaktiver SSL certifikat validering", "Not recommended, use for testing only." => "Anbefales ikke, brug kun for at teste.", +"User Display Name Field" => "User Display Name Field", +"in bytes" => "i bytes", "Help" => "Hjælp" ); diff --git a/apps/user_webdavauth/l10n/sv.php b/apps/user_webdavauth/l10n/sv.php index 245a5101341..b7a7e4ea2d9 100644 --- a/apps/user_webdavauth/l10n/sv.php +++ b/apps/user_webdavauth/l10n/sv.php @@ -1,3 +1,4 @@ "URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud kommer att skicka inloggningsuppgifterna till denna URL och tolkar http 401 och http 403 som fel och alla andra koder som korrekt." ); diff --git a/core/l10n/sv.php b/core/l10n/sv.php index b06ccb199c6..a7698fb30ce 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -1,4 +1,8 @@ "Användare %s delade en fil med dig", +"User %s shared a folder with you" => "Användare %s delade en mapp med dig", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Användare %s delade filen \"%s\" med dig. Den finns att ladda ner här: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Användare %s delade mappen \"%s\" med dig. Den finns att ladda ner här: %s", "Category type not provided." => "Kategorityp inte angiven.", "No category to add?" => "Ingen kategori att lägga till?", "This category already exists: " => "Denna kategori finns redan:", @@ -39,6 +43,8 @@ "Share with link" => "Delad med länk", "Password protect" => "Lösenordsskydda", "Password" => "Lösenord", +"Email link to person" => "E-posta länk till person", +"Send" => "Skicka", "Set expiration date" => "Sätt utgångsdatum", "Expiration date" => "Utgångsdatum", "Share via email:" => "Dela via e-post:", @@ -55,6 +61,8 @@ "Password protected" => "Lösenordsskyddad", "Error unsetting expiration date" => "Fel vid borttagning av utgångsdatum", "Error setting expiration date" => "Fel vid sättning av utgångsdatum", +"Sending ..." => "Skickar ...", +"Email sent" => "E-post skickat", "ownCloud password reset" => "ownCloud lösenordsåterställning", "Use the following link to reset your password: {link}" => "Använd följande länk för att återställa lösenordet: {link}", "You will receive a link to reset your password via Email." => "Du får en länk att återställa ditt lösenord via e-post.", diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 10983e3830e..95a859329a8 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. # , 2011. # Morten Juhl-Johansen Zölde-Fejér , 2011-2012. @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-26 00:11+0100\n" +"PO-Revision-Date: 2012-12-25 13:45+0000\n" +"Last-Translator: cronner \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" @@ -76,7 +77,7 @@ msgstr "Sprog ændret" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Administratorer kan ikke fjerne dem selv fra admin gruppen" #: ajax/togglegroups.php:28 #, php-format @@ -126,32 +127,32 @@ msgstr "-licenseret af %s of the available %s" -msgstr "" +msgstr "Du har brugt %s af den tilgængelige %s" #: templates/personal.php:12 msgid "Clients" @@ -159,15 +160,15 @@ msgstr "Klienter" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Hent Desktop Klienter" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Hent Android Klient" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Hent iOS Klient" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -219,15 +220,15 @@ msgstr "Hjælp med oversættelsen" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Version" #: templates/personal.php:65 msgid "" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 00ec233a6eb..0aab1f40519 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -3,6 +3,8 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. +# , 2012. # Frederik Lassen , 2012. # Morten Juhl-Johansen Zölde-Fejér , 2012. # , 2012. @@ -10,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-26 00:10+0100\n" +"PO-Revision-Date: 2012-12-25 19:52+0000\n" +"Last-Translator: Daraiko \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" @@ -48,7 +50,7 @@ msgstr "Base DN" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "You can specify Base DN for users and groups in the Advanced tab" #: templates/settings.php:17 msgid "User DN" @@ -67,11 +69,11 @@ msgstr "Kodeord" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "For anonym adgang, skal du lade DN og Adgangskode tomme." #: templates/settings.php:19 msgid "User Login Filter" -msgstr "" +msgstr "Bruger Login Filter" #: templates/settings.php:19 #, php-format @@ -87,11 +89,11 @@ msgstr "" #: templates/settings.php:20 msgid "User List Filter" -msgstr "" +msgstr "Brugerliste Filter" #: templates/settings.php:20 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "Definere filteret der bruges ved indlæsning af brugere." #: templates/settings.php:20 msgid "without any placeholder, e.g. \"objectClass=person\"." @@ -99,11 +101,11 @@ msgstr "" #: templates/settings.php:21 msgid "Group Filter" -msgstr "" +msgstr "Gruppe Filter" #: templates/settings.php:21 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "Definere filteret der bruges når der indlæses grupper." #: templates/settings.php:21 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." @@ -115,15 +117,15 @@ msgstr "Port" #: templates/settings.php:25 msgid "Base User Tree" -msgstr "" +msgstr "Base Bruger Træ" #: templates/settings.php:26 msgid "Base Group Tree" -msgstr "" +msgstr "Base Group Tree" #: templates/settings.php:27 msgid "Group-Member association" -msgstr "" +msgstr "Group-Member association" #: templates/settings.php:28 msgid "Use TLS" @@ -131,7 +133,7 @@ msgstr "Brug TLS" #: templates/settings.php:28 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "Brug ikke til SSL forbindelser, da den vil fejle." #: templates/settings.php:29 msgid "Case insensitve LDAP server (Windows)" @@ -139,7 +141,7 @@ msgstr "" #: templates/settings.php:30 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Deaktiver SSL certifikat validering" #: templates/settings.php:30 msgid "" @@ -153,7 +155,7 @@ msgstr "Anbefales ikke, brug kun for at teste." #: templates/settings.php:31 msgid "User Display Name Field" -msgstr "" +msgstr "User Display Name Field" #: templates/settings.php:31 msgid "The LDAP attribute to use to generate the user`s ownCloud name." @@ -169,7 +171,7 @@ msgstr "" #: templates/settings.php:34 msgid "in bytes" -msgstr "" +msgstr "i bytes" #: templates/settings.php:36 msgid "in seconds. A change empties the cache." diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 31c51f8afe6..ec20f3de3d6 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-26 00:11+0100\n" +"PO-Revision-Date: 2012-12-25 08:10+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -26,26 +26,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Användare %s delade en fil med dig" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Användare %s delade en mapp med dig" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Användare %s delade filen \"%s\" med dig. Den finns att ladda ner här: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Användare %s delade mappen \"%s\" med dig. Den finns att ladda ner här: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -167,8 +167,8 @@ msgid "The object type is not specified." msgstr "Objekttypen är inte specificerad." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fel" @@ -180,7 +180,7 @@ msgstr " Namnet på appen är inte specificerad." msgid "The required file {file} is not installed!" msgstr "Den nödvändiga filen {file} är inte installerad!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Fel vid delning" @@ -208,22 +208,22 @@ msgstr "Delad med" msgid "Share with link" msgstr "Delad med länk" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Lösenordsskydda" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Lösenord" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "E-posta länk till person" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Skicka" #: js/share.js:177 msgid "Set expiration date" @@ -277,25 +277,25 @@ msgstr "radera" msgid "share" msgstr "dela" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Skickar ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "E-post skickat" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -317,8 +317,8 @@ msgstr "Återställ skickad e-post." msgid "Request failed!" msgstr "Begäran misslyckades!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Användarnamn" @@ -407,44 +407,44 @@ msgstr "Din datakatalog och dina filer är förmodligen tillgängliga från Inte msgid "Create an admin account" msgstr "Skapa ett administratörskonto" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avancerat" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datamapp" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurera databasen" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "kommer att användas" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Databasanvändare" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Lösenord till databasen" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Avsluta installation" @@ -532,29 +532,29 @@ msgstr "webbtjänster under din kontroll" msgid "Log out" msgstr "Logga ut" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatisk inloggning inte tillåten!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Om du inte har ändrat ditt lösenord nyligen så kan ditt konto vara manipulerat!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Ändra genast lösenord för att säkra ditt konto." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Glömt ditt lösenord?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "kom ihåg" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Logga in" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index e35ac8ae60d..0de3f3e3556 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-26 00:10+0100\n" +"PO-Revision-Date: 2012-12-25 15:20+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -46,14 +46,14 @@ msgstr "Fel vid konfigurering av Google Drive" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +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:435 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 "" +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." #: templates/settings.php:3 msgid "External Storage" @@ -100,7 +100,7 @@ msgid "Users" msgstr "Användare" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Radera" @@ -112,10 +112,10 @@ msgstr "Aktivera extern lagring för användare" msgid "Allow users to mount their own external storage" msgstr "Tillåt användare att montera egen extern lagring" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL rotcertifikat" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Importera rotcertifikat" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 397ccdff0f2..93565b09c2e 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-26 00:11+0100\n" +"PO-Revision-Date: 2012-12-25 07:58+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -124,27 +124,27 @@ msgstr "-licensierad av \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -27,4 +27,4 @@ msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud kommer att skicka inloggningsuppgifterna till denna URL och tolkar http 401 och http 403 som fel och alla andra koder som korrekt." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index ff3c8bfbf6b..cb81e4a3bf2 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"POT-Creation-Date: 2012-12-26 00:11+0100\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 0818212bd19..36134e77ca2 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"POT-Creation-Date: 2012-12-26 00:10+0100\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 fb7b97cbf90..d97815aa3c6 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"POT-Creation-Date: 2012-12-26 00:10+0100\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 659e1e0bb54..4a58cc81cb8 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"POT-Creation-Date: 2012-12-26 00:10+0100\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 1984b3a0014..4df6821bdb7 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"POT-Creation-Date: 2012-12-26 00:10+0100\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 4b79897af20..ea84ed78215 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"POT-Creation-Date: 2012-12-26 00:10+0100\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 f7d273a1391..b7b1a122718 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"POT-Creation-Date: 2012-12-26 00:11+0100\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 081fc8b3630..1f54f62fe9a 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"POT-Creation-Date: 2012-12-26 00:11+0100\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 1915a2b814d..f602b7e50c7 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"POT-Creation-Date: 2012-12-26 00:10+0100\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 8eab468ae32..6afb31853e5 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"POT-Creation-Date: 2012-12-26 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 7d54763284a..d8b36266e24 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -11,6 +11,7 @@ "Authentication error" => "Adgangsfejl", "Unable to delete user" => "Bruger kan ikke slettes", "Language changed" => "Sprog ændret", +"Admins can't remove themself from the admin group" => "Administratorer kan ikke fjerne dem selv fra admin gruppen", "Unable to add user to group %s" => "Brugeren kan ikke tilføjes til gruppen %s", "Unable to remove user from group %s" => "Brugeren kan ikke fjernes fra gruppen %s", "Disable" => "Deaktiver", @@ -22,7 +23,17 @@ "Select an App" => "Vælg en App", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", "-licensed by " => "-licenseret af ", +"User Documentation" => "Brugerdokumentation", +"Administrator Documentation" => "Administrator Dokumentation", +"Online Documentation" => "Online dokumentation", +"Forum" => "Forum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Kommerciel support", +"You have used %s of the available %s" => "Du har brugt %s af den tilgængelige %s", "Clients" => "Klienter", +"Download Desktop Clients" => "Hent Desktop Klienter", +"Download Android Client" => "Hent Android Klient", +"Download iOS Client" => "Hent iOS Klient", "Password" => "Kodeord", "Your password was changed" => "Din adgangskode blev ændret", "Unable to change your password" => "Ude af stand til at ændre dit kodeord", @@ -35,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Indtast en emailadresse for at kunne få påmindelse om adgangskode", "Language" => "Sprog", "Help translate" => "Hjælp med oversættelsen", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring", +"Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Udviklet af ownClouds community, og kildekoden er underlagt licensen AGPL.", "Name" => "Navn", "Groups" => "Grupper", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 9f372cc9e06..15e4bfd035e 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -23,8 +23,17 @@ "Select an App" => "Välj en App", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", "-licensed by " => "-licensierad av ", +"User Documentation" => "Användardokumentation", +"Administrator Documentation" => "Administratördokumentation", +"Online Documentation" => "Onlinedokumentation", +"Forum" => "Forum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Kommersiell support", "You have used %s of the available %s" => "Du har använt %s av tillgängliga %s", "Clients" => "Kunder", +"Download Desktop Clients" => "Ladda ner skrivbordsklienter", +"Download Android Client" => "Ladda ner klient för Android", +"Download iOS Client" => "Ladda ner klient för iOS", "Password" => "Lösenord", "Your password was changed" => "Ditt lösenord har ändrats", "Unable to change your password" => "Kunde inte ändra ditt lösenord", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Fyll i en e-postadress för att aktivera återställning av lösenord", "Language" => "Språk", "Help translate" => "Hjälp att översätta", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Använd denna adress för att ansluta till ownCloud i din filhanterare", +"Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Utvecklad av ownCloud kommunity, källkoden är licenserad under AGPL.", "Name" => "Namn", "Groups" => "Grupper", -- cgit v1.2.3 From 27f9ea2abbe4ae34696ce6a2bb91d09455e39a9a Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 27 Dec 2012 00:05:17 +0100 Subject: [tx-robot] updated from transifex --- apps/files_encryption/l10n/he.php | 6 ++++ apps/user_ldap/l10n/el.php | 8 +++++ apps/user_ldap/l10n/ro.php | 2 ++ apps/user_webdavauth/l10n/ro.php | 4 +++ apps/user_webdavauth/l10n/ru.php | 2 +- core/l10n/ro.php | 1 + l10n/el/user_ldap.po | 23 ++++++------- l10n/he/files_encryption.po | 27 ++++++++-------- l10n/he/settings.po | 27 ++++++++-------- l10n/ro/core.po | 64 ++++++++++++++++++------------------- l10n/ro/lib.po | 37 ++++++++++----------- l10n/ro/user_ldap.po | 11 ++++--- l10n/ro/user_webdavauth.po | 11 ++++--- l10n/ru/settings.po | 21 ++++++------ l10n/ru/user_webdavauth.po | 9 +++--- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/ro.php | 7 +++- settings/l10n/he.php | 10 ++++++ settings/l10n/ru.php | 7 ++++ 28 files changed, 174 insertions(+), 123 deletions(-) create mode 100644 apps/files_encryption/l10n/he.php create mode 100644 apps/user_webdavauth/l10n/ro.php (limited to 'apps') diff --git a/apps/files_encryption/l10n/he.php b/apps/files_encryption/l10n/he.php new file mode 100644 index 00000000000..0332d59520a --- /dev/null +++ b/apps/files_encryption/l10n/he.php @@ -0,0 +1,6 @@ + "הצפנה", +"Enable Encryption" => "הפעל הצפנה", +"None" => "כלום", +"Exclude the following file types from encryption" => "הוצא את סוגי הקבצים הבאים מהצפנה" +); diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index e973eaac0a9..b16665b0aeb 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -1,18 +1,26 @@ "Base DN", +"You can specify Base DN for users and groups in the Advanced tab" => "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις", "User DN" => "User DN", "Password" => "Συνθηματικό", +"For anonymous access, leave DN and Password empty." => "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword.", "User Login Filter" => "User Login Filter", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Καθορίζει το φίλτρο που θα ισχύει κατά την προσπάθεια σύνδεσης χρήστη. %%uid αντικαθιστά το όνομα χρήστη κατά τη σύνδεση. ", "User List Filter" => "User List Filter", +"Defines the filter to apply, when retrieving users." => "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση επαφών.", "Group Filter" => "Group Filter", +"Defines the filter to apply, when retrieving groups." => "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση ομάδων.", "Port" => "Θύρα", "Base User Tree" => "Base User Tree", "Base Group Tree" => "Base Group Tree", "Group-Member association" => "Group-Member association", "Use TLS" => "Χρήση TLS", +"Do not use it for SSL connections, it will fail." => "Μην χρησιμοποιείτε για συνδέσεις SSL, θα αποτύχει.", +"Turn off SSL certificate validation." => "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL.", "Not recommended, use for testing only." => "Δεν προτείνεται, χρήση μόνο για δοκιμές.", "User Display Name Field" => "Πεδίο Ονόματος Χρήστη", "Group Display Name Field" => "Group Display Name Field", "in bytes" => "σε bytes", +"in seconds. A change empties the cache." => "σε δευτερόλεπτα. Μια αλλαγή αδειάζει την μνήμη cache.", "Help" => "Βοήθεια" ); diff --git a/apps/user_ldap/l10n/ro.php b/apps/user_ldap/l10n/ro.php index beeed857455..b4d7d4902fe 100644 --- a/apps/user_ldap/l10n/ro.php +++ b/apps/user_ldap/l10n/ro.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Atentie: Apps user_ldap si user_webdavauth sunt incompatibile. Este posibil sa experimentati un comportament neasteptat. Vă rugăm să întrebați administratorul de sistem pentru a dezactiva una dintre ele.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Atentie: "Gazdă", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puteți omite protocolul, decât dacă folosiți SSL. Atunci se începe cu ldaps://", "Base DN" => "DN de bază", diff --git a/apps/user_webdavauth/l10n/ro.php b/apps/user_webdavauth/l10n/ro.php new file mode 100644 index 00000000000..17157da044d --- /dev/null +++ b/apps/user_webdavauth/l10n/ro.php @@ -0,0 +1,4 @@ + "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "owncloud va trimite acreditatile de utilizator pentru a interpreta aceasta pagina. Http 401 si Http 403 are acreditarile si orice alt cod gresite ca acreditarile corecte" +); diff --git a/apps/user_webdavauth/l10n/ru.php b/apps/user_webdavauth/l10n/ru.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/ru.php +++ b/apps/user_webdavauth/l10n/ru.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 560ef5b9fc8..053c59330bd 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -5,6 +5,7 @@ "Settings" => "Configurări", "seconds ago" => "secunde în urmă", "1 minute ago" => "1 minut în urmă", +"1 hour ago" => "Acum o ora", "today" => "astăzi", "yesterday" => "ieri", "last month" => "ultima lună", diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index cea052cafa1..3cbbac049eb 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Dimitris M. , 2012. # Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"PO-Revision-Date: 2012-12-26 17:22+0000\n" +"Last-Translator: AnAstAsiA \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 +49,7 @@ msgstr "Base DN" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις" #: templates/settings.php:17 msgid "User DN" @@ -67,7 +68,7 @@ msgstr "Συνθηματικό" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword." #: templates/settings.php:19 msgid "User Login Filter" @@ -78,7 +79,7 @@ msgstr "User Login Filter" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά την προσπάθεια σύνδεσης χρήστη. %%uid αντικαθιστά το όνομα χρήστη κατά τη σύνδεση. " #: templates/settings.php:19 #, php-format @@ -91,7 +92,7 @@ msgstr "User List Filter" #: templates/settings.php:20 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση επαφών." #: templates/settings.php:20 msgid "without any placeholder, e.g. \"objectClass=person\"." @@ -103,7 +104,7 @@ msgstr "Group Filter" #: templates/settings.php:21 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση ομάδων." #: templates/settings.php:21 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." @@ -131,7 +132,7 @@ msgstr "Χρήση TLS" #: templates/settings.php:28 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "Μην χρησιμοποιείτε για συνδέσεις SSL, θα αποτύχει." #: templates/settings.php:29 msgid "Case insensitve LDAP server (Windows)" @@ -139,7 +140,7 @@ msgstr "" #: templates/settings.php:30 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL." #: templates/settings.php:30 msgid "" @@ -173,7 +174,7 @@ msgstr "σε bytes" #: templates/settings.php:36 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "σε δευτερόλεπτα. Μια αλλαγή αδειάζει την μνήμη cache." #: templates/settings.php:37 msgid "" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index ab535b9271f..860989631c4 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Gilad Naaman , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"PO-Revision-Date: 2012-12-26 17:21+0000\n" +"Last-Translator: Gilad Naaman \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "הצפנה" -#: templates/settings.php:4 -msgid "Exclude the following file types from encryption" -msgstr "" +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "הפעל הצפנה" -#: templates/settings.php:5 +#: templates/settings.php:7 msgid "None" -msgstr "" +msgstr "כלום" -#: templates/settings.php:10 -msgid "Enable Encryption" -msgstr "" +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" +msgstr "הוצא את סוגי הקבצים הבאים מהצפנה" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 8cec0934f2a..1fe9d7e737f 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Gilad Naaman , 2012. # , 2012. # , 2011. # Yaron Shahrabani , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"PO-Revision-Date: 2012-12-26 14:12+0000\n" +"Last-Translator: Gilad Naaman \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,19 +121,19 @@ msgstr "ברישיון לטובת \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -101,7 +101,7 @@ msgstr "" #: js/js.js:707 msgid "1 hour ago" -msgstr "" +msgstr "Acum o ora" #: js/js.js:708 msgid "{hours} hours ago" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Eroare" @@ -178,7 +178,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -206,11 +206,11 @@ msgstr "Partajat cu" msgid "Share with link" msgstr "Partajare cu legătură" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protejare cu parolă" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Parola" @@ -275,23 +275,23 @@ msgstr "ștergere" msgid "share" msgstr "partajare" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -315,8 +315,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Utilizator" @@ -405,44 +405,44 @@ msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile pri msgid "Create an admin account" msgstr "Crează un cont de administrator" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avansat" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Director date" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurează baza de date" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "vor fi folosite" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Tabela de spațiu a bazei de date" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Finalizează instalarea" @@ -530,29 +530,29 @@ msgstr "servicii web controlate de tine" msgid "Log out" msgstr "Ieșire" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ai uitat parola?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "amintește" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Autentificare" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 827d2b17ea9..3cfb1c4c4a0 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"PO-Revision-Date: 2012-12-26 05:14+0000\n" +"Last-Translator: laurentiucristescu \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" @@ -18,43 +19,43 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: app.php:285 +#: app.php:287 msgid "Help" msgstr "Ajutor" -#: app.php:292 +#: app.php:294 msgid "Personal" msgstr "Personal" -#: app.php:297 +#: app.php:299 msgid "Settings" msgstr "Setări" -#: app.php:302 +#: app.php:304 msgid "Users" msgstr "Utilizatori" -#: app.php:309 +#: app.php:311 msgid "Apps" msgstr "Aplicații" -#: app.php:311 +#: app.php:313 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Descărcarea ZIP este dezactivată." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Fișierele trebuie descărcate unul câte unul." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Înapoi la fișiere" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." @@ -80,7 +81,7 @@ msgstr "Text" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Imagini" #: template.php:103 msgid "seconds ago" @@ -97,12 +98,12 @@ msgstr "%d minute în urmă" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "Acum o ora" #: template.php:107 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d ore in urma" #: template.php:108 msgid "today" @@ -124,7 +125,7 @@ msgstr "ultima lună" #: template.php:112 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d luni in urma" #: template.php:113 msgid "last year" @@ -150,4 +151,4 @@ msgstr "verificarea după actualizări este dezactivată" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Cloud nu a gasit categoria \"%s\"" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index a7e5abcc360..171e91b27d4 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -5,13 +5,14 @@ # Translators: # Dumitru Ursu <>, 2012. # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"PO-Revision-Date: 2012-12-26 05:09+0000\n" +"Last-Translator: laurentiucristescu \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" @@ -24,13 +25,13 @@ 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 "" +msgstr "Atentie: Apps user_ldap si user_webdavauth sunt incompatibile. Este posibil sa experimentati un comportament neasteptat. Vă rugăm să întrebați administratorul de sistem pentru a dezactiva una dintre ele." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Atentie:, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"PO-Revision-Date: 2012-12-26 05:17+0000\n" +"Last-Translator: laurentiucristescu \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" @@ -19,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "owncloud va trimite acreditatile de utilizator pentru a interpreta aceasta pagina. Http 401 si Http 403 are acreditarile si orice alt cod gresite ca acreditarile corecte" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index d47fe1cca61..cfaa71c6af5 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,6 +10,7 @@ # Nick Remeslennikov , 2012. # , 2012. # , 2012. +# , 2012. # , 2012. # , 2011. # Victor Bravo <>, 2012. @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"PO-Revision-Date: 2012-12-26 06:17+0000\n" +"Last-Translator: adol \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" @@ -140,7 +141,7 @@ msgstr "" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Форум" #: templates/help.php:9 msgid "Bugtracker" @@ -161,15 +162,15 @@ msgstr "Клиенты" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Загрузка приложений для компьютера" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Загрузка Android-приложения" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Загрузка iOS-приложения" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -221,15 +222,15 @@ msgstr "Помочь с переводом" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Используйте этот URL для подключения файлового менеджера к Вашему хранилищу" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Версия" #: templates/personal.php:65 msgid "" diff --git a/l10n/ru/user_webdavauth.po b/l10n/ru/user_webdavauth.po index 29fdee82122..12e0350b328 100644 --- a/l10n/ru/user_webdavauth.po +++ b/l10n/ru/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"PO-Revision-Date: 2012-12-26 06:19+0000\n" +"Last-Translator: adol \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" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index cb81e4a3bf2..bb50657d0c1 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-26 00:11+0100\n" +"POT-Creation-Date: 2012-12-27 00:04+0100\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 36134e77ca2..03098019637 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-26 00:10+0100\n" +"POT-Creation-Date: 2012-12-27 00:04+0100\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 d97815aa3c6..6eef8177d08 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-26 00:10+0100\n" +"POT-Creation-Date: 2012-12-27 00:04+0100\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 4a58cc81cb8..ede827aedaf 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-26 00:10+0100\n" +"POT-Creation-Date: 2012-12-27 00:04+0100\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 4df6821bdb7..56f4c1b25fa 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-26 00:10+0100\n" +"POT-Creation-Date: 2012-12-27 00:04+0100\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 ea84ed78215..c93f0198ea2 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-26 00:10+0100\n" +"POT-Creation-Date: 2012-12-27 00:04+0100\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 b7b1a122718..542c822edcd 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-26 00:11+0100\n" +"POT-Creation-Date: 2012-12-27 00:04+0100\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 1f54f62fe9a..e2ebf0bd789 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-26 00:11+0100\n" +"POT-Creation-Date: 2012-12-27 00:04+0100\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 f602b7e50c7..1beb1526e1c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-26 00:10+0100\n" +"POT-Creation-Date: 2012-12-27 00:04+0100\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 6afb31853e5..2de8510b34f 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-26 00:10+0100\n" +"POT-Creation-Date: 2012-12-27 00:04+0100\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/ro.php b/lib/l10n/ro.php index 27912550e17..d3ce066c8c1 100644 --- a/lib/l10n/ro.php +++ b/lib/l10n/ro.php @@ -14,16 +14,21 @@ "Token expired. Please reload page." => "Token expirat. Te rugăm să reîncarci pagina.", "Files" => "Fișiere", "Text" => "Text", +"Images" => "Imagini", "seconds ago" => "secunde în urmă", "1 minute ago" => "1 minut în urmă", "%d minutes ago" => "%d minute în urmă", +"1 hour ago" => "Acum o ora", +"%d hours ago" => "%d ore in urma", "today" => "astăzi", "yesterday" => "ieri", "%d days ago" => "%d zile în urmă", "last month" => "ultima lună", +"%d months ago" => "%d luni in urma", "last year" => "ultimul an", "years ago" => "ani în urmă", "%s is available. Get more information" => "%s este disponibil. Vezi mai multe informații", "up to date" => "la zi", -"updates check is disabled" => "verificarea după actualizări este dezactivată" +"updates check is disabled" => "verificarea după actualizări este dezactivată", +"Could not find category \"%s\"" => "Cloud nu a gasit categoria \"%s\"" ); diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 2524c076b79..ce9e61be291 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -23,8 +23,16 @@ "Select an App" => "בחירת יישום", "See application page at apps.owncloud.com" => "צפה בעמוד הישום ב apps.owncloud.com", "-licensed by " => "ברישיון לטובת ", +"User Documentation" => "תיעוד משתמש", +"Administrator Documentation" => "תיעוד מנהלים", +"Online Documentation" => "תיעוד מקוון", +"Forum" => "פורום", +"Commercial Support" => "תמיכה בתשלום", "You have used %s of the available %s" => "השתמשת ב־%s מתוך %s הזמינים לך", "Clients" => "לקוחות", +"Download Desktop Clients" => "הורד לתוכנה למחשב", +"Download Android Client" => "הורד תוכנה לאנדרואיד", +"Download iOS Client" => "הורד תוכנה לiOS", "Password" => "ססמה", "Your password was changed" => "הססמה שלך הוחלפה", "Unable to change your password" => "לא ניתן לשנות את הססמה שלך", @@ -37,6 +45,8 @@ "Fill in an email address to enable password recovery" => "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה", "Language" => "פה", "Help translate" => "עזרה בתרגום", +"Use this address to connect to your ownCloud in your file manager" => "השתמש בכתובת זאת על מנת להתחבר אל ownCloud דרך סייר קבצים.", +"Version" => "גרסא", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "פותח על די קהילתownCloud, קוד המקור מוגן ברישיון AGPL.", "Name" => "שם", "Groups" => "קבוצות", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index ba26cb13353..bef330b92b7 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -23,8 +23,12 @@ "Select an App" => "Выберите приложение", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "-licensed by " => " лицензия. Автор ", +"Forum" => "Форум", "You have used %s of the available %s" => "Вы использовали %s из доступных %s", "Clients" => "Клиенты", +"Download Desktop Clients" => "Загрузка приложений для компьютера", +"Download Android Client" => "Загрузка Android-приложения", +"Download iOS Client" => "Загрузка iOS-приложения", "Password" => "Пароль", "Your password was changed" => "Ваш пароль изменён", "Unable to change your password" => "Невозможно сменить пароль", @@ -37,6 +41,9 @@ "Fill in an email address to enable password recovery" => "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля", "Language" => "Язык", "Help translate" => "Помочь с переводом", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Используйте этот URL для подключения файлового менеджера к Вашему хранилищу", +"Version" => "Версия", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Разрабатывается сообществом ownCloud, исходный код доступен под лицензией AGPL.", "Name" => "Имя", "Groups" => "Группы", -- cgit v1.2.3 From e9c51b319e3d0a8017b769ea0b27b5bd99fcc705 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 28 Dec 2012 00:20:34 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/el.php | 4 +- apps/files/l10n/ro.php | 15 ++++ apps/files/l10n/tr.php | 11 +++ apps/files_encryption/l10n/tr.php | 6 ++ apps/files_external/l10n/eu.php | 2 + apps/files_external/l10n/tr.php | 13 +++- apps/files_versions/l10n/tr.php | 8 +++ apps/user_ldap/l10n/el.php | 13 ++++ apps/user_ldap/l10n/eu.php | 2 + apps/user_ldap/l10n/tr.php | 12 ++++ apps/user_webdavauth/l10n/el.php | 3 +- apps/user_webdavauth/l10n/eo.php | 2 +- apps/user_webdavauth/l10n/eu.php | 3 +- apps/user_webdavauth/l10n/tr.php | 2 +- core/l10n/ro.php | 20 +++++- core/l10n/tr.php | 37 +++++++++- l10n/el/files.po | 83 +++++++++++----------- l10n/el/user_ldap.po | 33 ++++----- l10n/el/user_webdavauth.po | 9 +-- l10n/eo/user_webdavauth.po | 8 +-- l10n/eu/files_external.po | 16 ++--- l10n/eu/settings.po | 30 ++++---- l10n/eu/user_ldap.po | 10 +-- l10n/eu/user_webdavauth.po | 10 +-- l10n/ro/core.po | 43 ++++++------ l10n/ro/files.po | 109 ++++++++++++++--------------- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 134 ++++++++++++++++++------------------ l10n/tr/files.po | 100 +++++++++++++-------------- l10n/tr/files_encryption.po | 27 ++++---- l10n/tr/files_external.po | 35 +++++----- l10n/tr/files_versions.po | 23 ++++--- l10n/tr/lib.po | 77 +++++++++++---------- l10n/tr/settings.po | 28 ++++---- l10n/tr/user_ldap.po | 27 ++++---- l10n/tr/user_webdavauth.po | 9 +-- lib/l10n/tr.php | 27 +++++++- settings/l10n/eu.php | 12 ++++ settings/l10n/tr.php | 11 +++ 48 files changed, 614 insertions(+), 420 deletions(-) create mode 100644 apps/files_encryption/l10n/tr.php create mode 100644 apps/files_versions/l10n/tr.php create mode 100644 apps/user_ldap/l10n/tr.php (limited to 'apps') diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index ddbea421241..fce7a07c948 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -28,7 +28,7 @@ "1 file uploading" => "1 αρχείο ανεβαίνει", "{count} files uploading" => "{count} αρχεία ανεβαίνουν", "Upload cancelled." => "Η αποστολή ακυρώθηκε.", -"File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την αποστολή.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud", "{count} files scanned" => "{count} αρχεία ανιχνεύτηκαν", "error while scanning" => "σφάλμα κατά την ανίχνευση", @@ -56,7 +56,7 @@ "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!", "Download" => "Λήψη", "Upload too large" => "Πολύ μεγάλο αρχείο προς αποστολή", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν το διακομιστή.", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή.", "Files are being scanned, please wait." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε", "Current scanning" => "Τρέχουσα αναζήτηση " ); diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 34e8dc8a50e..7244a6677a3 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -1,5 +1,6 @@ "Nicio eroare, fișierul a fost încărcat cu succes", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML", "The uploaded file was only partially uploaded" => "Fișierul a fost încărcat doar parțial", "No file was uploaded" => "Niciun fișier încărcat", @@ -9,22 +10,35 @@ "Unshare" => "Anulează partajarea", "Delete" => "Șterge", "Rename" => "Redenumire", +"{new_name} already exists" => "{new_name} deja exista", "replace" => "înlocuire", "suggest name" => "sugerează nume", "cancel" => "anulare", +"replaced {new_name}" => "inlocuit {new_name}", "undo" => "Anulează ultima acțiune", +"replaced {new_name} with {old_name}" => "{new_name} inlocuit cu {old_name}", +"unshared {files}" => "nedistribuit {files}", +"deleted {files}" => "Sterse {files}", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise.", "generating ZIP-file, it may take some time." => "se generază fișierul ZIP, va dura ceva timp.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes.", "Upload Error" => "Eroare la încărcare", "Close" => "Închide", "Pending" => "În așteptare", "1 file uploading" => "un fișier se încarcă", +"{count} files uploading" => "{count} fisiere incarcate", "Upload cancelled." => "Încărcare anulată.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", +"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nume de folder invalid. Numele este rezervat pentru OwnCloud", +"{count} files scanned" => "{count} fisiere scanate", "error while scanning" => "eroare la scanarea", "Name" => "Nume", "Size" => "Dimensiune", "Modified" => "Modificat", +"1 folder" => "1 folder", +"{count} folders" => "{count} foldare", +"1 file" => "1 fisier", +"{count} files" => "{count} fisiere", "File handling" => "Manipulare fișiere", "Maximum upload size" => "Dimensiune maximă admisă la încărcare", "max. possible: " => "max. posibil:", @@ -36,6 +50,7 @@ "New" => "Nou", "Text file" => "Fișier text", "Folder" => "Dosar", +"From link" => "de la adresa", "Upload" => "Încarcă", "Cancel upload" => "Anulează încărcarea", "Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 061ed1f3ae2..7cd3a82cd71 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,5 +1,6 @@ "Bir hata yok, dosya başarıyla yüklendi", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor", "The uploaded file was only partially uploaded" => "Yüklenen dosyanın sadece bir kısmı yüklendi", "No file was uploaded" => "Hiç dosya yüklenmedi", @@ -15,20 +16,29 @@ "cancel" => "iptal", "replaced {new_name}" => "değiştirilen {new_name}", "undo" => "geri al", +"replaced {new_name} with {old_name}" => "{new_name} ismi {old_name} ile değiştirildi", "unshared {files}" => "paylaşılmamış {files}", "deleted {files}" => "silinen {files}", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir.", "generating ZIP-file, it may take some time." => "ZIP dosyası oluşturuluyor, biraz sürebilir.", "Unable to upload your file as it is a directory or has 0 bytes" => "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi", "Upload Error" => "Yükleme hatası", "Close" => "Kapat", "Pending" => "Bekliyor", "1 file uploading" => "1 dosya yüklendi", +"{count} files uploading" => "{count} dosya yükleniyor", "Upload cancelled." => "Yükleme iptal edildi.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", +"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır.", +"{count} files scanned" => "{count} dosya tarandı", "error while scanning" => "tararamada hata oluşdu", "Name" => "Ad", "Size" => "Boyut", "Modified" => "Değiştirilme", +"1 folder" => "1 dizin", +"{count} folders" => "{count} dizin", +"1 file" => "1 dosya", +"{count} files" => "{count} dosya", "File handling" => "Dosya taşıma", "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", @@ -40,6 +50,7 @@ "New" => "Yeni", "Text file" => "Metin dosyası", "Folder" => "Klasör", +"From link" => "Bağlantıdan", "Upload" => "Yükle", "Cancel upload" => "Yüklemeyi iptal et", "Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", diff --git a/apps/files_encryption/l10n/tr.php b/apps/files_encryption/l10n/tr.php new file mode 100644 index 00000000000..474ee42b842 --- /dev/null +++ b/apps/files_encryption/l10n/tr.php @@ -0,0 +1,6 @@ + "Şifreleme", +"Enable Encryption" => "Şifrelemeyi Etkinleştir", +"None" => "Hiçbiri", +"Exclude the following file types from encryption" => "Aşağıdaki dosya tiplerini şifrelemeye dahil etme" +); diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php index dccd377b119..597204c894d 100644 --- a/apps/files_external/l10n/eu.php +++ b/apps/files_external/l10n/eu.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "Bete eskatutako eremu guztiak", "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.", "External Storage" => "Kanpoko Biltegiratzea", "Mount point" => "Montatze puntua", "Backend" => "Motorra", diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index c5e9f8f892f..e9a045aab57 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -1,5 +1,16 @@ "Harici Depolama", +"Mount point" => "Bağlama Noktası", +"Backend" => "Yönetici", +"Configuration" => "Yapılandırma", +"Options" => "Seçenekler", +"Applicable" => "Uygulanabilir", +"Add mount point" => "Bağlama noktası ekle", +"None set" => "Hiçbiri", +"All Users" => "Tüm Kullanıcılar", "Groups" => "Gruplar", "Users" => "Kullanıcılar", -"Delete" => "Sil" +"Delete" => "Sil", +"SSL root certificates" => "SSL kök sertifikaları", +"Import Root Certificate" => "Kök Sertifikalarını İçe Aktar" ); diff --git a/apps/files_versions/l10n/tr.php b/apps/files_versions/l10n/tr.php new file mode 100644 index 00000000000..73f207d5024 --- /dev/null +++ b/apps/files_versions/l10n/tr.php @@ -0,0 +1,8 @@ + "Tüm sürümleri sona erdir", +"History" => "Geçmiş", +"Versions" => "Sürümler", +"This will delete all existing backup versions of your files" => "Bu dosyalarınızın tüm yedek sürümlerini silecektir", +"Files Versioning" => "Dosya Sürümleri", +"Enable" => "Etkinleştir" +); diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index b16665b0aeb..8c421cf162b 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -1,26 +1,39 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Προσοχή: Το PHP LDAP module που απαιτείται δεν είναι εγκατεστημένο και ο μηχανισμός δεν θα λειτουργήσει. Παρακαλώ ζητήστε από τον διαχειριστή του συστήματος να το εγκαταστήσει.", +"Host" => "Διακομιστής", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://", "Base DN" => "Base DN", "You can specify Base DN for users and groups in the Advanced tab" => "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις", "User DN" => "User DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά.", "Password" => "Συνθηματικό", "For anonymous access, leave DN and Password empty." => "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword.", "User Login Filter" => "User Login Filter", "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Καθορίζει το φίλτρο που θα ισχύει κατά την προσπάθεια σύνδεσης χρήστη. %%uid αντικαθιστά το όνομα χρήστη κατά τη σύνδεση. ", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "χρησιμοποιήστε τη μεταβλητή %%uid, π.χ. \"uid=%%uid\"", "User List Filter" => "User List Filter", "Defines the filter to apply, when retrieving users." => "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση επαφών.", +"without any placeholder, e.g. \"objectClass=person\"." => "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=άτομο\".", "Group Filter" => "Group Filter", "Defines the filter to apply, when retrieving groups." => "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση ομάδων.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=ΟμάδαPosix\".", "Port" => "Θύρα", "Base User Tree" => "Base User Tree", "Base Group Tree" => "Base Group Tree", "Group-Member association" => "Group-Member association", "Use TLS" => "Χρήση TLS", "Do not use it for SSL connections, it will fail." => "Μην χρησιμοποιείτε για συνδέσεις SSL, θα αποτύχει.", +"Case insensitve LDAP server (Windows)" => "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ", "Turn off SSL certificate validation." => "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Εάν η σύνδεση δουλεύει μόνο με αυτή την επιλογή, εισάγετε το LDAP SSL πιστοποιητικό του διακομιστή στον ownCloud server σας.", "Not recommended, use for testing only." => "Δεν προτείνεται, χρήση μόνο για δοκιμές.", "User Display Name Field" => "Πεδίο Ονόματος Χρήστη", +"The LDAP attribute to use to generate the user`s ownCloud name." => "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος χρήστη του ownCloud.", "Group Display Name Field" => "Group Display Name Field", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος ομάδας του ownCloud.", "in bytes" => "σε bytes", "in seconds. A change empties the cache." => "σε δευτερόλεπτα. Μια αλλαγή αδειάζει την μνήμη cache.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD.", "Help" => "Βοήθεια" ); diff --git a/apps/user_ldap/l10n/eu.php b/apps/user_ldap/l10n/eu.php index 35dacef3f2f..06ca9cb294e 100644 --- a/apps/user_ldap/l10n/eu.php +++ b/apps/user_ldap/l10n/eu.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Abisua: PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan.", "Host" => "Hostalaria", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://", "Base DN" => "Oinarrizko DN", diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php new file mode 100644 index 00000000000..e9098d7017d --- /dev/null +++ b/apps/user_ldap/l10n/tr.php @@ -0,0 +1,12 @@ + "Konak", +"Base DN" => "Base DN", +"User DN" => "User DN", +"Password" => "Parola", +"User Login Filter" => "Kullanıcı Oturum Açma Süzgeci", +"User List Filter" => "Kullanıcı Liste Süzgeci", +"Group Filter" => "Grup Süzgeci", +"Port" => "Port", +"Use TLS" => "TLS kullan", +"Help" => "Yardım" +); diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php index 245a5101341..bf4c11af64c 100644 --- a/apps/user_webdavauth/l10n/el.php +++ b/apps/user_webdavauth/l10n/el.php @@ -1,3 +1,4 @@ "URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "Το ownCloud θα στείλει τα συνθηματικά χρήστη σε αυτό το URL, μεταφράζοντας τα http 401 και http 403 ως λανθασμένα συνθηματικά και όλους τους άλλους κωδικούς ως σωστά συνθηματικά." ); diff --git a/apps/user_webdavauth/l10n/eo.php b/apps/user_webdavauth/l10n/eo.php index b4a2652d33e..245a5101341 100644 --- a/apps/user_webdavauth/l10n/eo.php +++ b/apps/user_webdavauth/l10n/eo.php @@ -1,3 +1,3 @@ "WebDAV-a URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/eu.php b/apps/user_webdavauth/l10n/eu.php index 9bd32954b05..bbda9f10ba0 100644 --- a/apps/user_webdavauth/l10n/eu.php +++ b/apps/user_webdavauth/l10n/eu.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud erabiltzailearen kredentzialak helbide honetara bidaliko ditu. http 401 eta http 403 kredentzial ez zuzenak bezala hartuko dira eta beste kode guztiak kredentzial zuzentzat hartuko dira." ); diff --git a/apps/user_webdavauth/l10n/tr.php b/apps/user_webdavauth/l10n/tr.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/tr.php +++ b/apps/user_webdavauth/l10n/tr.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 053c59330bd..1c58e5fe2be 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -1,13 +1,17 @@ "Tipul de categorie nu este prevazut", "No category to add?" => "Nici o categorie de adăugat?", "This category already exists: " => "Această categorie deja există:", +"Object type not provided." => "Tipul obiectului nu este prevazut", "No categories selected for deletion." => "Nici o categorie selectată pentru ștergere.", "Settings" => "Configurări", "seconds ago" => "secunde în urmă", "1 minute ago" => "1 minut în urmă", +"{minutes} minutes ago" => "{minutes} minute in urma", "1 hour ago" => "Acum o ora", "today" => "astăzi", "yesterday" => "ieri", +"{days} days ago" => "{days} zile in urma", "last month" => "ultima lună", "months ago" => "luni în urmă", "last year" => "ultimul an", @@ -21,14 +25,18 @@ "Error while sharing" => "Eroare la partajare", "Error while unsharing" => "Eroare la anularea partajării", "Error while changing permissions" => "Eroare la modificarea permisiunilor", +"Shared with you and the group {group} by {owner}" => "Distribuie cu tine si grupul {group} de {owner}", +"Shared with you by {owner}" => "Distribuie cu tine de {owner}", "Share with" => "Partajat cu", "Share with link" => "Partajare cu legătură", "Password protect" => "Protejare cu parolă", "Password" => "Parola", "Set expiration date" => "Specifică data expirării", "Expiration date" => "Data expirării", +"Share via email:" => "Distribuie prin email:", "No people found" => "Nici o persoană găsită", "Resharing is not allowed" => "Repartajarea nu este permisă", +"Shared in {item} with {user}" => "Distribuie in {item} si {user}", "Unshare" => "Anulare partajare", "can edit" => "poate edita", "access control" => "control acces", @@ -42,6 +50,8 @@ "ownCloud password reset" => "Resetarea parolei ownCloud ", "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}", "You will receive a link to reset your password via Email." => "Vei primi un mesaj prin care vei putea reseta parola via email", +"Reset email send." => "Resetarea emailu-lui trimisa.", +"Request failed!" => "Solicitarea nu a reusit", "Username" => "Utilizator", "Request reset" => "Cerere trimisă", "Your password was reset" => "Parola a fost resetată", @@ -58,6 +68,8 @@ "Edit categories" => "Editează categoriile", "Add" => "Adaugă", "Security Warning" => "Avertisment de securitate", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.", "Create an admin account" => "Crează un cont de administrator", "Advanced" => "Avansat", @@ -91,10 +103,16 @@ "December" => "Decembrie", "web services under your control" => "servicii web controlate de tine", "Log out" => "Ieșire", +"Automatic logon rejected!" => "Logare automata respinsa", +"If you did not change your password recently, your account may be compromised!" => "Daca nu schimbi parola cand de curand , contul tau poate fi conpromis", +"Please change your password to secure your account again." => "Te rog schimba parola pentru ca, contul tau sa fie securizat din nou.", "Lost your password?" => "Ai uitat parola?", "remember" => "amintește", "Log in" => "Autentificare", "You are logged out." => "Ai ieșit", "prev" => "precedentul", -"next" => "următorul" +"next" => "următorul", +"Security Warning!" => "Advertisment de Securitate", +"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Te rog verifica parola.
Pentru securitate va poate fi cerut ocazional introducerea parolei din nou", +"Verify" => "Verifica" ); diff --git a/core/l10n/tr.php b/core/l10n/tr.php index cb0df023993..86036e5ebd1 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -1,25 +1,57 @@ "Kategori türü desteklenmemektedir.", "No category to add?" => "Eklenecek kategori yok?", "This category already exists: " => "Bu kategori zaten mevcut: ", +"Object type not provided." => "Nesne türü desteklenmemektedir.", "No categories selected for deletion." => "Silmek için bir kategori seçilmedi", "Settings" => "Ayarlar", +"seconds ago" => "saniye önce", +"1 minute ago" => "1 dakika önce", +"{minutes} minutes ago" => "{minutes} dakika önce", +"1 hour ago" => "1 saat önce", +"{hours} hours ago" => "{hours} saat önce", +"today" => "bugün", +"yesterday" => "dün", +"{days} days ago" => "{days} gün önce", +"last month" => "geçen ay", +"{months} months ago" => "{months} ay önce", +"months ago" => "ay önce", +"last year" => "geçen yıl", +"years ago" => "yıl önce", "Choose" => "seç", "Cancel" => "İptal", "No" => "Hayır", "Yes" => "Evet", "Ok" => "Tamam", +"The object type is not specified." => "Nesne türü belirtilmemiş.", "Error" => "Hata", "Error while sharing" => "Paylaşım sırasında hata ", +"Error while changing permissions" => "İzinleri değiştirirken hata oluştu", "Share with" => "ile Paylaş", "Share with link" => "Bağlantı ile paylaş", "Password protect" => "Şifre korunması", "Password" => "Parola", +"Send" => "Gönder", "Set expiration date" => "Son kullanma tarihini ayarla", +"Expiration date" => "Son kullanım tarihi", +"Share via email:" => "Eposta ile paylaş", +"No people found" => "Kişi bulunamadı", +"Resharing is not allowed" => "Tekrar paylaşmaya izin verilmiyor", "Unshare" => "Paylaşılmayan", +"can edit" => "düzenleyebilir", +"access control" => "erişim kontrolü", "create" => "oluştur", +"update" => "güncelle", +"delete" => "sil", +"share" => "paylaş", +"Password protected" => "Paralo korumalı", +"Sending ..." => "Gönderiliyor...", +"Email sent" => "Eposta gönderildi", "ownCloud password reset" => "ownCloud parola sıfırlama", "Use the following link to reset your password: {link}" => "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}", "You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek.", +"Reset email send." => "Sıfırlama epostası gönderildi.", +"Request failed!" => "İstek reddedildi!", "Username" => "Kullanıcı adı", "Request reset" => "Sıfırlama iste", "Your password was reset" => "Parolanız sıfırlandı", @@ -68,10 +100,13 @@ "December" => "Aralık", "web services under your control" => "kontrolünüzdeki web servisleri", "Log out" => "Çıkış yap", +"Automatic logon rejected!" => "Otomatik oturum açma reddedildi!", "Lost your password?" => "Parolanızı mı unuttunuz?", "remember" => "hatırla", "Log in" => "Giriş yap", "You are logged out." => "Çıkış yaptınız.", "prev" => "önceki", -"next" => "sonraki" +"next" => "sonraki", +"Security Warning!" => "Güvenlik Uyarısı!", +"Verify" => "Doğrula" ); diff --git a/l10n/el/files.po b/l10n/el/files.po index 85209f363a5..5129f6e33ff 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -6,6 +6,7 @@ # Dimitris M. , 2012. # Efstathios Iosifidis , 2012. # Efstathios Iosifidis , 2012. +# Konstantinos Tzanidis , 2012. # Marios Bekatoros <>, 2012. # Petros Kyladitis , 2011-2012. # Γιάννης Ανθυμίδης , 2012. @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 11:20+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 13:50+0000\n" +"Last-Translator: Konstantinos Tzanidis \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" @@ -58,11 +59,11 @@ msgstr "Αποτυχία εγγραφής στο δίσκο" msgid "Files" msgstr "Αρχεία" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Διακοπή κοινής χρήσης" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Διαγραφή" @@ -70,39 +71,39 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "συνιστώμενο όνομα" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "{new_name} αντικαταστάθηκε" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "μη διαμοιρασμένα {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "διαγραμμένα {files}" @@ -112,80 +113,80 @@ msgid "" "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Σφάλμα Αποστολής" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Κλείσιμο" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Εκκρεμεί" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} αρχεία ανεβαίνουν" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την αποστολή." +msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} αρχεία ανιχνεύτηκαν" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "σφάλμα κατά την ανίχνευση" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Όνομα" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} αρχεία" @@ -245,28 +246,28 @@ msgstr "Αποστολή" msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Λήψη" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν το διακομιστή." +msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Τρέχουσα αναζήτηση " diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 3cbbac049eb..14b7e75c710 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -6,14 +6,15 @@ # , 2012. # Dimitris M. , 2012. # Efstathios Iosifidis , 2012. +# Konstantinos Tzanidis , 2012. # Marios Bekatoros <>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" -"PO-Revision-Date: 2012-12-26 17:22+0000\n" -"Last-Translator: AnAstAsiA \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 14:12+0000\n" +"Last-Translator: Konstantinos Tzanidis \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,22 +27,22 @@ 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 "" +msgstr "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Προσοχή: Το PHP LDAP module που απαιτείται δεν είναι εγκατεστημένο και ο μηχανισμός δεν θα λειτουργήσει. Παρακαλώ ζητήστε από τον διαχειριστή του συστήματος να το εγκαταστήσει." #: templates/settings.php:15 msgid "Host" -msgstr "" +msgstr "Διακομιστής" #: templates/settings.php:15 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://" #: templates/settings.php:16 msgid "Base DN" @@ -60,7 +61,7 @@ msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά." #: templates/settings.php:18 msgid "Password" @@ -84,7 +85,7 @@ msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά #: templates/settings.php:19 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "χρησιμοποιήστε τη μεταβλητή %%uid, π.χ. \"uid=%%uid\"" #: templates/settings.php:20 msgid "User List Filter" @@ -96,7 +97,7 @@ msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά #: templates/settings.php:20 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=άτομο\"." #: templates/settings.php:21 msgid "Group Filter" @@ -108,7 +109,7 @@ msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά #: templates/settings.php:21 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=ΟμάδαPosix\"." #: templates/settings.php:24 msgid "Port" @@ -136,7 +137,7 @@ msgstr "Μην χρησιμοποιείτε για συνδέσεις SSL, θα #: templates/settings.php:29 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ" #: templates/settings.php:30 msgid "Turn off SSL certificate validation." @@ -146,7 +147,7 @@ msgstr "Απενεργοποίηση επικύρωσης πιστοποιητι msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "Εάν η σύνδεση δουλεύει μόνο με αυτή την επιλογή, εισάγετε το LDAP SSL πιστοποιητικό του διακομιστή στον ownCloud server σας." #: templates/settings.php:30 msgid "Not recommended, use for testing only." @@ -158,7 +159,7 @@ msgstr "Πεδίο Ονόματος Χρήστη" #: templates/settings.php:31 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος χρήστη του ownCloud." #: templates/settings.php:32 msgid "Group Display Name Field" @@ -166,7 +167,7 @@ msgstr "Group Display Name Field" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος ομάδας του ownCloud." #: templates/settings.php:34 msgid "in bytes" @@ -180,7 +181,7 @@ msgstr "σε δευτερόλεπτα. Μια αλλαγή αδειάζει τη msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD." #: templates/settings.php:39 msgid "Help" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index cbfe15b5525..dff8dd88f35 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -5,13 +5,14 @@ # Translators: # Dimitris M. , 2012. # Efstathios Iosifidis , 2012. +# Konstantinos Tzanidis , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 13:00+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 13:55+0000\n" +"Last-Translator: Konstantinos Tzanidis \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,4 +29,4 @@ msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "Το ownCloud θα στείλει τα συνθηματικά χρήστη σε αυτό το URL, μεταφράζοντας τα http 401 και http 403 ως λανθασμένα συνθηματικά και όλους τους άλλους κωδικούς ως σωστά συνθηματικά." diff --git a/l10n/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po index d3ca981d96d..60a766ad4c7 100644 --- a/l10n/eo/user_webdavauth.po +++ b/l10n/eo/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 03:35+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +20,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 70742445f54..285a6bad98d 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 20:50+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,14 +46,14 @@ msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." #: lib/config.php:435 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 "" +msgstr "Abisua: PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." #: templates/settings.php:3 msgid "External Storage" @@ -100,7 +100,7 @@ msgid "Users" msgstr "Erabiltzaileak" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Ezabatu" @@ -112,10 +112,10 @@ msgstr "Gaitu erabiltzaileentzako Kanpo Biltegiratzea" msgid "Allow users to mount their own external storage" msgstr "Baimendu erabiltzaileak bere kanpo biltegiratzeak muntatzen" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL erro ziurtagiriak" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Inportatu Erro Ziurtagiria" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 93231c3514a..88627e3567b 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 20:53+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,27 +120,27 @@ msgstr "-lizentziatua \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 20:38+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,13 +23,13 @@ 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 "" +msgstr "Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Abisua: PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/eu/user_webdavauth.po b/l10n/eu/user_webdavauth.po index b7e5b1a0d37..0f039352404 100644 --- a/l10n/eu/user_webdavauth.po +++ b/l10n/eu/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 20:58+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud erabiltzailearen kredentzialak helbide honetara bidaliko ditu. http 401 eta http 403 kredentzial ez zuzenak bezala hartuko dira eta beste kode guztiak kredentzial zuzentzat hartuko dira." diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 6abd9e8372a..1596bc408e3 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -7,13 +7,14 @@ # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" -"PO-Revision-Date: 2012-12-26 05:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 00:19+0000\n" +"Last-Translator: laurentiucristescu \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" @@ -47,7 +48,7 @@ msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Tipul de categorie nu este prevazut" #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -61,7 +62,7 @@ msgstr "Această categorie deja există:" #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Tipul obiectului nu este prevazut" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 @@ -97,7 +98,7 @@ msgstr "1 minut în urmă" #: js/js.js:706 msgid "{minutes} minutes ago" -msgstr "" +msgstr "{minutes} minute in urma" #: js/js.js:707 msgid "1 hour ago" @@ -117,7 +118,7 @@ msgstr "ieri" #: js/js.js:711 msgid "{days} days ago" -msgstr "" +msgstr "{days} zile in urma" #: js/js.js:712 msgid "last month" @@ -192,11 +193,11 @@ msgstr "Eroare la modificarea permisiunilor" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Distribuie cu tine si grupul {group} de {owner}" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Distribuie cu tine de {owner}" #: js/share.js:158 msgid "Share with" @@ -233,7 +234,7 @@ msgstr "Data expirării" #: js/share.js:210 msgid "Share via email:" -msgstr "" +msgstr "Distribuie prin email:" #: js/share.js:212 msgid "No people found" @@ -245,7 +246,7 @@ msgstr "Repartajarea nu este permisă" #: js/share.js:275 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Distribuie in {item} si {user}" #: js/share.js:296 msgid "Unshare" @@ -309,11 +310,11 @@ msgstr "Vei primi un mesaj prin care vei putea reseta parola via email" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "Resetarea emailu-lui trimisa." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "Solicitarea nu a reusit" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 #: templates/login.php:28 @@ -384,13 +385,13 @@ msgstr "Avertisment de securitate" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL" #: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau" #: templates/installation.php:32 msgid "" @@ -532,17 +533,17 @@ msgstr "Ieșire" #: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Logare automata respinsa" #: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Daca nu schimbi parola cand de curand , contul tau poate fi conpromis" #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Te rog schimba parola pentru ca, contul tau sa fie securizat din nou." #: templates/login.php:19 msgid "Lost your password?" @@ -570,14 +571,14 @@ msgstr "următorul" #: templates/verify.php:5 msgid "Security Warning!" -msgstr "" +msgstr "Advertisment de Securitate" #: templates/verify.php:6 msgid "" "Please verify your password.
For security reasons you may be " "occasionally asked to enter your password again." -msgstr "" +msgstr "Te rog verifica parola.
Pentru securitate va poate fi cerut ocazional introducerea parolei din nou" #: templates/verify.php:16 msgid "Verify" -msgstr "" +msgstr "Verifica" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index a1bd981cb9b..d61dc617703 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -7,13 +7,14 @@ # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 00:09+0000\n" +"Last-Translator: laurentiucristescu \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" @@ -28,7 +29,7 @@ msgstr "Nicio eroare, fișierul a fost încărcat cu succes" #: ajax/upload.php:21 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: " #: ajax/upload.php:23 msgid "" @@ -56,11 +57,11 @@ msgstr "Eroare la scriere pe disc" msgid "Files" msgstr "Fișiere" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Anulează partajarea" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Șterge" @@ -68,124 +69,124 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} deja exista" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "înlocuire" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "sugerează nume" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "anulare" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" -msgstr "" +msgstr "inlocuit {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" -msgstr "" +msgstr "nedistribuit {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" -msgstr "" +msgstr "Sterse {files}" #: js/files.js:33 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "se generază fișierul ZIP, va dura ceva timp." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes." -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Eroare la încărcare" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Închide" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "În așteptare" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" -msgstr "" +msgstr "{count} fisiere incarcate" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "" +msgstr "Nume de folder invalid. Numele este rezervat pentru OwnCloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" -msgstr "" +msgstr "{count} fisiere scanate" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "eroare la scanarea" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nume" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Dimensiune" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificat" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" -msgstr "" +msgstr "1 folder" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" -msgstr "" +msgstr "{count} foldare" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" -msgstr "" +msgstr "1 fisier" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" -msgstr "" +msgstr "{count} fisiere" #: templates/admin.php:5 msgid "File handling" @@ -233,7 +234,7 @@ msgstr "Dosar" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "de la adresa" #: templates/index.php:35 msgid "Upload" @@ -243,28 +244,28 @@ msgstr "Încarcă" msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Descarcă" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, te rog așteptă." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index bb50657d0c1..8a6967f1039 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"POT-Creation-Date: 2012-12-28 00:20+0100\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 03098019637..823a2e3bdec 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"POT-Creation-Date: 2012-12-28 00:20+0100\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 6eef8177d08..a3187ebb1e8 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"POT-Creation-Date: 2012-12-28 00:20+0100\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 ede827aedaf..87b8656333a 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"POT-Creation-Date: 2012-12-28 00:20+0100\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 56f4c1b25fa..db5e099fcd8 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"POT-Creation-Date: 2012-12-28 00:20+0100\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 c93f0198ea2..4b785107bda 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"POT-Creation-Date: 2012-12-28 00:20+0100\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 542c822edcd..cc72f66e0c5 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"POT-Creation-Date: 2012-12-28 00:20+0100\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 e2ebf0bd789..cb229fa6af5 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"POT-Creation-Date: 2012-12-28 00:20+0100\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 1beb1526e1c..ca0af23788f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"POT-Creation-Date: 2012-12-28 00:20+0100\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 2de8510b34f..79fbcb66c38 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" +"POT-Creation-Date: 2012-12-28 00:20+0100\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 7c575fd5a3b..7058a258c8a 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 12:25+0000\n" +"Last-Translator: Necdet Yücel \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" @@ -47,7 +47,7 @@ msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Kategori türü desteklenmemektedir." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -61,7 +61,7 @@ msgstr "Bu kategori zaten mevcut: " #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Nesne türü desteklenmemektedir." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 @@ -89,55 +89,55 @@ msgstr "Ayarlar" #: js/js.js:704 msgid "seconds ago" -msgstr "" +msgstr "saniye önce" #: js/js.js:705 msgid "1 minute ago" -msgstr "" +msgstr "1 dakika önce" #: js/js.js:706 msgid "{minutes} minutes ago" -msgstr "" +msgstr "{minutes} dakika önce" #: js/js.js:707 msgid "1 hour ago" -msgstr "" +msgstr "1 saat önce" #: js/js.js:708 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} saat önce" #: js/js.js:709 msgid "today" -msgstr "" +msgstr "bugün" #: js/js.js:710 msgid "yesterday" -msgstr "" +msgstr "dün" #: js/js.js:711 msgid "{days} days ago" -msgstr "" +msgstr "{days} gün önce" #: js/js.js:712 msgid "last month" -msgstr "" +msgstr "geçen ay" #: js/js.js:713 msgid "{months} months ago" -msgstr "" +msgstr "{months} ay önce" #: js/js.js:714 msgid "months ago" -msgstr "" +msgstr "ay önce" #: js/js.js:715 msgid "last year" -msgstr "" +msgstr "geçen yıl" #: js/js.js:716 msgid "years ago" -msgstr "" +msgstr "yıl önce" #: js/oc-dialogs.js:126 msgid "Choose" @@ -162,11 +162,11 @@ msgstr "Tamam" #: 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 "" +msgstr "Nesne türü belirtilmemiş." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Hata" @@ -178,7 +178,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " @@ -188,7 +188,7 @@ msgstr "" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "İzinleri değiştirirken hata oluştu" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" @@ -206,11 +206,11 @@ msgstr "ile Paylaş" msgid "Share with link" msgstr "Bağlantı ile paylaş" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Şifre korunması" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Parola" @@ -221,7 +221,7 @@ msgstr "" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Gönder" #: js/share.js:177 msgid "Set expiration date" @@ -229,19 +229,19 @@ msgstr "Son kullanma tarihini ayarla" #: js/share.js:178 msgid "Expiration date" -msgstr "" +msgstr "Son kullanım tarihi" #: js/share.js:210 msgid "Share via email:" -msgstr "" +msgstr "Eposta ile paylaş" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "Kişi bulunamadı" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "Tekrar paylaşmaya izin verilmiyor" #: js/share.js:275 msgid "Shared in {item} with {user}" @@ -253,11 +253,11 @@ msgstr "Paylaşılmayan" #: js/share.js:308 msgid "can edit" -msgstr "" +msgstr "düzenleyebilir" #: js/share.js:310 msgid "access control" -msgstr "" +msgstr "erişim kontrolü" #: js/share.js:313 msgid "create" @@ -265,35 +265,35 @@ msgstr "oluştur" #: js/share.js:316 msgid "update" -msgstr "" +msgstr "güncelle" #: js/share.js:319 msgid "delete" -msgstr "" +msgstr "sil" #: js/share.js:322 msgid "share" -msgstr "" +msgstr "paylaş" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" -msgstr "" +msgstr "Paralo korumalı" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Gönderiliyor..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Eposta gönderildi" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -309,14 +309,14 @@ msgstr "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilec #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "Sıfırlama epostası gönderildi." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "İstek reddedildi!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Kullanıcı adı" @@ -405,44 +405,44 @@ msgstr "" msgid "Create an admin account" msgstr "Bir yönetici hesabı oluşturun" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Gelişmiş" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Veri klasörü" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Veritabanını ayarla" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "kullanılacak" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Kurulumu tamamla" @@ -530,29 +530,29 @@ msgstr "kontrolünüzdeki web servisleri" msgid "Log out" msgstr "Çıkış yap" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Otomatik oturum açma reddedildi!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "hatırla" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Giriş yap" @@ -570,7 +570,7 @@ msgstr "sonraki" #: templates/verify.php:5 msgid "Security Warning!" -msgstr "" +msgstr "Güvenlik Uyarısı!" #: templates/verify.php:6 msgid "" @@ -580,4 +580,4 @@ msgstr "" #: templates/verify.php:16 msgid "Verify" -msgstr "" +msgstr "Doğrula" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index fbd322633df..bfd4390738c 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-05 00:04+0100\n" -"PO-Revision-Date: 2012-12-04 11:50+0000\n" -"Last-Translator: alpere \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 11:23+0000\n" +"Last-Translator: Necdet Yücel \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" @@ -29,7 +29,7 @@ msgstr "Bir hata yok, dosya başarıyla yüklendi" #: ajax/upload.php:21 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." #: ajax/upload.php:23 msgid "" @@ -57,11 +57,11 @@ msgstr "Diske yazılamadı" msgid "Files" msgstr "Dosyalar" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Sil" @@ -69,39 +69,39 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "değiştir" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "Öneri ad" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "iptal" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "değiştirilen {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "geri al" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "paylaşılmamış {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "silinen {files}" @@ -109,84 +109,84 @@ msgstr "silinen {files}" msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "ZIP dosyası oluşturuluyor, biraz sürebilir." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Yükleme hatası" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Kapat" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Bekliyor" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" -msgstr "" +msgstr "{count} dosya yükleniyor" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "" +msgstr "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" -msgstr "" +msgstr "{count} dosya tarandı" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "tararamada hata oluşdu" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Ad" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Boyut" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" -msgstr "" +msgstr "1 dizin" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" -msgstr "" +msgstr "{count} dizin" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" -msgstr "" +msgstr "1 dosya" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" -msgstr "" +msgstr "{count} dosya" #: templates/admin.php:5 msgid "File handling" @@ -234,7 +234,7 @@ msgstr "Klasör" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Bağlantıdan" #: templates/index.php:35 msgid "Upload" @@ -244,28 +244,28 @@ msgstr "Yükle" msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "İndir" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Yüklemeniz çok büyük" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index af47564a459..c48e3908ae6 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Necdet Yücel , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 10:35+0000\n" +"Last-Translator: Necdet Yücel \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" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Şifreleme" -#: templates/settings.php:4 -msgid "Exclude the following file types from encryption" -msgstr "" +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "Şifrelemeyi Etkinleştir" -#: templates/settings.php:5 +#: templates/settings.php:7 msgid "None" -msgstr "" +msgstr "Hiçbiri" -#: templates/settings.php:10 -msgid "Enable Encryption" -msgstr "" +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" +msgstr "Aşağıdaki dosya tiplerini şifrelemeye dahil etme" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index b9f7d56aeb9..bb6c928a053 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Necdet Yücel , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 13:50+0000\n" +"Last-Translator: Necdet Yücel \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" @@ -56,39 +57,39 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Harici Depolama" #: templates/settings.php:8 templates/settings.php:22 msgid "Mount point" -msgstr "" +msgstr "Bağlama Noktası" #: templates/settings.php:9 msgid "Backend" -msgstr "" +msgstr "Yönetici" #: templates/settings.php:10 msgid "Configuration" -msgstr "" +msgstr "Yapılandırma" #: templates/settings.php:11 msgid "Options" -msgstr "" +msgstr "Seçenekler" #: templates/settings.php:12 msgid "Applicable" -msgstr "" +msgstr "Uygulanabilir" #: templates/settings.php:27 msgid "Add mount point" -msgstr "" +msgstr "Bağlama noktası ekle" #: templates/settings.php:85 msgid "None set" -msgstr "" +msgstr "Hiçbiri" #: templates/settings.php:86 msgid "All Users" -msgstr "" +msgstr "Tüm Kullanıcılar" #: templates/settings.php:87 msgid "Groups" @@ -99,7 +100,7 @@ msgid "Users" msgstr "Kullanıcılar" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Sil" @@ -111,10 +112,10 @@ msgstr "" msgid "Allow users to mount their own external storage" msgstr "" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" -msgstr "" +msgstr "SSL kök sertifikaları" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" -msgstr "" +msgstr "Kök Sertifikalarını İçe Aktar" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index d9aaae9d168..1d3dff15348 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Necdet Yücel , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 09:24+0000\n" +"Last-Translator: Necdet Yücel \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" @@ -17,26 +18,26 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 +#: js/settings-personal.js:31 templates/settings-personal.php:7 msgid "Expire all versions" -msgstr "" +msgstr "Tüm sürümleri sona erdir" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "Geçmiş" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Sürümler" -#: templates/settings-personal.php:7 +#: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Bu dosyalarınızın tüm yedek sürümlerini silecektir" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Dosya Sürümleri" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Etkinleştir" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 6489d33ae28..66590bc8eb0 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Necdet Yücel , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 11:03+0000\n" +"Last-Translator: Necdet Yücel \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" @@ -17,49 +18,49 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:287 msgid "Help" msgstr "Yardı" -#: app.php:292 +#: app.php:294 msgid "Personal" msgstr "Kişisel" -#: app.php:297 +#: app.php:299 msgid "Settings" msgstr "Ayarlar" -#: app.php:302 +#: app.php:304 msgid "Users" msgstr "Kullanıcılar" -#: app.php:309 +#: app.php:311 msgid "Apps" -msgstr "" +msgstr "Uygulamalar" -#: app.php:311 +#: app.php:313 msgid "Admin" -msgstr "" +msgstr "Yönetici" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP indirmeleri kapatılmıştır." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Dosyaların birer birer indirilmesi gerekmektedir." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" -msgstr "" +msgstr "Dosyalara dön" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Uygulama etkinleştirilmedi" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" @@ -67,7 +68,7 @@ msgstr "Kimlik doğrulama hatası" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Jetonun süresi geçti. Lütfen sayfayı yenileyin." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" @@ -79,74 +80,74 @@ msgstr "Metin" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Resimler" #: template.php:103 msgid "seconds ago" -msgstr "" +msgstr "saniye önce" #: template.php:104 msgid "1 minute ago" -msgstr "" +msgstr "1 dakika önce" #: template.php:105 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d dakika önce" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "1 saat önce" #: template.php:107 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d saat önce" #: template.php:108 msgid "today" -msgstr "" +msgstr "bugün" #: template.php:109 msgid "yesterday" -msgstr "" +msgstr "dün" #: template.php:110 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d gün önce" #: template.php:111 msgid "last month" -msgstr "" +msgstr "geçen ay" #: template.php:112 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d ay önce" #: template.php:113 msgid "last year" -msgstr "" +msgstr "geçen yıl" #: template.php:114 msgid "years ago" -msgstr "" +msgstr "yıl önce" #: updater.php:75 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s kullanılabilir durumda. Daha fazla bilgi alın" #: updater.php:77 msgid "up to date" -msgstr "" +msgstr "güncel" #: updater.php:80 msgid "updates check is disabled" -msgstr "" +msgstr "güncelleme kontrolü kapalı" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "\"%s\" kategorisi bulunamadı" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 499cd990dac..424615dce38 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 11:45+0000\n" +"Last-Translator: Necdet Yücel \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" @@ -121,27 +121,27 @@ msgstr "" #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Kullanıcı Belgelendirmesi" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Yönetici Belgelendirmesi" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Çevrimiçi Belgelendirme" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Forum" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Hata Takip Sistemi" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Ticari Destek" #: templates/personal.php:8 #, php-format @@ -154,15 +154,15 @@ msgstr "Müşteriler" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Masaüstü İstemcilerini İndir" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Android İstemcisini İndir" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "iOS İstemcisini İndir" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -214,7 +214,7 @@ msgstr "Çevirilere yardım edin" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" @@ -222,7 +222,7 @@ msgstr "" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Sürüm" #: templates/personal.php:65 msgid "" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index da2eff7ebaa..f71a0608229 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Necdet Yücel , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 12:54+0000\n" +"Last-Translator: Necdet Yücel \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" @@ -32,7 +33,7 @@ msgstr "" #: templates/settings.php:15 msgid "Host" -msgstr "" +msgstr "Konak" #: templates/settings.php:15 msgid "" @@ -41,7 +42,7 @@ msgstr "" #: templates/settings.php:16 msgid "Base DN" -msgstr "" +msgstr "Base DN" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -49,7 +50,7 @@ msgstr "" #: templates/settings.php:17 msgid "User DN" -msgstr "" +msgstr "User DN" #: templates/settings.php:17 msgid "" @@ -60,7 +61,7 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "Parola" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." @@ -68,7 +69,7 @@ msgstr "" #: templates/settings.php:19 msgid "User Login Filter" -msgstr "" +msgstr "Kullanıcı Oturum Açma Süzgeci" #: templates/settings.php:19 #, php-format @@ -84,7 +85,7 @@ msgstr "" #: templates/settings.php:20 msgid "User List Filter" -msgstr "" +msgstr "Kullanıcı Liste Süzgeci" #: templates/settings.php:20 msgid "Defines the filter to apply, when retrieving users." @@ -96,7 +97,7 @@ msgstr "" #: templates/settings.php:21 msgid "Group Filter" -msgstr "" +msgstr "Grup Süzgeci" #: templates/settings.php:21 msgid "Defines the filter to apply, when retrieving groups." @@ -108,7 +109,7 @@ msgstr "" #: templates/settings.php:24 msgid "Port" -msgstr "" +msgstr "Port" #: templates/settings.php:25 msgid "Base User Tree" @@ -124,7 +125,7 @@ msgstr "" #: templates/settings.php:28 msgid "Use TLS" -msgstr "" +msgstr "TLS kullan" #: templates/settings.php:28 msgid "Do not use it for SSL connections, it will fail." @@ -180,4 +181,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Yardım" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index 1e5828d9ba9..ca1186efbec 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Necdet Yücel , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"PO-Revision-Date: 2012-12-27 09:06+0000\n" +"Last-Translator: Necdet Yücel \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" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 69067d7ec57..9b7f1815fa3 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -3,7 +3,32 @@ "Personal" => "Kişisel", "Settings" => "Ayarlar", "Users" => "Kullanıcılar", +"Apps" => "Uygulamalar", +"Admin" => "Yönetici", +"ZIP download is turned off." => "ZIP indirmeleri kapatılmıştır.", +"Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", +"Back to Files" => "Dosyalara dön", +"Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür.", +"Application is not enabled" => "Uygulama etkinleştirilmedi", "Authentication error" => "Kimlik doğrulama hatası", +"Token expired. Please reload page." => "Jetonun süresi geçti. Lütfen sayfayı yenileyin.", "Files" => "Dosyalar", -"Text" => "Metin" +"Text" => "Metin", +"Images" => "Resimler", +"seconds ago" => "saniye önce", +"1 minute ago" => "1 dakika önce", +"%d minutes ago" => "%d dakika önce", +"1 hour ago" => "1 saat önce", +"%d hours ago" => "%d saat önce", +"today" => "bugün", +"yesterday" => "dün", +"%d days ago" => "%d gün önce", +"last month" => "geçen ay", +"%d months ago" => "%d ay önce", +"last year" => "geçen yıl", +"years ago" => "yıl önce", +"%s is available. Get more information" => "%s kullanılabilir durumda. Daha fazla bilgi alın", +"up to date" => "güncel", +"updates check is disabled" => "güncelleme kontrolü kapalı", +"Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı" ); diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 463e9c19af9..ee85f723f69 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -23,8 +23,17 @@ "Select an App" => "Aukeratu programa bat", "See application page at apps.owncloud.com" => "Ikusi programen orria apps.owncloud.com en", "-licensed by " => "-lizentziatua ", +"User Documentation" => "Erabiltzaile dokumentazioa", +"Administrator Documentation" => "Administradore dokumentazioa", +"Online Documentation" => "Online dokumentazioa", +"Forum" => "Foroa", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Babes komertziala", "You have used %s of the available %s" => "Dagoeneko %s erabili duzu eskuragarri duzun %setatik", "Clients" => "Bezeroak", +"Download Desktop Clients" => "Deskargatu mahaigainerako bezeroak", +"Download Android Client" => "Deskargatu Android bezeroa", +"Download iOS Client" => "Deskargatu iOS bezeroa", "Password" => "Pasahitza", "Your password was changed" => "Zere pasahitza aldatu da", "Unable to change your password" => "Ezin izan da zure pasahitza aldatu", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko", "Language" => "Hizkuntza", "Help translate" => "Lagundu itzultzen", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko", +"Version" => "Bertsioa", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud komunitateak garatuta, itubruru kodeaAGPL lizentziarekin banatzen da.", "Name" => "Izena", "Groups" => "Taldeak", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index f8acb9b28f2..44dee92a3fc 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -20,7 +20,16 @@ "More Apps" => "Daha fazla App", "Select an App" => "Bir uygulama seçin", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", +"User Documentation" => "Kullanıcı Belgelendirmesi", +"Administrator Documentation" => "Yönetici Belgelendirmesi", +"Online Documentation" => "Çevrimiçi Belgelendirme", +"Forum" => "Forum", +"Bugtracker" => "Hata Takip Sistemi", +"Commercial Support" => "Ticari Destek", "Clients" => "Müşteriler", +"Download Desktop Clients" => "Masaüstü İstemcilerini İndir", +"Download Android Client" => "Android İstemcisini İndir", +"Download iOS Client" => "iOS İstemcisini İndir", "Password" => "Parola", "Your password was changed" => "Şifreniz değiştirildi", "Unable to change your password" => "Parolanız değiştirilemiyor", @@ -33,6 +42,8 @@ "Fill in an email address to enable password recovery" => "Parola sıfırlamayı aktifleştirmek için eposta adresi girin", "Language" => "Dil", "Help translate" => "Çevirilere yardım edin", +"WebDAV" => "WebDAV", +"Version" => "Sürüm", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Geliştirilen TarafownCloud community, the source code is altında lisanslanmıştır AGPL.", "Name" => "Ad", "Groups" => "Gruplar", -- cgit v1.2.3 From 7b72424a39688adbfd382f63899b200a3170884f Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 28 Dec 2012 22:14:32 +0100 Subject: Revert "fixed max possible upload size for files app in admin screen" This reverts commit 7f2208b9a11f608e7d726bf426fe4c2a672e058a. Conflicts: apps/files/admin.php --- apps/files/admin.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'apps') diff --git a/apps/files/admin.php b/apps/files/admin.php index 80fd4f4e4a5..25645a4bcc9 100644 --- a/apps/files/admin.php +++ b/apps/files/admin.php @@ -30,11 +30,8 @@ OCP\User::checkAdminUser(); $htaccessWorking=(getenv('htaccessWorking')=='true'); $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize')); -$upload_max_filesize_possible = OCP\Util::computerFileSize(get_cfg_var('upload_max_filesize')); $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); -$post_max_size_possible = OCP\Util::computerFileSize(get_cfg_var('post_max_size')); $maxUploadFilesize = OCP\Util::humanFileSize(min($upload_max_filesize, $post_max_size)); -$maxUploadFilesizePossible = OCP\Util::humanFileSize(min($upload_max_filesize_possible, $post_max_size_possible)); if($_POST && OC_Util::isCallRegistered()) { if(isset($_POST['maxUploadSize'])) { if(($setMaxSize = OC_Files::setUploadLimit(OCP\Util::computerFileSize($_POST['maxUploadSize']))) !== false) { @@ -60,7 +57,7 @@ $htaccessWritable=is_writable(OC::$SERVERROOT.'/.htaccess'); $tmpl = new OCP\Template( 'files', 'admin' ); $tmpl->assign( 'uploadChangable', $htaccessWorking and $htaccessWritable ); $tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize); -$tmpl->assign( 'maxPossibleUploadSize', $maxUploadFilesizePossible); +$tmpl->assign( 'maxPossibleUploadSize', OCP\Util::humanFileSize(PHP_INT_MAX)); $tmpl->assign( 'allowZipDownload', $allowZipDownload); $tmpl->assign( 'maxZipInputSize', $maxZipInputSize); return $tmpl->fetchPage(); -- cgit v1.2.3 From a3206b4e975082216d143c79edf379703317da20 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 28 Dec 2012 21:57:05 +0100 Subject: only show the max possible upload of 2GB on a 32 bit system. for a 64 bit system we have no such limitation refs #856 Conflicts: apps/files/templates/admin.php --- apps/files/admin.php | 2 ++ apps/files/templates/admin.php | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/files/admin.php b/apps/files/admin.php index 25645a4bcc9..f747f8645f6 100644 --- a/apps/files/admin.php +++ b/apps/files/admin.php @@ -57,6 +57,8 @@ $htaccessWritable=is_writable(OC::$SERVERROOT.'/.htaccess'); $tmpl = new OCP\Template( 'files', 'admin' ); $tmpl->assign( 'uploadChangable', $htaccessWorking and $htaccessWritable ); $tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize); +// max possible makes only sense on a 32 bit system +$tmpl->assign( 'displayMaxPossibleUploadSize', PHP_INT_SIZE===4); $tmpl->assign( 'maxPossibleUploadSize', OCP\Util::humanFileSize(PHP_INT_MAX)); $tmpl->assign( 'allowZipDownload', $allowZipDownload); $tmpl->assign( 'maxZipInputSize', $maxZipInputSize); diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php index 0de12edcba5..ad69b5519d9 100644 --- a/apps/files/templates/admin.php +++ b/apps/files/templates/admin.php @@ -6,7 +6,10 @@ '/> - (t('max. possible: '); echo $_['maxPossibleUploadSize'] ?>)
+ + (t('max. possible: '); echo $_['maxPossibleUploadSize'] ?>) + +
Date: Sat, 29 Dec 2012 00:08:28 +0100 Subject: [tx-robot] updated from transifex --- apps/files_external/l10n/fr.php | 2 ++ apps/files_external/l10n/mk.php | 22 ++++++++++++++- apps/user_ldap/l10n/mk.php | 2 ++ apps/user_ldap/l10n/tr.php | 12 +++++++++ apps/user_webdavauth/l10n/mk.php | 3 +++ core/l10n/fr.php | 1 + l10n/fr/core.po | 9 ++++--- l10n/fr/files_external.po | 17 ++++++------ l10n/mk/files_external.po | 53 +++++++++++++++++++------------------ l10n/mk/user_ldap.po | 11 ++++---- l10n/mk/user_webdavauth.po | 9 ++++--- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/user_ldap.po | 28 ++++++++++---------- 22 files changed, 117 insertions(+), 72 deletions(-) create mode 100644 apps/user_webdavauth/l10n/mk.php (limited to 'apps') diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index 90007aafaaf..2c95e0d8b09 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "Veuillez remplir tous les champs requis", "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", +"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 possible. 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 possible. Contactez votre administrateur système pour l'installer.", "External Storage" => "Stockage externe", "Mount point" => "Point de montage", "Backend" => "Infrastructure", diff --git a/apps/files_external/l10n/mk.php b/apps/files_external/l10n/mk.php index 597623323b0..e3c1e4652b3 100644 --- a/apps/files_external/l10n/mk.php +++ b/apps/files_external/l10n/mk.php @@ -1,6 +1,26 @@ "Пристапот е дозволен", +"Error configuring Dropbox storage" => "Грешка при конфигурација на Dropbox", +"Grant access" => "Дозволи пристап", +"Fill out all required fields" => "Пополни ги сите задолжителни полиња", +"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" => "Надворешно складиште", +"Mount point" => "Точка на монтирање", "Backend" => "Админ", +"Configuration" => "Конфигурација", +"Options" => "Опции", +"Applicable" => "Применливо", +"Add mount point" => "Додади точка на монтирање", +"None set" => "Ништо поставено", +"All Users" => "Сите корисници", "Groups" => "Групи", "Users" => "Корисници", -"Delete" => "Избриши" +"Delete" => "Избриши", +"Enable User External Storage" => "Овозможи надворешни за корисници", +"Allow users to mount their own external storage" => "Дозволи им на корисниците да монтираат свои надворешни дискови", +"SSL root certificates" => "SSL root сертификати", +"Import Root Certificate" => "Увези" ); diff --git a/apps/user_ldap/l10n/mk.php b/apps/user_ldap/l10n/mk.php index f0a348b7421..70a62e71765 100644 --- a/apps/user_ldap/l10n/mk.php +++ b/apps/user_ldap/l10n/mk.php @@ -1,3 +1,5 @@ "Домаќин", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Може да го скокнете протколот освен ако не ви треба SSL. Тогаш ставете ldaps://", "Password" => "Лозинка" ); diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index e9098d7017d..6da65d9832b 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -3,10 +3,22 @@ "Base DN" => "Base DN", "User DN" => "User DN", "Password" => "Parola", +"For anonymous access, leave DN and Password empty." => "Anonim erişim için DN ve Parola alanlarını boş bırakın.", "User Login Filter" => "Kullanıcı Oturum Açma Süzgeci", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "%%uid yer tutucusunu kullanın, örneğin \"uid=%%uid\"", "User List Filter" => "Kullanıcı Liste Süzgeci", +"without any placeholder, e.g. \"objectClass=person\"." => "bir yer tutucusu olmadan, örneğin \"objectClass=person\"", "Group Filter" => "Grup Süzgeci", "Port" => "Port", +"Base User Tree" => "Temel Kullanıcı Ağacı", +"Base Group Tree" => "Temel Grup Ağacı", +"Group-Member association" => "Grup-Üye işbirliği", "Use TLS" => "TLS kullan", +"Do not use it for SSL connections, it will fail." => "SSL bağlantıları ile kullanmayın, başarısız olacaktır.", +"Turn off SSL certificate validation." => "SSL sertifika doğrulamasını kapat.", +"Not recommended, use for testing only." => "Önerilmez, sadece test için kullanın.", +"in bytes" => "byte cinsinden", +"in seconds. A change empties the cache." => "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Kullanıcı adı bölümünü boş bırakın (varsayılan). ", "Help" => "Yardım" ); diff --git a/apps/user_webdavauth/l10n/mk.php b/apps/user_webdavauth/l10n/mk.php new file mode 100644 index 00000000000..245a5101341 --- /dev/null +++ b/apps/user_webdavauth/l10n/mk.php @@ -0,0 +1,3 @@ + "URL: http://" +); diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 3d174b327a2..082bace76ce 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -2,6 +2,7 @@ "User %s shared a file with you" => "L'utilisateur %s a partagé un fichier avec vous", "User %s shared a folder with you" => "L'utilsateur %s a partagé un dossier avec vous", "User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le télécharger ici : %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagé le dossier \"%s\" avec vous. Il est disponible au téléchargement ici : %s", "Category type not provided." => "Type de catégorie non spécifié.", "No category to add?" => "Pas de catégorie à ajouter ?", "This category already exists: " => "Cette catégorie existe déjà : ", diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 58f5d6bd5e7..6dafbd6ca14 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -10,15 +10,16 @@ # , 2012. # Nahir Mohamed , 2012. # , 2012. +# , 2012. # , 2011. # Romain DEP. , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" -"PO-Revision-Date: 2012-12-24 14:22+0000\n" -"Last-Translator: mishka \n" +"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"PO-Revision-Date: 2012-12-28 23:01+0000\n" +"Last-Translator: ouafnico \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,7 +49,7 @@ msgstr "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "L'utilisateur %s a partagé le dossier \"%s\" avec vous. Il est disponible au téléchargement ici : %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 5484aa3b4c9..a8f3ff32125 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Romain DEP. , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"PO-Revision-Date: 2012-12-28 23:07+0000\n" +"Last-Translator: ouafnico \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" @@ -46,14 +47,14 @@ msgstr "Erreur lors de la configuration du support de stockage Google Drive" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas possible. Contactez votre administrateur système pour l'installer." #: lib/config.php:435 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 "" +msgstr "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas possible. Contactez votre administrateur système pour l'installer." #: templates/settings.php:3 msgid "External Storage" @@ -100,7 +101,7 @@ msgid "Users" msgstr "Utilisateurs" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Supprimer" @@ -112,10 +113,10 @@ msgstr "Activer le stockage externe pour les utilisateurs" msgid "Allow users to mount their own external storage" msgstr "Autoriser les utilisateurs à monter leur propre stockage externe" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "Certificats racine SSL" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Importer un certificat racine" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 6fcaf65d89d..586863c6b16 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Georgi Stanojevski , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 13:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"PO-Revision-Date: 2012-12-28 09:20+0000\n" +"Last-Translator: Georgi Stanojevski \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,48 +20,48 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Пристапот е дозволен" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Грешка при конфигурација на Dropbox" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Дозволи пристап" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Пополни ги сите задолжителни полиња" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Ве молам доставите валиден Dropbox клуч и тајна лозинка." #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Грешка при конфигурација на Google Drive" #: lib/config.php:434 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира." #: lib/config.php:435 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 "" +msgstr "Внимание: Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира." #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Надворешно складиште" #: templates/settings.php:8 templates/settings.php:22 msgid "Mount point" -msgstr "" +msgstr "Точка на монтирање" #: templates/settings.php:9 msgid "Backend" @@ -68,27 +69,27 @@ msgstr "Админ" #: templates/settings.php:10 msgid "Configuration" -msgstr "" +msgstr "Конфигурација" #: templates/settings.php:11 msgid "Options" -msgstr "" +msgstr "Опции" #: templates/settings.php:12 msgid "Applicable" -msgstr "" +msgstr "Применливо" #: templates/settings.php:27 msgid "Add mount point" -msgstr "" +msgstr "Додади точка на монтирање" #: templates/settings.php:85 msgid "None set" -msgstr "" +msgstr "Ништо поставено" #: templates/settings.php:86 msgid "All Users" -msgstr "" +msgstr "Сите корисници" #: templates/settings.php:87 msgid "Groups" @@ -99,22 +100,22 @@ msgid "Users" msgstr "Корисници" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Избриши" #: templates/settings.php:124 msgid "Enable User External Storage" -msgstr "" +msgstr "Овозможи надворешни за корисници" #: templates/settings.php:125 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Дозволи им на корисниците да монтираат свои надворешни дискови" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" -msgstr "" +msgstr "SSL root сертификати" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" -msgstr "" +msgstr "Увези" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 206aa2878d7..3b3498bce1c 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Georgi Stanojevski , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 13:32+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"PO-Revision-Date: 2012-12-28 09:25+0000\n" +"Last-Translator: Georgi Stanojevski \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,12 +33,12 @@ msgstr "" #: templates/settings.php:15 msgid "Host" -msgstr "" +msgstr "Домаќин" #: templates/settings.php:15 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Може да го скокнете протколот освен ако не ви треба SSL. Тогаш ставете ldaps://" #: templates/settings.php:16 msgid "Base DN" diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index cdbba67dc8b..20fbb4d7b33 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Georgi Stanojevski , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"PO-Revision-Date: 2012-12-28 09:21+0000\n" +"Last-Translator: Georgi Stanojevski \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 8a6967f1039..0e7bec058d0 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"POT-Creation-Date: 2012-12-29 00:07+0100\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 823a2e3bdec..feabdd922b8 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"POT-Creation-Date: 2012-12-29 00:07+0100\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 a3187ebb1e8..ab55d6a46f0 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"POT-Creation-Date: 2012-12-29 00:07+0100\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 87b8656333a..8a8a5ba2b88 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"POT-Creation-Date: 2012-12-29 00:07+0100\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 db5e099fcd8..71cbe713331 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"POT-Creation-Date: 2012-12-29 00:07+0100\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 4b785107bda..b4e25ae6229 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"POT-Creation-Date: 2012-12-29 00:07+0100\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 cc72f66e0c5..7c5c44e34b8 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"POT-Creation-Date: 2012-12-29 00:07+0100\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 cb229fa6af5..0289d6568d1 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"POT-Creation-Date: 2012-12-29 00:07+0100\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 ca0af23788f..ed05211033d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"POT-Creation-Date: 2012-12-29 00:07+0100\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 79fbcb66c38..96663d5fb4e 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" +"POT-Creation-Date: 2012-12-29 00:07+0100\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/user_ldap.po b/l10n/tr/user_ldap.po index f71a0608229..66d4941f8de 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 12:54+0000\n" +"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"PO-Revision-Date: 2012-12-28 09:39+0000\n" "Last-Translator: Necdet Yücel \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -65,7 +65,7 @@ msgstr "Parola" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Anonim erişim için DN ve Parola alanlarını boş bırakın." #: templates/settings.php:19 msgid "User Login Filter" @@ -81,7 +81,7 @@ msgstr "" #: templates/settings.php:19 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "%%uid yer tutucusunu kullanın, örneğin \"uid=%%uid\"" #: templates/settings.php:20 msgid "User List Filter" @@ -93,7 +93,7 @@ msgstr "" #: templates/settings.php:20 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "bir yer tutucusu olmadan, örneğin \"objectClass=person\"" #: templates/settings.php:21 msgid "Group Filter" @@ -113,15 +113,15 @@ msgstr "Port" #: templates/settings.php:25 msgid "Base User Tree" -msgstr "" +msgstr "Temel Kullanıcı Ağacı" #: templates/settings.php:26 msgid "Base Group Tree" -msgstr "" +msgstr "Temel Grup Ağacı" #: templates/settings.php:27 msgid "Group-Member association" -msgstr "" +msgstr "Grup-Üye işbirliği" #: templates/settings.php:28 msgid "Use TLS" @@ -129,7 +129,7 @@ msgstr "TLS kullan" #: templates/settings.php:28 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "SSL bağlantıları ile kullanmayın, başarısız olacaktır." #: templates/settings.php:29 msgid "Case insensitve LDAP server (Windows)" @@ -137,7 +137,7 @@ msgstr "" #: templates/settings.php:30 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "SSL sertifika doğrulamasını kapat." #: templates/settings.php:30 msgid "" @@ -147,7 +147,7 @@ msgstr "" #: templates/settings.php:30 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "Önerilmez, sadece test için kullanın." #: templates/settings.php:31 msgid "User Display Name Field" @@ -167,17 +167,17 @@ msgstr "" #: templates/settings.php:34 msgid "in bytes" -msgstr "" +msgstr "byte cinsinden" #: templates/settings.php:36 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir." #: templates/settings.php:37 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Kullanıcı adı bölümünü boş bırakın (varsayılan). " #: templates/settings.php:39 msgid "Help" -- cgit v1.2.3 From b5b48428ab359c92c63f41a80e32a17714f914d0 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 28 Dec 2012 19:41:37 -0500 Subject: Replace %2F with / in breadcrumbs --- apps/files/templates/part.breadcrumb.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/files/templates/part.breadcrumb.php b/apps/files/templates/part.breadcrumb.php index f7b1a6076d8..a298f1ccc4b 100644 --- a/apps/files/templates/part.breadcrumb.php +++ b/apps/files/templates/part.breadcrumb.php @@ -1,6 +1,7 @@ + $crumb = $_["breadcrumb"][$i]; + $dir = str_replace('+', '%20', urlencode($crumb["dir"])); + $dir = str_replace('%2F', '/', $dir); ?>
svg" data-dir='' style='background-image:url("")'> -- cgit v1.2.3 From 314dd4bacc480371c03054d50e5e167453cf18fd Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 12 Dec 2012 12:55:29 +0100 Subject: prevent keyboardshortcuts from catching events outside the main doc - e.g. the share popup --- apps/files/js/keyboardshortcuts.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apps') diff --git a/apps/files/js/keyboardshortcuts.js b/apps/files/js/keyboardshortcuts.js index 562755f55b7..cc2b5d42139 100644 --- a/apps/files/js/keyboardshortcuts.js +++ b/apps/files/js/keyboardshortcuts.js @@ -127,6 +127,9 @@ var Files = Files || {}; } Files.bindKeyboardShortcuts = function(document, $) { $(document).keydown(function(event) { //check for modifier keys + if(!$(event.target).is('body')) { + return; + } var preventDefault = false; if ($.inArray(event.keyCode, keys) === -1) keys.push(event.keyCode); if ( -- cgit v1.2.3 From f94c26e5739f28657e8c965dfe4fe6fef14706be Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 16 Dec 2012 15:08:18 -0500 Subject: Change post_write hook to write to prevent creating a duplicate of the original file on upload --- apps/files_versions/appinfo/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/files_versions/appinfo/app.php b/apps/files_versions/appinfo/app.php index 599d302e6e4..afc0a67edba 100644 --- a/apps/files_versions/appinfo/app.php +++ b/apps/files_versions/appinfo/app.php @@ -10,7 +10,7 @@ OCP\App::registerPersonal('files_versions', 'settings-personal'); OCP\Util::addscript('files_versions', 'versions'); // Listen to write signals -OCP\Util::connectHook('OC_Filesystem', 'post_write', "OCA_Versions\Hooks", "write_hook"); +OCP\Util::connectHook('OC_Filesystem', 'write', "OCA_Versions\Hooks", "write_hook"); // Listen to delete and rename signals OCP\Util::connectHook('OC_Filesystem', 'delete', "OCA_Versions\Hooks", "remove_hook"); OCP\Util::connectHook('OC_Filesystem', 'rename', "OCA_Versions\Hooks", "rename_hook"); \ No newline at end of file -- cgit v1.2.3 From 0229b070c970fce52ee4bbcd4a6387015b453421 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 17 Dec 2012 00:10:49 +0100 Subject: [tx-robot] updated from transifex --- apps/user_ldap/l10n/ca.php | 2 ++ l10n/ca/user_ldap.po | 10 +++++----- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 12 files changed, 17 insertions(+), 15 deletions(-) (limited to 'apps') diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index be72912040d..d801ddff631 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments no desitjats. Demaneu a l'administrador del sistema que en desactivi una.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Avís: El mòdul PHP LDAP necessari no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li.", "Host" => "Màquina", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://", "Base DN" => "DN Base", diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 9aea1eefd76..10b45cc3214 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-17 00:09+0100\n" +"PO-Revision-Date: 2012-12-16 09:56+0000\n" +"Last-Translator: rogerc \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" @@ -23,13 +23,13 @@ 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 "" +msgstr "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments no desitjats. Demaneu a l'administrador del sistema que en desactivi una." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Avís: El mòdul PHP LDAP necessari no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 8a902bb2073..613dd56147e 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" +"POT-Creation-Date: 2012-12-17 00:09+0100\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 5f4d3943ada..76eabc2af0b 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" +"POT-Creation-Date: 2012-12-17 00:09+0100\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 120ffd9f0fd..58ea8851adc 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" +"POT-Creation-Date: 2012-12-17 00:09+0100\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 bde40e687e7..847da254588 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" +"POT-Creation-Date: 2012-12-17 00:09+0100\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 f7a9827d6e6..bdd7e9541b4 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" +"POT-Creation-Date: 2012-12-17 00:09+0100\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 f4e66622188..7812d7e24f8 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" +"POT-Creation-Date: 2012-12-17 00:09+0100\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 5789dadae33..41bbcb03c49 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" +"POT-Creation-Date: 2012-12-17 00:09+0100\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 81cbf6bb55a..05f78285e08 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" +"POT-Creation-Date: 2012-12-17 00:09+0100\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 60a4f5340f6..9b7639b72d8 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" +"POT-Creation-Date: 2012-12-17 00:09+0100\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 47d3ac6d725..48295fa2146 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" +"POT-Creation-Date: 2012-12-17 00:09+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -- cgit v1.2.3 From e6de09c0a9beb639ad6e2a1bb30319bfe38dc8a5 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Mon, 17 Dec 2012 14:46:57 +0100 Subject: check if admin --- apps/files_encryption/settings.php | 4 +++- apps/files_external/settings.php | 2 ++ apps/user_ldap/settings.php | 3 +++ apps/user_webdavauth/settings.php | 2 ++ 4 files changed, 10 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/files_encryption/settings.php b/apps/files_encryption/settings.php index 6b2b03211e2..94ff5ab94ba 100644 --- a/apps/files_encryption/settings.php +++ b/apps/files_encryption/settings.php @@ -6,6 +6,8 @@ * See the COPYING-README file. */ +OC_Util::checkAdminUser(); + $tmpl = new OCP\Template( 'files_encryption', 'settings'); $blackList=explode(',', OCP\Config::getAppValue('files_encryption', 'type_blacklist', @@ -17,4 +19,4 @@ $tmpl->assign('encryption_enabled', $enabled); OCP\Util::addscript('files_encryption', 'settings'); OCP\Util::addscript('core', 'multiselect'); -return $tmpl->fetchPage(); \ No newline at end of file +return $tmpl->fetchPage(); diff --git a/apps/files_external/settings.php b/apps/files_external/settings.php index 2f239f7cb95..cd0bfa99585 100644 --- a/apps/files_external/settings.php +++ b/apps/files_external/settings.php @@ -20,6 +20,8 @@ * License along with this library. If not, see . */ +OC_Util::checkAdminUser(); + OCP\Util::addScript('files_external', 'settings'); OCP\Util::addscript('3rdparty', 'chosen/chosen.jquery.min'); OCP\Util::addStyle('files_external', 'settings'); diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index 2ee936d29a8..58ec8e7f7a4 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -20,6 +20,9 @@ * License along with this library. If not, see . * */ + +OC_Util::checkAdminUser(); + $params = array('ldap_host', 'ldap_port', 'ldap_dn', 'ldap_agent_password', 'ldap_base', 'ldap_base_users', 'ldap_base_groups', 'ldap_userlist_filter', 'ldap_login_filter', 'ldap_group_filter', 'ldap_display_name', 'ldap_group_display_name', 'ldap_tls', 'ldap_turn_off_cert_check', 'ldap_nocase', 'ldap_quota_def', 'ldap_quota_attr', 'ldap_email_attr', 'ldap_group_member_assoc_attribute', 'ldap_cache_ttl', 'home_folder_naming_rule'); OCP\Util::addscript('user_ldap', 'settings'); diff --git a/apps/user_webdavauth/settings.php b/apps/user_webdavauth/settings.php index 910073c7841..41d7fa51cd2 100755 --- a/apps/user_webdavauth/settings.php +++ b/apps/user_webdavauth/settings.php @@ -21,6 +21,8 @@ * */ +OC_Util::checkAdminUser(); + if($_POST) { if(isset($_POST['webdav_url'])) { -- cgit v1.2.3 From 66e57f5fb1ed509761dededfecdf2ebc63738453 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 30 Dec 2012 00:05:52 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/nb_NO.php | 3 ++ apps/files_sharing/l10n/hu_HU.php | 5 +- apps/user_ldap/l10n/hu_HU.php | 37 +++++++++++++ apps/user_webdavauth/l10n/es.php | 3 +- apps/user_webdavauth/l10n/es_AR.php | 3 +- apps/user_webdavauth/l10n/fr.php | 2 +- apps/user_webdavauth/l10n/nb_NO.php | 3 ++ core/l10n/nb_NO.php | 6 +++ l10n/ar/settings.po | 36 ++++++++----- l10n/bg_BG/settings.po | 34 +++++++----- l10n/ca/settings.po | 36 ++++++++----- l10n/cs_CZ/settings.po | 36 ++++++++----- l10n/da/settings.po | 36 ++++++++----- l10n/de/settings.po | 36 ++++++++----- l10n/de_DE/settings.po | 36 ++++++++----- l10n/el/settings.po | 36 ++++++++----- l10n/eo/settings.po | 34 +++++++----- l10n/es/settings.po | 59 +++++++++++--------- l10n/es/user_webdavauth.po | 11 ++-- l10n/es_AR/settings.po | 58 +++++++++++--------- l10n/es_AR/user_webdavauth.po | 11 ++-- l10n/et_EE/settings.po | 34 +++++++----- l10n/eu/settings.po | 36 ++++++++----- l10n/fa/settings.po | 34 +++++++----- l10n/fi_FI/settings.po | 36 ++++++++----- l10n/fr/settings.po | 36 ++++++++----- l10n/fr/user_webdavauth.po | 9 ++-- l10n/gl/settings.po | 34 +++++++----- l10n/he/settings.po | 36 ++++++++----- l10n/hi/settings.po | 30 +++++++---- l10n/hr/settings.po | 34 +++++++----- l10n/hu_HU/files_sharing.po | 18 +++---- l10n/hu_HU/settings.po | 104 +++++++++++++++++++----------------- l10n/hu_HU/user_ldap.po | 76 +++++++++++++------------- l10n/ia/settings.po | 34 +++++++----- l10n/id/settings.po | 34 +++++++----- l10n/is/settings.po | 30 +++++++---- l10n/it/settings.po | 36 ++++++++----- l10n/ja_JP/settings.po | 36 ++++++++----- l10n/ka_GE/settings.po | 34 +++++++----- l10n/ko/settings.po | 34 +++++++----- l10n/ku_IQ/settings.po | 30 +++++++---- l10n/lb/settings.po | 34 +++++++----- l10n/lt_LT/settings.po | 34 +++++++----- l10n/lv/settings.po | 34 +++++++----- l10n/mk/settings.po | 36 ++++++++----- l10n/ms_MY/settings.po | 34 +++++++----- l10n/nb_NO/core.po | 77 +++++++++++++------------- l10n/nb_NO/files.po | 85 ++++++++++++++--------------- l10n/nb_NO/lib.po | 37 ++++++------- l10n/nb_NO/settings.po | 53 ++++++++++-------- l10n/nb_NO/user_webdavauth.po | 9 ++-- l10n/nl/settings.po | 36 ++++++++----- l10n/nn_NO/settings.po | 32 ++++++----- l10n/oc/settings.po | 34 +++++++----- l10n/pl/settings.po | 34 +++++++----- l10n/pl_PL/settings.po | 30 +++++++---- l10n/pt_BR/settings.po | 34 +++++++----- l10n/pt_PT/settings.po | 36 ++++++++----- l10n/ro/settings.po | 34 +++++++----- l10n/ru/settings.po | 36 ++++++++----- l10n/ru_RU/settings.po | 36 ++++++++----- l10n/si_LK/settings.po | 34 +++++++----- l10n/sk_SK/settings.po | 34 +++++++----- l10n/sl/settings.po | 34 +++++++----- l10n/sq/settings.po | 30 +++++++---- l10n/sr/settings.po | 34 +++++++----- l10n/sr@latin/settings.po | 30 +++++++---- l10n/sv/settings.po | 36 ++++++++----- l10n/ta_LK/settings.po | 34 +++++++----- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 28 ++++++---- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/settings.po | 34 +++++++----- l10n/tr/settings.po | 36 ++++++++----- l10n/uk/settings.po | 36 ++++++++----- l10n/vi/settings.po | 34 +++++++----- l10n/zh_CN.GB2312/settings.po | 34 +++++++----- l10n/zh_CN/settings.po | 36 ++++++++----- l10n/zh_HK/settings.po | 30 +++++++---- l10n/zh_TW/settings.po | 34 +++++++----- l10n/zu_ZA/settings.po | 30 +++++++---- lib/l10n/nb_NO.php | 8 ++- settings/l10n/ar.php | 2 - settings/l10n/bg_BG.php | 2 - settings/l10n/ca.php | 2 - settings/l10n/cs_CZ.php | 2 - settings/l10n/da.php | 2 - settings/l10n/de.php | 2 - settings/l10n/de_DE.php | 2 - settings/l10n/el.php | 2 - settings/l10n/eo.php | 2 - settings/l10n/es.php | 14 ++++- settings/l10n/es_AR.php | 14 ++++- settings/l10n/et_EE.php | 2 - settings/l10n/eu.php | 2 - settings/l10n/fa.php | 2 - settings/l10n/fi_FI.php | 2 - settings/l10n/fr.php | 2 - settings/l10n/gl.php | 2 - settings/l10n/he.php | 2 - settings/l10n/hr.php | 2 - settings/l10n/hu_HU.php | 50 ++++++++++++----- settings/l10n/ia.php | 2 - settings/l10n/id.php | 2 - settings/l10n/it.php | 2 - settings/l10n/ja_JP.php | 2 - settings/l10n/ka_GE.php | 2 - settings/l10n/ko.php | 2 - settings/l10n/lb.php | 2 - settings/l10n/lt_LT.php | 2 - settings/l10n/lv.php | 2 - settings/l10n/mk.php | 2 - settings/l10n/ms_MY.php | 2 - settings/l10n/nb_NO.php | 11 +++- settings/l10n/nl.php | 2 - settings/l10n/nn_NO.php | 1 - settings/l10n/oc.php | 2 - settings/l10n/pl.php | 2 - settings/l10n/pt_BR.php | 2 - settings/l10n/pt_PT.php | 2 - settings/l10n/ro.php | 2 - settings/l10n/ru.php | 2 - settings/l10n/ru_RU.php | 2 - settings/l10n/si_LK.php | 2 - settings/l10n/sk_SK.php | 2 - settings/l10n/sl.php | 2 - settings/l10n/sr.php | 2 - settings/l10n/sv.php | 2 - settings/l10n/ta_LK.php | 2 - settings/l10n/th_TH.php | 2 - settings/l10n/tr.php | 2 - settings/l10n/uk.php | 2 - settings/l10n/vi.php | 2 - settings/l10n/zh_CN.GB2312.php | 2 - settings/l10n/zh_CN.php | 2 - settings/l10n/zh_TW.php | 2 - 144 files changed, 1704 insertions(+), 1189 deletions(-) create mode 100644 apps/user_ldap/l10n/hu_HU.php create mode 100644 apps/user_webdavauth/l10n/nb_NO.php (limited to 'apps') diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index e5615a1c29b..db54660ab1e 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -17,6 +17,7 @@ "undo" => "angre", "replaced {new_name} with {old_name}" => "erstatt {new_name} med {old_name}", "deleted {files}" => "slettet {files}", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt.", "generating ZIP-file, it may take some time." => "opprettet ZIP-fil, dette kan ta litt tid", "Unable to upload your file as it is a directory or has 0 bytes" => "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes", "Upload Error" => "Opplasting feilet", @@ -26,6 +27,7 @@ "{count} files uploading" => "{count} filer laster opp", "Upload cancelled." => "Opplasting avbrutt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", +"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud.", "{count} files scanned" => "{count} filer lest inn", "error while scanning" => "feil under skanning", "Name" => "Navn", @@ -46,6 +48,7 @@ "New" => "Ny", "Text file" => "Tekstfil", "Folder" => "Mappe", +"From link" => "Fra link", "Upload" => "Last opp", "Cancel upload" => "Avbryt opplasting", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", diff --git a/apps/files_sharing/l10n/hu_HU.php b/apps/files_sharing/l10n/hu_HU.php index 881b5afd817..be706461d58 100644 --- a/apps/files_sharing/l10n/hu_HU.php +++ b/apps/files_sharing/l10n/hu_HU.php @@ -1,6 +1,3 @@ "Méret", -"Modified" => "Módosítva", -"Delete all" => "Összes törlése", -"Delete" => "Törlés" +"Password" => "Jelszó" ); diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php new file mode 100644 index 00000000000..14eb5837ceb --- /dev/null +++ b/apps/user_ldap/l10n/hu_HU.php @@ -0,0 +1,37 @@ +Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Figyelem: a szükséges PHP LDAP modul nincs telepítve. Enélkül az LDAP azonosítás nem fog működni. Kérje meg a rendszergazdát, hogy telepítse a szükséges modult!", +"Host" => "Kiszolgáló", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "A protokoll előtag elhagyható, kivéve, ha SSL-t kíván használni. Ebben az esetben kezdje így: ldaps://", +"Base DN" => "DN-gyökér", +"You can specify Base DN for users and groups in the Advanced tab" => "A Haladó fülre kattintva külön DN-gyökér állítható be a felhasználók és a csoportok számára", +"User DN" => "A kapcsolódó felhasználó DN-je", +"Password" => "Jelszó", +"For anonymous access, leave DN and Password empty." => "Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!", +"User Login Filter" => "Szűrő a bejelentkezéshez", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Ez a szűrő érvényes a bejelentkezés megkísérlésekor. Ekkor az %%uid változó helyére a bejelentkezési név kerül.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "használja az %%uid változót, pl. \"uid=%%uid\"", +"User List Filter" => "A felhasználók szűrője", +"Defines the filter to apply, when retrieving users." => "Ez a szűrő érvényes a felhasználók listázásakor.", +"without any placeholder, e.g. \"objectClass=person\"." => "itt ne használjon változót, pl. \"objectClass=person\".", +"Group Filter" => "A csoportok szűrője", +"Defines the filter to apply, when retrieving groups." => "Ez a szűrő érvényes a csoportok listázásakor.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "itt ne használjunk változót, pl. \"objectClass=posixGroup\".", +"Base User Tree" => "A felhasználói fa gyökere", +"Base Group Tree" => "A csoportfa gyökere", +"Group-Member association" => "A csoporttagság attribútuma", +"Use TLS" => "Használjunk TLS-t", +"Do not use it for SSL connections, it will fail." => "Ne használjuk SSL-kapcsolat esetén, mert nem fog működni!", +"Case insensitve LDAP server (Windows)" => "Az LDAP-kiszolgáló nem tesz különbséget a kis- és nagybetűk között (Windows)", +"Turn off SSL certificate validation." => "Ne ellenőrizzük az SSL-tanúsítvány érvényességét", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Ha a kapcsolat csak ezzel a beállítással működik, akkor importálja az LDAP-kiszolgáló SSL tanúsítványát az ownCloud kiszolgálóra!", +"Not recommended, use for testing only." => "Nem javasolt, csak tesztelésre érdemes használni.", +"User Display Name Field" => "A felhasználónév mezője", +"The LDAP attribute to use to generate the user`s ownCloud name." => "Ebből az LDAP attribútumból képződik a felhasználó elnevezése, ami megjelenik az ownCloudban.", +"Group Display Name Field" => "A csoport nevének mezője", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "Ebből az LDAP attribútumból képződik a csoport elnevezése, ami megjelenik az ownCloudban.", +"in bytes" => "bájtban", +"in seconds. A change empties the cache." => "másodpercben. A változtatás törli a cache tartalmát.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Hagyja üresen, ha a felhasználónevet kívánja használni. Ellenkező esetben adjon meg egy LDAP/AD attribútumot!", +"Help" => "Súgó" +); diff --git a/apps/user_webdavauth/l10n/es.php b/apps/user_webdavauth/l10n/es.php index 9bd32954b05..3975b04cbc1 100644 --- a/apps/user_webdavauth/l10n/es.php +++ b/apps/user_webdavauth/l10n/es.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviará al usuario las interpretaciones 401 y 403 a esta URL como incorrectas y todas las otras credenciales como correctas" ); diff --git a/apps/user_webdavauth/l10n/es_AR.php b/apps/user_webdavauth/l10n/es_AR.php index 81f2ea1e578..0606d3a8eb4 100644 --- a/apps/user_webdavauth/l10n/es_AR.php +++ b/apps/user_webdavauth/l10n/es_AR.php @@ -1,3 +1,4 @@ "URL de WebDAV: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviará las credenciales a esta dirección, si son interpretadas como http 401 o http 403 las credenciales son erroneas; todos los otros códigos indican que las credenciales son correctas." ); diff --git a/apps/user_webdavauth/l10n/fr.php b/apps/user_webdavauth/l10n/fr.php index 759d45b230e..339931c7cee 100644 --- a/apps/user_webdavauth/l10n/fr.php +++ b/apps/user_webdavauth/l10n/fr.php @@ -1,3 +1,3 @@ "URL WebDAV : http://" +"URL: http://" => "URL : http://" ); diff --git a/apps/user_webdavauth/l10n/nb_NO.php b/apps/user_webdavauth/l10n/nb_NO.php new file mode 100644 index 00000000000..245a5101341 --- /dev/null +++ b/apps/user_webdavauth/l10n/nb_NO.php @@ -0,0 +1,3 @@ + "URL: http://" +); diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 7382a1e8398..4069e297a7b 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -6,10 +6,13 @@ "seconds ago" => "sekunder siden", "1 minute ago" => "1 minutt siden", "{minutes} minutes ago" => "{minutes} minutter siden", +"1 hour ago" => "1 time siden", +"{hours} hours ago" => "{hours} timer siden", "today" => "i dag", "yesterday" => "i går", "{days} days ago" => "{days} dager siden", "last month" => "forrige måned", +"{months} months ago" => "{months} måneder siden", "months ago" => "måneder siden", "last year" => "forrige år", "years ago" => "år siden", @@ -24,6 +27,7 @@ "Share with link" => "Del med link", "Password protect" => "Passordbeskyttet", "Password" => "Passord", +"Send" => "Send", "Set expiration date" => "Set utløpsdato", "Expiration date" => "Utløpsdato", "Share via email:" => "Del på epost", @@ -37,6 +41,8 @@ "share" => "del", "Password protected" => "Passordbeskyttet", "Error setting expiration date" => "Kan ikke sette utløpsdato", +"Sending ..." => "Sender...", +"Email sent" => "E-post sendt", "ownCloud password reset" => "Tilbakestill ownCloud passord", "Use the following link to reset your password: {link}" => "Bruk følgende lenke for å tilbakestille passordet ditt: {link}", "You will receive a link to reset your password via Email." => "Du burde motta detaljer om å tilbakestille passordet ditt via epost.", diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index e3ac2066d0d..a800f4eef21 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:11+0100\n" -"PO-Revision-Date: 2012-12-23 18:36+0000\n" -"Last-Translator: aboodilankaboot \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -163,7 +163,7 @@ msgstr "تحميل عميل آندرويد" msgid "Download iOS Client" msgstr "تحميل عميل آي أو أس" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "كلمات السر" @@ -233,11 +233,11 @@ msgid "" "License\">AGPL." msgstr "طوّر من قبل ownCloud مجتمع, الـ النص المصدري مرخص بموجب رخصة أفيرو العمومية." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "الاسم" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "مجموعات" @@ -246,21 +246,29 @@ msgid "Create" msgstr "انشئ" #: templates/users.php:35 -msgid "Default Quota" -msgstr "الحصة النسبية الإفتراضية" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "شيء آخر" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "مدير المجموعة" -#: templates/users.php:82 -msgid "Quota" -msgstr "حصه" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "حذف" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 8350e56bea4..37e75b3725c 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -163,7 +163,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Парола" @@ -233,11 +233,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Име" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Групи" @@ -246,21 +246,29 @@ msgid "Create" msgstr "Ново" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Квота по подразбиране" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Друго" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" -msgstr "Квота" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Изтриване" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index da4cfbd6279..03cdc399cfb 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 09:18+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -165,7 +165,7 @@ msgstr " Baixa el client per Android" msgid "Download iOS Client" msgstr "Baixa el client per iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Contrasenya" @@ -235,11 +235,11 @@ msgid "" "License\">AGPL." msgstr "Desenvolupat per la comunitat ownCloud, el codi font té llicència AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nom" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grups" @@ -248,21 +248,29 @@ msgid "Create" msgstr "Crea" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Quota per defecte" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Altre" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grup Admin" -#: templates/users.php:82 -msgid "Quota" -msgstr "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Suprimeix" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 153ae93c6e1..d822114feb6 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 19:53+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -166,7 +166,7 @@ msgstr "Stáhnout klienta pro android" msgid "Download iOS Client" msgstr "Stáhnout klienta pro iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Heslo" @@ -236,11 +236,11 @@ msgid "" "License\">AGPL." msgstr "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Jméno" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Skupiny" @@ -249,21 +249,29 @@ msgid "Create" msgstr "Vytvořit" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Výchozí kvóta" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Jiná" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Správa skupiny" -#: templates/users.php:82 -msgid "Quota" -msgstr "Kvóta" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Smazat" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 95a859329a8..a4196d62a07 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-26 00:11+0100\n" -"PO-Revision-Date: 2012-12-25 13:45+0000\n" -"Last-Translator: cronner \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -170,7 +170,7 @@ msgstr "Hent Android Klient" msgid "Download iOS Client" msgstr "Hent iOS Klient" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Kodeord" @@ -240,11 +240,11 @@ msgid "" "License\">AGPL." msgstr "Udviklet af ownClouds community, og kildekoden er underlagt licensen AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Navn" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupper" @@ -253,21 +253,29 @@ msgid "Create" msgstr "Ny" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Standard kvote" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Andet" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Gruppe Administrator" -#: templates/users.php:82 -msgid "Quota" -msgstr "Kvote" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Slet" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 019a9c65ce0..1343f1761fe 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 14:02+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -177,7 +177,7 @@ msgstr "Android-Client herunterladen" msgid "Download iOS Client" msgstr "iOS-Client herunterladen" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Passwort" @@ -247,11 +247,11 @@ msgid "" "License\">AGPL." msgstr "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Name" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Gruppen" @@ -260,21 +260,29 @@ msgid "Create" msgstr "Anlegen" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Standard-Quota" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Andere" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Gruppenadministrator" -#: templates/users.php:82 -msgid "Quota" -msgstr "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index d95b7bb40db..8e49c577c50 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 14:01+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -177,7 +177,7 @@ msgstr "Android-Client herunterladen" msgid "Download iOS Client" msgstr "iOS-Client herunterladen" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Passwort" @@ -247,11 +247,11 @@ msgid "" "License\">AGPL." msgstr "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Name" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Gruppen" @@ -260,21 +260,29 @@ msgid "Create" msgstr "Anlegen" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Standard-Quota" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Andere" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Gruppenadministrator" -#: templates/users.php:82 -msgid "Quota" -msgstr "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Löschen" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 4b27d019760..83f4985217b 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 13:06+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -171,7 +171,7 @@ msgstr "Λήψη Προγράμματος Android" msgid "Download iOS Client" msgstr "Λήψη Προγράμματος iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Συνθηματικό" @@ -241,11 +241,11 @@ msgid "" "License\">AGPL." msgstr "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Όνομα" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Ομάδες" @@ -254,21 +254,29 @@ msgid "Create" msgstr "Δημιουργία" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Προεπιλεγμένο Όριο" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Άλλα" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Ομάδα Διαχειριστών" -#: templates/users.php:82 -msgid "Quota" -msgstr "Σύνολο Χώρου" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Διαγραφή" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 3a49fa3de2d..d57fded0283 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -162,7 +162,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Pasvorto" @@ -232,11 +232,11 @@ msgid "" "License\">AGPL." msgstr "Ellaborita de la komunumo de ownCloud, la fontokodo publikas laŭ la permesilo AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nomo" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupoj" @@ -245,21 +245,29 @@ msgid "Create" msgstr "Krei" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Defaŭlta kvoto" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Alia" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grupadministranto" -#: templates/users.php:82 -msgid "Quota" -msgstr "Kvoto" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Forigi" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index edd67031275..e6ce79afba7 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -9,6 +9,7 @@ # , 2011-2012. # , 2011. # oSiNaReF <>, 2012. +# , 2012. # Raul Fernandez Garcia , 2012. # , 2012. # , 2011. @@ -18,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -128,27 +129,27 @@ msgstr "-licenciado por AGPL." msgstr "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nombre" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupos" @@ -254,21 +255,29 @@ msgid "Create" msgstr "Crear" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Cuota predeterminada" +msgid "Default Storage" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Otro" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grupo admin" -#: templates/users.php:82 -msgid "Quota" -msgstr "Cuota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index e6ff0da90b0..8eec33bde17 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # Art O. Pal , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 19:17+0000\n" +"Last-Translator: pggx999 \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" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud enviará al usuario las interpretaciones 401 y 403 a esta URL como incorrectas y todas las otras credenciales como correctas" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index d0650773d3c..9946b227e27 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -119,27 +119,27 @@ msgstr "-licenciado por " #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Documentación de Usuario" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Documentación de Administrador" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Documentación en linea" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Foro" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Informar errores" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Soporte comercial" #: templates/personal.php:8 #, php-format @@ -152,17 +152,17 @@ msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Descargar clientes de escritorio" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Descargar cliente de Android" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Descargar cliente de iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Contraseña" @@ -212,15 +212,15 @@ msgstr "Ayudanos a traducir" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Versión" #: templates/personal.php:65 msgid "" @@ -232,11 +232,11 @@ msgid "" "License\">AGPL." msgstr "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nombre" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupos" @@ -245,21 +245,29 @@ msgid "Create" msgstr "Crear" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Cuota predeterminada" +msgid "Default Storage" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Otro" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grupo Administrador" -#: templates/users.php:82 -msgid "Quota" -msgstr "Cuota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Borrar" diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po index e3165d3da3d..5eb7c5b084b 100644 --- a/l10n/es_AR/user_webdavauth.po +++ b/l10n/es_AR/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Agustin Ferrario , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 21:34+0000\n" +"Last-Translator: Agustin Ferrario \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud enviará las credenciales a esta dirección, si son interpretadas como http 401 o http 403 las credenciales son erroneas; todos los otros códigos indican que las credenciales son correctas." diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 0212408126c..42f157b4e7c 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -162,7 +162,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Parool" @@ -232,11 +232,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nimi" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupid" @@ -245,21 +245,29 @@ msgid "Create" msgstr "Lisa" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Vaikimisi kvoot" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Muu" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grupi admin" -#: templates/users.php:82 -msgid "Quota" -msgstr "Mahupiir" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Kustuta" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 88627e3567b..cf8c43c710b 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 20:53+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,7 +163,7 @@ msgstr "Deskargatu Android bezeroa" msgid "Download iOS Client" msgstr "Deskargatu iOS bezeroa" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Pasahitza" @@ -233,11 +233,11 @@ msgid "" "License\">AGPL." msgstr "ownCloud komunitateak garatuta, itubruru kodeaAGPL lizentziarekin banatzen da." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Izena" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Taldeak" @@ -246,21 +246,29 @@ msgid "Create" msgstr "Sortu" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Kuota lehentsia" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Besteak" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Talde administradorea" -#: templates/users.php:82 -msgid "Quota" -msgstr "Kuota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Ezabatu" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 3d7035f89a2..55f1ea97204 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -164,7 +164,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "گذرواژه" @@ -234,11 +234,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "نام" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "گروه ها" @@ -247,21 +247,29 @@ msgid "Create" msgstr "ایجاد کردن" #: templates/users.php:35 -msgid "Default Quota" -msgstr "سهم پیش فرض" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "سایر" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" -msgstr "سهم" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "پاک کردن" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 18876d4aa6b..0b52b4e2f60 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 17:40+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -163,7 +163,7 @@ msgstr "Lataa Android-sovellus" msgid "Download iOS Client" msgstr "Lataa iOS-sovellus" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Salasana" @@ -233,11 +233,11 @@ msgid "" "License\">AGPL." msgstr "Kehityksestä on vastannut ownCloud-yhteisö, lähdekoodi on julkaistu lisenssin AGPL alaisena." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nimi" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Ryhmät" @@ -246,21 +246,29 @@ msgid "Create" msgstr "Luo" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Oletuskiintiö" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Muu" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Ryhmän ylläpitäjä" -#: templates/users.php:82 -msgid "Quota" -msgstr "Kiintiö" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Poista" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 3d95e66bbea..1076e0b9797 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" -"PO-Revision-Date: 2012-12-24 14:10+0000\n" -"Last-Translator: mishka \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -174,7 +174,7 @@ msgstr "Télécharger le client Android" msgid "Download iOS Client" msgstr "Télécharger le client iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Mot de passe" @@ -244,11 +244,11 @@ msgid "" "License\">AGPL." msgstr "Développé par la communauté ownCloud, le code source est publié sous license AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nom" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Groupes" @@ -257,21 +257,29 @@ msgid "Create" msgstr "Créer" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Quota par défaut" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Autre" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Groupe Admin" -#: templates/users.php:82 -msgid "Quota" -msgstr "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Supprimer" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index 4d2c6a78376..4917efe0505 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Robert Di Rosa <>, 2012. # Romain DEP. , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-28 23:13+0000\n" +"Last-Translator: ouafnico \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" @@ -21,7 +22,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL : http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 234468f6e0a..e2ef6571062 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -162,7 +162,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Contrasinal" @@ -232,11 +232,11 @@ msgid "" "License\">AGPL." msgstr "Desenvolvido pola comunidade ownCloud, o código fonte está baixo a licenza AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nome" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupos" @@ -245,21 +245,29 @@ msgid "Create" msgstr "Crear" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Cota por omisión" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Outro" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grupo Admin" -#: templates/users.php:82 -msgid "Quota" -msgstr "Cota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Borrar" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 1fe9d7e737f..4dd6b3fe8d4 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" -"PO-Revision-Date: 2012-12-26 14:12+0000\n" -"Last-Translator: Gilad Naaman \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,7 +164,7 @@ msgstr "הורד תוכנה לאנדרואיד" msgid "Download iOS Client" msgstr "הורד תוכנה לiOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "ססמה" @@ -234,11 +234,11 @@ msgid "" "License\">AGPL." msgstr "פותח על די קהילתownCloud, קוד המקור מוגן ברישיון AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "שם" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "קבוצות" @@ -247,21 +247,29 @@ msgid "Create" msgstr "יצירה" #: templates/users.php:35 -msgid "Default Quota" -msgstr "מכסת בררת המחדל" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "אחר" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "מנהל הקבוצה" -#: templates/users.php:82 -msgid "Quota" -msgstr "מכסה" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "מחיקה" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 76241d2e5a1..5bf27381000 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -160,7 +160,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "पासवर्ड" @@ -230,11 +230,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "" @@ -243,21 +243,29 @@ msgid "Create" msgstr "" #: templates/users.php:35 -msgid "Default Quota" +msgid "Default Storage" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index b46de54ca70..530e4e42e1e 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -163,7 +163,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Lozinka" @@ -233,11 +233,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Ime" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupe" @@ -246,21 +246,29 @@ msgid "Create" msgstr "Izradi" #: templates/users.php:35 -msgid "Default Quota" -msgstr "standardni kvota" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "ostali" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grupa Admin" -#: templates/users.php:82 -msgid "Quota" -msgstr "kvota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Obriši" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 4379b279a64..4270813b4c0 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 17:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,30 +20,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Jelszó" #: templates/authenticate.php:6 msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:22 templates/public.php:38 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:37 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:43 msgid "web services under your control" msgstr "" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index fcc66c8ce64..c1f721a18a4 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -25,15 +25,15 @@ msgstr "Nem tölthető le a lista az App Store-ból" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "A csoport már létezik" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "A csoport nem hozható létre" #: ajax/enableapp.php:12 msgid "Could not enable app. " -msgstr "" +msgstr "A program nem aktiválható." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -53,15 +53,15 @@ msgstr "Érvénytelen kérés" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "A csoport nem törölhető" #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "Hitelesítési hiba" +msgstr "Azonosítási hiba" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "" +msgstr "A felhasználó nem törölhető" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -69,17 +69,17 @@ msgstr "A nyelv megváltozott" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Adminisztrátorok nem távolíthatják el magukat az admin csoportból." #: ajax/togglegroups.php:28 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "A felhasználó nem adható hozzá ehhez a csoporthoz: %s" #: ajax/togglegroups.php:34 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "A felhasználó nem távolítható el ebből a csoportból: %s" #: js/apps.js:28 js/apps.js:67 msgid "Disable" @@ -99,15 +99,15 @@ msgstr "__language_name__" #: templates/apps.php:10 msgid "Add your App" -msgstr "App hozzáadása" +msgstr "Az alkalmazás hozzáadása" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "További alkalmazások" #: templates/apps.php:27 msgid "Select an App" -msgstr "Egy App kiválasztása" +msgstr "Válasszon egy alkalmazást" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" @@ -119,32 +119,32 @@ msgstr "" #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Felhasználói leírás" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Üzemeltetői leírás" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Online leírás" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Fórum" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Hibabejelentések" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Megvásárolható támogatás" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s" #: templates/personal.php:12 msgid "Clients" @@ -152,43 +152,43 @@ msgstr "Kliensek" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Desktop kliensprogramok letöltése" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Android kliens letöltése" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "iOS kliens letöltése" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Jelszó" #: templates/personal.php:22 msgid "Your password was changed" -msgstr "" +msgstr "A jelszava megváltozott" #: templates/personal.php:23 msgid "Unable to change your password" -msgstr "Nem lehet megváltoztatni a jelszavad" +msgstr "A jelszó nem változtatható meg" #: templates/personal.php:24 msgid "Current password" -msgstr "Jelenlegi jelszó" +msgstr "A jelenlegi jelszó" #: templates/personal.php:25 msgid "New password" -msgstr "Új jelszó" +msgstr "Az új jelszó" #: templates/personal.php:26 msgid "show" -msgstr "Mutat" +msgstr "lássam" #: templates/personal.php:27 msgid "Change password" -msgstr "Jelszó megváltoztatása" +msgstr "A jelszó megváltoztatása" #: templates/personal.php:33 msgid "Email" @@ -196,11 +196,11 @@ msgstr "Email" #: templates/personal.php:34 msgid "Your email address" -msgstr "Email címed" +msgstr "Az Ön emailcíme" #: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" -msgstr "Töltsd ki az email címet, hogy engedélyezhesd a jelszó-visszaállítást" +msgstr "Töltse ki az emailcímet, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!" #: templates/personal.php:41 templates/personal.php:42 msgid "Language" @@ -208,19 +208,19 @@ msgstr "Nyelv" #: templates/personal.php:47 msgid "Help translate" -msgstr "Segíts lefordítani!" +msgstr "Segítsen a fordításban!" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV elérés: " #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Ennek a címnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelőjével is is elérheti az állományait." #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Verzió" #: templates/personal.php:65 msgid "" @@ -232,11 +232,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Név" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Csoportok" @@ -245,21 +245,29 @@ msgid "Create" msgstr "Létrehozás" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Alapértelmezett kvóta" +msgid "Default Storage" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" -msgstr "Egyéb" +msgstr "Más" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" +msgstr "Csoportadminisztrátor" + +#: templates/users.php:87 +msgid "Storage" msgstr "" -#: templates/users.php:82 -msgid "Quota" -msgstr "Kvóta" +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Törlés" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 330b4cd1465..655c88dd46a 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 17:19+0000\n" +"Last-Translator: Laszlo Tornoci \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" @@ -22,34 +22,34 @@ 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 "" +msgstr "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Figyelem: a szükséges PHP LDAP modul nincs telepítve. Enélkül az LDAP azonosítás nem fog működni. Kérje meg a rendszergazdát, hogy telepítse a szükséges modult!" #: templates/settings.php:15 msgid "Host" -msgstr "" +msgstr "Kiszolgáló" #: templates/settings.php:15 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "A protokoll előtag elhagyható, kivéve, ha SSL-t kíván használni. Ebben az esetben kezdje így: ldaps://" #: templates/settings.php:16 msgid "Base DN" -msgstr "" +msgstr "DN-gyökér" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "A Haladó fülre kattintva külön DN-gyökér állítható be a felhasználók és a csoportok számára" #: templates/settings.php:17 msgid "User DN" -msgstr "" +msgstr "A kapcsolódó felhasználó DN-je" #: templates/settings.php:17 msgid "" @@ -60,51 +60,51 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "Jelszó" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!" #: templates/settings.php:19 msgid "User Login Filter" -msgstr "" +msgstr "Szűrő a bejelentkezéshez" #: templates/settings.php:19 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Ez a szűrő érvényes a bejelentkezés megkísérlésekor. Ekkor az %%uid változó helyére a bejelentkezési név kerül." #: templates/settings.php:19 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "használja az %%uid változót, pl. \"uid=%%uid\"" #: templates/settings.php:20 msgid "User List Filter" -msgstr "" +msgstr "A felhasználók szűrője" #: templates/settings.php:20 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "Ez a szűrő érvényes a felhasználók listázásakor." #: templates/settings.php:20 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "itt ne használjon változót, pl. \"objectClass=person\"." #: templates/settings.php:21 msgid "Group Filter" -msgstr "" +msgstr "A csoportok szűrője" #: templates/settings.php:21 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "Ez a szűrő érvényes a csoportok listázásakor." #: templates/settings.php:21 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "itt ne használjunk változót, pl. \"objectClass=posixGroup\"." #: templates/settings.php:24 msgid "Port" @@ -112,72 +112,72 @@ msgstr "" #: templates/settings.php:25 msgid "Base User Tree" -msgstr "" +msgstr "A felhasználói fa gyökere" #: templates/settings.php:26 msgid "Base Group Tree" -msgstr "" +msgstr "A csoportfa gyökere" #: templates/settings.php:27 msgid "Group-Member association" -msgstr "" +msgstr "A csoporttagság attribútuma" #: templates/settings.php:28 msgid "Use TLS" -msgstr "" +msgstr "Használjunk TLS-t" #: templates/settings.php:28 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "Ne használjuk SSL-kapcsolat esetén, mert nem fog működni!" #: templates/settings.php:29 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "Az LDAP-kiszolgáló nem tesz különbséget a kis- és nagybetűk között (Windows)" #: templates/settings.php:30 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Ne ellenőrizzük az SSL-tanúsítvány érvényességét" #: templates/settings.php:30 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "Ha a kapcsolat csak ezzel a beállítással működik, akkor importálja az LDAP-kiszolgáló SSL tanúsítványát az ownCloud kiszolgálóra!" #: templates/settings.php:30 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "Nem javasolt, csak tesztelésre érdemes használni." #: templates/settings.php:31 msgid "User Display Name Field" -msgstr "" +msgstr "A felhasználónév mezője" #: templates/settings.php:31 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "Ebből az LDAP attribútumból képződik a felhasználó elnevezése, ami megjelenik az ownCloudban." #: templates/settings.php:32 msgid "Group Display Name Field" -msgstr "" +msgstr "A csoport nevének mezője" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "Ebből az LDAP attribútumból képződik a csoport elnevezése, ami megjelenik az ownCloudban." #: templates/settings.php:34 msgid "in bytes" -msgstr "" +msgstr "bájtban" #: templates/settings.php:36 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "másodpercben. A változtatás törli a cache tartalmát." #: templates/settings.php:37 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +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:39 msgid "Help" -msgstr "" +msgstr "Súgó" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 892fdc95fd9..5030c5a00a3 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -162,7 +162,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Contrasigno" @@ -232,11 +232,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nomine" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Gruppos" @@ -245,21 +245,29 @@ msgid "Create" msgstr "Crear" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Quota predeterminate" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Altere" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" -msgstr "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Deler" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 4e52623ad95..1abd347dc88 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -164,7 +164,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Password" @@ -234,11 +234,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nama" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Group" @@ -247,21 +247,29 @@ msgid "Create" msgstr "Buat" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Kuota default" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Lain-lain" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Admin Grup" -#: templates/users.php:82 -msgid "Quota" -msgstr "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Hapus" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 5872b39972e..3842a0e149f 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -160,7 +160,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "" @@ -230,11 +230,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "" @@ -243,21 +243,29 @@ msgid "Create" msgstr "" #: templates/users.php:35 -msgid "Default Quota" +msgid "Default Storage" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index e26395a5f44..00d5a41c44a 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 06:39+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -167,7 +167,7 @@ msgstr "Scarica client Android" msgid "Download iOS Client" msgstr "Scarica client iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Password" @@ -237,11 +237,11 @@ msgid "" "License\">AGPL." msgstr "Sviluppato dalla comunità di ownCloud, il codice sorgente è licenziato nei termini della AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nome" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Gruppi" @@ -250,21 +250,29 @@ msgid "Create" msgstr "Crea" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Quota predefinita" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Altro" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Gruppo di amministrazione" -#: templates/users.php:82 -msgid "Quota" -msgstr "Quote" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Elimina" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index b41038ab9a7..c1f06322310 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 03:44+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -164,7 +164,7 @@ msgstr "Androidクライアントをダウンロード" msgid "Download iOS Client" msgstr "iOSクライアントをダウンロード" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "パスワード" @@ -234,11 +234,11 @@ msgid "" "License\">AGPL." msgstr "ownCloud communityにより開発されています、ソースコードライセンスは、AGPL ライセンスにより提供されています。" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "名前" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "グループ" @@ -247,21 +247,29 @@ msgid "Create" msgstr "作成" #: templates/users.php:35 -msgid "Default Quota" -msgstr "デフォルトのクォータサイズ" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "その他" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "グループ管理者" -#: templates/users.php:82 -msgid "Quota" -msgstr "クオータ" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "削除" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 363ba8a6bd4..8d92cc3af03 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -161,7 +161,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "პაროლი" @@ -231,11 +231,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "სახელი" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "ჯგუფი" @@ -244,21 +244,29 @@ msgid "Create" msgstr "შექმნა" #: templates/users.php:35 -msgid "Default Quota" -msgstr "საწყისი ქვოტა" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "სხვა" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "ჯგუფის ადმინისტრატორი" -#: templates/users.php:82 -msgid "Quota" -msgstr "ქვოტა" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "წაშლა" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 7e948772a38..ea5f2c1fc67 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -163,7 +163,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "암호" @@ -233,11 +233,11 @@ msgid "" "License\">AGPL." msgstr "ownCloud 커뮤니티에 의해서 개발되었습니다. 원본 코드AGPL에 따라 사용이 허가됩니다." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "이름" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "그룹" @@ -246,21 +246,29 @@ msgid "Create" msgstr "만들기" #: templates/users.php:35 -msgid "Default Quota" -msgstr "기본 할당량" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "기타" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "그룹 관리자" -#: templates/users.php:82 -msgid "Quota" -msgstr "할당량" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "삭제" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 535d2af3759..a1dddc85d5d 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -160,7 +160,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "وشەی تێپەربو" @@ -230,11 +230,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "ناو" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "" @@ -243,21 +243,29 @@ msgid "Create" msgstr "" #: templates/users.php:35 -msgid "Default Quota" +msgid "Default Storage" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 90bde23fab6..cf0f377fcb9 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -161,7 +161,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Passwuert" @@ -231,11 +231,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Numm" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Gruppen" @@ -244,21 +244,29 @@ msgid "Create" msgstr "Erstellen" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Standard Quota" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Aner" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Gruppen Admin" -#: templates/users.php:82 -msgid "Quota" -msgstr "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Läschen" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 34f05c7c008..8622a3a7a26 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -162,7 +162,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Slaptažodis" @@ -232,11 +232,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Vardas" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupės" @@ -245,21 +245,29 @@ msgid "Create" msgstr "Sukurti" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Numatytoji kvota" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Kita" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" -msgstr "Limitas" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Ištrinti" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 22fd0c4bb2e..6bac98259c8 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -162,7 +162,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Parole" @@ -232,11 +232,11 @@ msgid "" "License\">AGPL." msgstr "IzstrādājusiownCloud kopiena,pirmkodukurš ir licencēts zem AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Vārds" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupas" @@ -245,21 +245,29 @@ msgid "Create" msgstr "Izveidot" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Apjoms pēc noklusējuma" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Cits" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grupas administrators" -#: templates/users.php:82 -msgid "Quota" -msgstr "Apjoms" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Izdzēst" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 3195e2e0539..0f4d756335e 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 13:39+0000\n" -"Last-Translator: Georgi Stanojevski \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,7 +163,7 @@ msgstr "Преземи клиент за Андроид" msgid "Download iOS Client" msgstr "Преземи iOS клиент" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Лозинка" @@ -233,11 +233,11 @@ msgid "" "License\">AGPL." msgstr "Развој од ownCloud заедницата, изворниот код е лиценциран соAGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Име" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Групи" @@ -246,21 +246,29 @@ msgid "Create" msgstr "Создај" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Предефинирана квота" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Останато" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Администратор на група" -#: templates/users.php:82 -msgid "Quota" -msgstr "Квота" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Избриши" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index f4c24535347..444196b7ee8 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -164,7 +164,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Kata laluan " @@ -234,11 +234,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nama" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Kumpulan" @@ -247,21 +247,29 @@ msgid "Create" msgstr "Buat" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Kuota Lalai" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Lain" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" -msgstr "Kuota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Padam" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 7354a7de4ce..df292b0cea6 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -6,6 +6,7 @@ # , 2011, 2012. # Christer Eriksson , 2012. # Daniel , 2012. +# , 2012. # , 2012. # , 2012. # , 2012. @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 16:28+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" @@ -103,11 +104,11 @@ msgstr "{minutes} minutter siden" #: js/js.js:707 msgid "1 hour ago" -msgstr "" +msgstr "1 time siden" #: js/js.js:708 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} timer siden" #: js/js.js:709 msgid "today" @@ -127,7 +128,7 @@ msgstr "forrige måned" #: js/js.js:713 msgid "{months} months ago" -msgstr "" +msgstr "{months} måneder siden" #: js/js.js:714 msgid "months ago" @@ -167,8 +168,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Feil" @@ -180,7 +181,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Feil under deling" @@ -208,11 +209,11 @@ msgstr "Del med" msgid "Share with link" msgstr "Del med link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Passordbeskyttet" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Passord" @@ -223,7 +224,7 @@ msgstr "" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Send" #: js/share.js:177 msgid "Set expiration date" @@ -277,25 +278,25 @@ msgstr "slett" msgid "share" msgstr "del" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Sender..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "E-post sendt" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -317,8 +318,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Brukernavn" @@ -407,44 +408,44 @@ msgstr "" msgid "Create an admin account" msgstr "opprett en administrator-konto" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "vil bli brukt" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Database tabellområde" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Fullfør oppsetting" @@ -532,29 +533,29 @@ msgstr "nettjenester under din kontroll" msgid "Log out" msgstr "Logg ut" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatisk pålogging avvist!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Hvis du ikke har endret passordet ditt nylig kan kontoen din være kompromitert" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Vennligst skift passord for å gjøre kontoen din sikker igjen." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Mistet passordet ditt?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "husk" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Logg inn" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index ad0cf919ea0..58b1183863d 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -7,6 +7,7 @@ # Arvid Nornes , 2012. # Christer Eriksson , 2012. # Daniel , 2012. +# , 2012. # , 2012. # , 2012. # , 2012. @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 17:25+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" @@ -60,11 +61,11 @@ msgstr "Klarte ikke å skrive til disk" msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Avslutt deling" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Slett" @@ -72,39 +73,39 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "erstatt" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "erstatt {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "angre" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "erstatt {new_name} med {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "slettet {files}" @@ -112,82 +113,82 @@ msgstr "slettet {files}" msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "opprettet ZIP-fil, dette kan ta litt tid" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Lukk" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Ventende" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} filer laster opp" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "" +msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} filer lest inn" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "feil under skanning" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Navn" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Størrelse" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Endret" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 fil" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} filer" @@ -237,7 +238,7 @@ msgstr "Mappe" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Fra link" #: templates/index.php:35 msgid "Upload" @@ -247,28 +248,28 @@ msgstr "Last opp" msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Last ned" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Opplasting for stor" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Skanner etter filer, vennligst vent." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 266ba36b069..abaf9fc0847 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -4,6 +4,7 @@ # # Translators: # Arvid Nornes , 2012. +# , 2012. # , 2012. # , 2012. # , 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 17:26+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" @@ -21,43 +22,43 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:287 msgid "Help" msgstr "Hjelp" -#: app.php:292 +#: app.php:294 msgid "Personal" msgstr "Personlig" -#: app.php:297 +#: app.php:299 msgid "Settings" msgstr "Innstillinger" -#: app.php:302 +#: app.php:304 msgid "Users" msgstr "Brukere" -#: app.php:309 +#: app.php:311 msgid "Apps" msgstr "Apper" -#: app.php:311 +#: app.php:313 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Tilbake til filer" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" @@ -91,7 +92,7 @@ msgstr "sekunder siden" #: template.php:104 msgid "1 minute ago" -msgstr "1 minuitt siden" +msgstr "1 minutt siden" #: template.php:105 #, php-format @@ -100,12 +101,12 @@ msgstr "%d minutter siden" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "1 time siden" #: template.php:107 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d timer siden" #: template.php:108 msgid "today" @@ -127,7 +128,7 @@ msgstr "forrige måned" #: template.php:112 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d måneder siden" #: template.php:113 msgid "last year" @@ -153,4 +154,4 @@ msgstr "versjonssjekk er avslått" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Kunne ikke finne kategori \"%s\"" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 96e64f4b1a8..36c3224748b 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -7,6 +7,7 @@ # Arvid Nornes , 2012. # Christer Eriksson , 2012. # Daniel , 2012. +# , 2012. # , 2012. # , 2012. # , 2012. @@ -14,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -124,11 +125,11 @@ msgstr "" #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Brukerdokumentasjon" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Administratordokumentasjon" #: templates/help.php:6 msgid "Online Documentation" @@ -144,12 +145,12 @@ msgstr "" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Kommersiell støtte" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "Du har brukt %s av tilgjengelig %s" #: templates/personal.php:12 msgid "Clients" @@ -157,17 +158,17 @@ msgstr "Klienter" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Last ned skrivebordsklienter" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Last ned Android-klient" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Last ned iOS-klient" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Passord" @@ -217,7 +218,7 @@ msgstr "Bidra til oversettelsen" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" @@ -225,7 +226,7 @@ msgstr "" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Versjon" #: templates/personal.php:65 msgid "" @@ -237,11 +238,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Navn" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupper" @@ -250,21 +251,29 @@ msgid "Create" msgstr "Opprett" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Standard Kvote" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Annet" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Gruppeadministrator" -#: templates/users.php:82 -msgid "Quota" -msgstr "Kvote" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Slett" diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po index c3f368c7777..9d7d3571927 100644 --- a/l10n/nb_NO/user_webdavauth.po +++ b/l10n/nb_NO/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 16:42+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" @@ -19,7 +20,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 52bcdb4ed53..1828079d894 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 17:37+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -171,7 +171,7 @@ msgstr "Download Android Client" msgid "Download iOS Client" msgstr "Download iOS Client" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Wachtwoord" @@ -241,11 +241,11 @@ msgid "" "License\">AGPL." msgstr "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Naam" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Groepen" @@ -254,21 +254,29 @@ msgid "Create" msgstr "Creëer" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Standaard limiet" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Andere" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Groep beheerder" -#: templates/users.php:82 -msgid "Quota" -msgstr "Limieten" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "verwijderen" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index b62189d236d..d2de08d4a18 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -162,7 +162,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Passord" @@ -232,11 +232,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Namn" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupper" @@ -245,21 +245,29 @@ msgid "Create" msgstr "Lag" #: templates/users.php:35 -msgid "Default Quota" +msgid "Default Storage" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Anna" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" -msgstr "Kvote" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Slett" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index aa5ccaa9439..36b489b83a8 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -161,7 +161,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Senhal" @@ -231,11 +231,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nom" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grops" @@ -244,21 +244,29 @@ msgid "Create" msgstr "Crea" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Quota per defaut" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Autres" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grop Admin" -#: templates/users.php:82 -msgid "Quota" -msgstr "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Escafa" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index bd13e836e65..50ee10108d8 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -170,7 +170,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Hasło" @@ -240,11 +240,11 @@ msgid "" "License\">AGPL." msgstr "Stwirzone przez społeczność ownCloud, the kod źródłowy na licencji AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nazwa" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupy" @@ -253,21 +253,29 @@ msgid "Create" msgstr "Utwórz" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Domyślny udział" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Inne" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grupa Admin" -#: templates/users.php:82 -msgid "Quota" -msgstr "Udział" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Usuń" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index f90f3c11162..6a6ddb24fbd 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -160,7 +160,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "" @@ -230,11 +230,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "" @@ -243,21 +243,29 @@ msgid "Create" msgstr "" #: templates/users.php:35 -msgid "Default Quota" +msgid "Default Storage" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 67cb06fbd6d..912c636340a 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -169,7 +169,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Senha" @@ -239,11 +239,11 @@ msgid "" "License\">AGPL." msgstr "Desenvolvido pela comunidade ownCloud, o código fonte está licenciado sob AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nome" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupos" @@ -252,21 +252,29 @@ msgid "Create" msgstr "Criar" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Quota Padrão" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Outro" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grupo Administrativo" -#: templates/users.php:82 -msgid "Quota" -msgstr "Cota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Apagar" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index eee0eb64fd7..3018d56bd26 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-20 23:51+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -165,7 +165,7 @@ msgstr "Transferir o cliente android" msgid "Download iOS Client" msgstr "Transferir o cliente iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Palavra-chave" @@ -235,11 +235,11 @@ msgid "" "License\">AGPL." msgstr "Desenvolvido pela comunidade ownCloud, ocódigo fonte está licenciado sob a AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nome" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupos" @@ -248,21 +248,29 @@ msgid "Create" msgstr "Criar" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Quota por padrão" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Outro" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grupo Administrador" -#: templates/users.php:82 -msgid "Quota" -msgstr "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Apagar" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 98f2a2844e7..1d2ba8f01d2 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -166,7 +166,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Parolă" @@ -236,11 +236,11 @@ msgid "" "License\">AGPL." msgstr "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Nume" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupuri" @@ -249,21 +249,29 @@ msgid "Create" msgstr "Crează" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Cotă implicită" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Altele" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Grupul Admin " -#: templates/users.php:82 -msgid "Quota" -msgstr "Cotă" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Șterge" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index cfaa71c6af5..81feddae6f4 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" -"PO-Revision-Date: 2012-12-26 06:17+0000\n" -"Last-Translator: adol \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -172,7 +172,7 @@ msgstr "Загрузка Android-приложения" msgid "Download iOS Client" msgstr "Загрузка iOS-приложения" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Пароль" @@ -242,11 +242,11 @@ msgid "" "License\">AGPL." msgstr "Разрабатывается сообществом ownCloud, исходный код доступен под лицензией AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Имя" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Группы" @@ -255,21 +255,29 @@ msgid "Create" msgstr "Создать" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Квота по умолчанию" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Другое" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Группа Администраторы" -#: templates/users.php:82 -msgid "Quota" -msgstr "Квота" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Удалить" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 15f03042ae5..9d013ac07bb 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 10:00+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,7 +161,7 @@ msgstr "Загрузить клиент под Android " msgid "Download iOS Client" msgstr "Загрузить клиент под iOS " -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Пароль" @@ -231,11 +231,11 @@ msgid "" "License\">AGPL." msgstr "Разработанный ownCloud community, the source code is licensed under the AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Имя" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Группы" @@ -244,21 +244,29 @@ msgid "Create" msgstr "Создать" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Квота по умолчанию" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Другой" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Группа Admin" -#: templates/users.php:82 -msgid "Quota" -msgstr "квота" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Удалить" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 6bfa8851760..c6443f18bff 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -163,7 +163,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "මුරපදය" @@ -233,11 +233,11 @@ msgid "" "License\">AGPL." msgstr "නිපදන ලද්දේ ownCloud සමාජයෙන්, the මුල් කේතය ලයිසන්ස් කර ඇත්තේ AGPL යටතේ." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "නාමය" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "සමූහය" @@ -246,21 +246,29 @@ msgid "Create" msgstr "තනන්න" #: templates/users.php:35 -msgid "Default Quota" -msgstr "සාමාන්‍ය සලාකය" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "වෙනත්" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "කාණ්ඩ පරිපාලක" -#: templates/users.php:82 -msgid "Quota" -msgstr "සලාකය" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "මකා දමනවා" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 7fc980b9834..5f886e918de 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -165,7 +165,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Heslo" @@ -235,11 +235,11 @@ msgid "" "License\">AGPL." msgstr "Vyvinuté komunitou ownCloud,zdrojový kód je licencovaný pod AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Meno" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Skupiny" @@ -248,21 +248,29 @@ msgid "Create" msgstr "Vytvoriť" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Predvolená kvóta" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Iné" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Správca skupiny" -#: templates/users.php:82 -msgid "Quota" -msgstr "Kvóta" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Odstrániť" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 9bf1d7498ab..e10cc61469b 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -164,7 +164,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Geslo" @@ -234,11 +234,11 @@ msgid "" "License\">AGPL." msgstr "Programski paket razvija skupnost ownCloud. Izvorna koda je objavljena pod pogoji dovoljenja AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Ime" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Skupine" @@ -247,21 +247,29 @@ msgid "Create" msgstr "Ustvari" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Privzeta količinska omejitev" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Drugo" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Skrbnik skupine" -#: templates/users.php:82 -msgid "Quota" -msgstr "Količinska omejitev" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Izbriši" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index d5651cf5325..78be3c6ba44 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -160,7 +160,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "" @@ -230,11 +230,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "" @@ -243,21 +243,29 @@ msgid "Create" msgstr "" #: templates/users.php:35 -msgid "Default Quota" +msgid "Default Storage" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index e608c443bcc..0a738546bf6 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -162,7 +162,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Лозинка" @@ -232,11 +232,11 @@ msgid "" "License\">AGPL." msgstr "Развијају Оунклауд (ownCloud) заједница, изворни код је издат под АГПЛ лиценцом." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Име" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Групе" @@ -245,21 +245,29 @@ msgid "Create" msgstr "Направи" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Подразумевано ограничење" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Друго" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Управник групе" -#: templates/users.php:82 -msgid "Quota" -msgstr "Ограничење" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Обриши" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 1fa664360e9..0e2ffadb98c 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -161,7 +161,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Lozinka" @@ -231,11 +231,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Ime" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupe" @@ -244,21 +244,29 @@ msgid "Create" msgstr "Napravi" #: templates/users.php:35 -msgid "Default Quota" +msgid "Default Storage" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Drugo" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Obriši" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 93565b09c2e..52485e8f6f4 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-26 00:11+0100\n" -"PO-Revision-Date: 2012-12-25 07:58+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -167,7 +167,7 @@ msgstr "Ladda ner klient för Android" msgid "Download iOS Client" msgstr "Ladda ner klient för iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Lösenord" @@ -237,11 +237,11 @@ msgid "" "License\">AGPL." msgstr "Utvecklad av ownCloud kommunity, källkoden är licenserad under AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Namn" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Grupper" @@ -250,21 +250,29 @@ msgid "Create" msgstr "Skapa" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Förvald datakvot" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Annat" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Gruppadministratör" -#: templates/users.php:82 -msgid "Quota" -msgstr "Kvot" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Radera" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index d06ae0bdd28..4b6d4c45e0e 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -161,7 +161,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "கடவுச்சொல்" @@ -231,11 +231,11 @@ msgid "" "License\">AGPL." msgstr "Developed by the ownCloud community, the source code is licensed under the AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "பெயர்" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "குழுக்கள்" @@ -244,21 +244,29 @@ msgid "Create" msgstr "உருவாக்குக" #: templates/users.php:35 -msgid "Default Quota" -msgstr "பொது இருப்பு பங்கு" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "மற்றவை" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "குழு நிர்வாகி" -#: templates/users.php:82 -msgid "Quota" -msgstr "பங்கு" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "அழிக்க" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 0e7bec058d0..4a7b327861f 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\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 feabdd922b8..bafda267119 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\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 ab55d6a46f0..4f497da4a5e 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\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 8a8a5ba2b88..616e915131f 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\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 71cbe713331..15c8d37ac46 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\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 b4e25ae6229..81d322f1cfc 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\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 7c5c44e34b8..2e1e8704e8c 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\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 0289d6568d1..9776c97fbb6 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -161,7 +161,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "" @@ -230,11 +230,11 @@ msgid "" "General Public License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "" @@ -243,21 +243,29 @@ msgid "Create" msgstr "" #: templates/users.php:35 -msgid "Default Quota" +msgid "Default Storage" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ed05211033d..38da6d21b9f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\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 96663d5fb4e..9237ed079fb 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 41350a3882c..27f4a874232 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -163,7 +163,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "รหัสผ่าน" @@ -233,11 +233,11 @@ msgid "" "License\">AGPL." msgstr "พัฒนาโดย the ชุมชนผู้ใช้งาน ownCloud, the ซอร์สโค้ดอยู่ภายใต้สัญญาอนุญาตของ AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "ชื่อ" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "กลุ่ม" @@ -246,21 +246,29 @@ msgid "Create" msgstr "สร้าง" #: templates/users.php:35 -msgid "Default Quota" -msgstr "โควต้าที่กำหนดไว้เริ่มต้น" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "อื่นๆ" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "ผู้ดูแลกลุ่ม" -#: templates/users.php:82 -msgid "Quota" -msgstr "พื้นที่" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "ลบ" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 424615dce38..cfdb8287d08 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 11:45+0000\n" -"Last-Translator: Necdet Yücel \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -164,7 +164,7 @@ msgstr "Android İstemcisini İndir" msgid "Download iOS Client" msgstr "iOS İstemcisini İndir" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Parola" @@ -234,11 +234,11 @@ msgid "" "License\">AGPL." msgstr "Geliştirilen TarafownCloud community, the source code is altında lisanslanmıştır AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Ad" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Gruplar" @@ -247,21 +247,29 @@ msgid "Create" msgstr "Oluştur" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Varsayılan Kota" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Diğer" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Yönetici Grubu " -#: templates/users.php:82 -msgid "Quota" -msgstr "Kota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Sil" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 613086e2095..cb8ce3e8cac 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 02:04+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,7 +163,7 @@ msgstr "Завантажити клієнт для Android" msgid "Download iOS Client" msgstr "Завантажити клієнт для iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Пароль" @@ -233,11 +233,11 @@ msgid "" "License\">AGPL." msgstr "Розроблено ownCloud громадою, вихідний код має ліцензію AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Ім'я" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Групи" @@ -246,21 +246,29 @@ msgid "Create" msgstr "Створити" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Квота за замовчуванням" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Інше" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Адміністратор групи" -#: templates/users.php:82 -msgid "Quota" -msgstr "Квота" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Видалити" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index e17d6607eed..e8689e484f1 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -166,7 +166,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "Mật khẩu" @@ -236,11 +236,11 @@ msgid "" "License\">AGPL." msgstr "Được phát triển bởi cộng đồng ownCloud, mã nguồn đã được cấp phép theo chuẩn AGPL." -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "Tên" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "Nhóm" @@ -249,21 +249,29 @@ msgid "Create" msgstr "Tạo" #: templates/users.php:35 -msgid "Default Quota" -msgstr "Hạn ngạch mặt định" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "Khác" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "Nhóm quản trị" -#: templates/users.php:82 -msgid "Quota" -msgstr "Hạn ngạch" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "Xóa" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 345bc3af512..2c8e2cabac0 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -162,7 +162,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "密码" @@ -232,11 +232,11 @@ msgid "" "License\">AGPL." msgstr "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "名字" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "组" @@ -245,21 +245,29 @@ msgid "Create" msgstr "新建" #: templates/users.php:35 -msgid "Default Quota" -msgstr "默认限额" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "其他的" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "群组管理员" -#: templates/users.php:82 -msgid "Quota" -msgstr "限额" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "删除" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 2e39772a758..a28ef198295 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:11+0100\n" -"PO-Revision-Date: 2012-12-23 13:54+0000\n" -"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -166,7 +166,7 @@ msgstr "下载 Android 客户端" msgid "Download iOS Client" msgstr "下载 iOS 客户端" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "密码" @@ -236,11 +236,11 @@ msgid "" "License\">AGPL." msgstr "由ownCloud社区开发, 源代码AGPL许可证下发布。" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "名称" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "组" @@ -249,21 +249,29 @@ msgid "Create" msgstr "创建" #: templates/users.php:35 -msgid "Default Quota" -msgstr "默认配额" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "其它" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "组管理员" -#: templates/users.php:82 -msgid "Quota" -msgstr "配额" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "删除" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 5b1f23f900f..0b9bc749d96 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -160,7 +160,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "" @@ -230,11 +230,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "" @@ -243,21 +243,29 @@ msgid "Create" msgstr "" #: templates/users.php:35 -msgid "Default Quota" +msgid "Default Storage" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index ca897a2325b..6168a8b0d36 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+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" @@ -166,7 +166,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "密碼" @@ -236,11 +236,11 @@ msgid "" "License\">AGPL." msgstr "由ownCloud 社區開發,源代碼AGPL許可證下發布。" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "名稱" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "群組" @@ -249,21 +249,29 @@ msgid "Create" msgstr "創造" #: templates/users.php:35 -msgid "Default Quota" -msgstr "預設容量限制" +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "其他" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "群組 管理員" -#: templates/users.php:82 -msgid "Quota" -msgstr "容量限制" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "刪除" diff --git a/l10n/zu_ZA/settings.po b/l10n/zu_ZA/settings.po index d59859009b5..c8c1d7fb260 100644 --- a/l10n/zu_ZA/settings.po +++ b/l10n/zu_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"PO-Revision-Date: 2012-12-29 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -160,7 +160,7 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" msgstr "" @@ -230,11 +230,11 @@ msgid "" "License\">AGPL." msgstr "" -#: templates/users.php:21 templates/users.php:76 +#: templates/users.php:21 templates/users.php:81 msgid "Name" msgstr "" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" msgstr "" @@ -243,21 +243,29 @@ msgid "Create" msgstr "" #: templates/users.php:35 -msgid "Default Quota" +msgid "Default Storage" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 msgid "Other" msgstr "" -#: templates/users.php:80 templates/users.php:112 +#: templates/users.php:85 templates/users.php:117 msgid "Group Admin" msgstr "" -#: templates/users.php:82 -msgid "Quota" +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" msgstr "" -#: templates/users.php:146 +#: templates/users.php:161 msgid "Delete" msgstr "" diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index b01e0979889..01144672caa 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -16,15 +16,19 @@ "Text" => "Tekst", "Images" => "Bilder", "seconds ago" => "sekunder siden", -"1 minute ago" => "1 minuitt siden", +"1 minute ago" => "1 minutt siden", "%d minutes ago" => "%d minutter siden", +"1 hour ago" => "1 time siden", +"%d hours ago" => "%d timer siden", "today" => "i dag", "yesterday" => "i går", "%d days ago" => "%d dager siden", "last month" => "forrige måned", +"%d months ago" => "%d måneder siden", "last year" => "i fjor", "years ago" => "år siden", "%s is available. Get more information" => "%s er tilgjengelig. Få mer informasjon", "up to date" => "oppdatert", -"updates check is disabled" => "versjonssjekk er avslått" +"updates check is disabled" => "versjonssjekk er avslått", +"Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"" ); diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 730db722111..d16e6ad10ea 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -53,9 +53,7 @@ "Name" => "الاسم", "Groups" => "مجموعات", "Create" => "انشئ", -"Default Quota" => "الحصة النسبية الإفتراضية", "Other" => "شيء آخر", "Group Admin" => "مدير المجموعة", -"Quota" => "حصه", "Delete" => "حذف" ); diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 18784fae7b0..89066d2baa9 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -24,8 +24,6 @@ "Name" => "Име", "Groups" => "Групи", "Create" => "Ново", -"Default Quota" => "Квота по подразбиране", "Other" => "Друго", -"Quota" => "Квота", "Delete" => "Изтриване" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 0f57387355a..6a354211254 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -53,9 +53,7 @@ "Name" => "Nom", "Groups" => "Grups", "Create" => "Crea", -"Default Quota" => "Quota per defecte", "Other" => "Altre", "Group Admin" => "Grup Admin", -"Quota" => "Quota", "Delete" => "Suprimeix" ); diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index c88959026da..a23314a2cc6 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -53,9 +53,7 @@ "Name" => "Jméno", "Groups" => "Skupiny", "Create" => "Vytvořit", -"Default Quota" => "Výchozí kvóta", "Other" => "Jiná", "Group Admin" => "Správa skupiny", -"Quota" => "Kvóta", "Delete" => "Smazat" ); diff --git a/settings/l10n/da.php b/settings/l10n/da.php index d8b36266e24..2300b98a2bf 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -53,9 +53,7 @@ "Name" => "Navn", "Groups" => "Grupper", "Create" => "Ny", -"Default Quota" => "Standard kvote", "Other" => "Andet", "Group Admin" => "Gruppe Administrator", -"Quota" => "Kvote", "Delete" => "Slet" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index e27d1c1c432..e54aea3bb99 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -53,9 +53,7 @@ "Name" => "Name", "Groups" => "Gruppen", "Create" => "Anlegen", -"Default Quota" => "Standard-Quota", "Other" => "Andere", "Group Admin" => "Gruppenadministrator", -"Quota" => "Quota", "Delete" => "Löschen" ); diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 99d7c1360ce..7fc439f8222 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -53,9 +53,7 @@ "Name" => "Name", "Groups" => "Gruppen", "Create" => "Anlegen", -"Default Quota" => "Standard-Quota", "Other" => "Andere", "Group Admin" => "Gruppenadministrator", -"Quota" => "Quota", "Delete" => "Löschen" ); diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 38b96151cb4..1ecd2e269ff 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -53,9 +53,7 @@ "Name" => "Όνομα", "Groups" => "Ομάδες", "Create" => "Δημιουργία", -"Default Quota" => "Προεπιλεγμένο Όριο", "Other" => "Άλλα", "Group Admin" => "Ομάδα Διαχειριστών", -"Quota" => "Σύνολο Χώρου", "Delete" => "Διαγραφή" ); diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 668d48f30b3..4f8d58b1bb7 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -41,9 +41,7 @@ "Name" => "Nomo", "Groups" => "Grupoj", "Create" => "Krei", -"Default Quota" => "Defaŭlta kvoto", "Other" => "Alia", "Group Admin" => "Grupadministranto", -"Quota" => "Kvoto", "Delete" => "Forigi" ); diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 2f7a639ee00..874f5e2a1be 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -23,8 +23,17 @@ "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", +"User Documentation" => "Documentación del usuario", +"Administrator Documentation" => "Documentación del adminsitrador", +"Online Documentation" => "Documentación en linea", +"Forum" => "Foro", +"Bugtracker" => "Rastreador de Bugs", +"Commercial Support" => "Soporte Comercial", "You have used %s of the available %s" => "Ha usado %s de %s disponibles", "Clients" => "Clientes", +"Download Desktop Clients" => "Descargar clientes de escritorio", +"Download Android Client" => "Descargar cliente para android", +"Download iOS Client" => "Descargar cliente para iOS", "Password" => "Contraseña", "Your password was changed" => "Su contraseña ha sido cambiada", "Unable to change your password" => "No se ha podido cambiar tu contraseña", @@ -37,13 +46,14 @@ "Fill in an email address to enable password recovery" => "Escribe una dirección de correo electrónico para restablecer la contraseña", "Language" => "Idioma", "Help translate" => "Ayúdanos a traducir", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos", +"Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL.", "Name" => "Nombre", "Groups" => "Grupos", "Create" => "Crear", -"Default Quota" => "Cuota predeterminada", "Other" => "Otro", "Group Admin" => "Grupo admin", -"Quota" => "Cuota", "Delete" => "Eliminar" ); diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index b408405d6da..b7bd0a22da9 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -23,8 +23,17 @@ "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", +"User Documentation" => "Documentación de Usuario", +"Administrator Documentation" => "Documentación de Administrador", +"Online Documentation" => "Documentación en linea", +"Forum" => "Foro", +"Bugtracker" => "Informar errores", +"Commercial Support" => "Soporte comercial", "You have used %s of the available %s" => "Usaste %s de los %s disponibles", "Clients" => "Clientes", +"Download Desktop Clients" => "Descargar clientes de escritorio", +"Download Android Client" => "Descargar cliente de Android", +"Download iOS Client" => "Descargar cliente de iOS", "Password" => "Contraseña", "Your password was changed" => "Tu contraseña fue cambiada", "Unable to change your password" => "No fue posible cambiar tu contraseña", @@ -37,13 +46,14 @@ "Fill in an email address to enable password recovery" => "Escribí una dirección de correo electrónico para restablecer la contraseña", "Language" => "Idioma", "Help translate" => "Ayudanos a traducir", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos", +"Version" => "Versión", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL.", "Name" => "Nombre", "Groups" => "Grupos", "Create" => "Crear", -"Default Quota" => "Cuota predeterminada", "Other" => "Otro", "Group Admin" => "Grupo Administrador", -"Quota" => "Cuota", "Delete" => "Borrar" ); diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 7b61ee92eb0..fdf9e35dfe2 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -38,9 +38,7 @@ "Name" => "Nimi", "Groups" => "Grupid", "Create" => "Lisa", -"Default Quota" => "Vaikimisi kvoot", "Other" => "Muu", "Group Admin" => "Grupi admin", -"Quota" => "Mahupiir", "Delete" => "Kustuta" ); diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index ee85f723f69..bcf80da33c1 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -53,9 +53,7 @@ "Name" => "Izena", "Groups" => "Taldeak", "Create" => "Sortu", -"Default Quota" => "Kuota lehentsia", "Other" => "Besteak", "Group Admin" => "Talde administradorea", -"Quota" => "Kuota", "Delete" => "Ezabatu" ); diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 764bef6dc8b..293a50ff291 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -29,8 +29,6 @@ "Name" => "نام", "Groups" => "گروه ها", "Create" => "ایجاد کردن", -"Default Quota" => "سهم پیش فرض", "Other" => "سایر", -"Quota" => "سهم", "Delete" => "پاک کردن" ); diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 2d9d6ce941c..5700f86036f 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -53,9 +53,7 @@ "Name" => "Nimi", "Groups" => "Ryhmät", "Create" => "Luo", -"Default Quota" => "Oletuskiintiö", "Other" => "Muu", "Group Admin" => "Ryhmän ylläpitäjä", -"Quota" => "Kiintiö", "Delete" => "Poista" ); diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index b4b3d46e05f..3c7f6a43e4d 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -53,9 +53,7 @@ "Name" => "Nom", "Groups" => "Groupes", "Create" => "Créer", -"Default Quota" => "Quota par défaut", "Other" => "Autre", "Group Admin" => "Groupe Admin", -"Quota" => "Quota", "Delete" => "Supprimer" ); diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index b322c6f8bcf..2853b6fed7d 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -41,9 +41,7 @@ "Name" => "Nome", "Groups" => "Grupos", "Create" => "Crear", -"Default Quota" => "Cota por omisión", "Other" => "Outro", "Group Admin" => "Grupo Admin", -"Quota" => "Cota", "Delete" => "Borrar" ); diff --git a/settings/l10n/he.php b/settings/l10n/he.php index ce9e61be291..1d7a91ee523 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -51,9 +51,7 @@ "Name" => "שם", "Groups" => "קבוצות", "Create" => "יצירה", -"Default Quota" => "מכסת בררת המחדל", "Other" => "אחר", "Group Admin" => "מנהל הקבוצה", -"Quota" => "מכסה", "Delete" => "מחיקה" ); diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 437afeb7f59..b6f7133f13f 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -28,9 +28,7 @@ "Name" => "Ime", "Groups" => "Grupe", "Create" => "Izradi", -"Default Quota" => "standardni kvota", "Other" => "ostali", "Group Admin" => "Grupa Admin", -"Quota" => "kvota", "Delete" => "Obriši" ); diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 18f21129b85..124dd4c4eb7 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -1,35 +1,57 @@ "Nem tölthető le a lista az App Store-ból", +"Group already exists" => "A csoport már létezik", +"Unable to add group" => "A csoport nem hozható létre", +"Could not enable app. " => "A program nem aktiválható.", "Email saved" => "Email mentve", "Invalid email" => "Hibás email", "OpenID Changed" => "OpenID megváltozott", "Invalid request" => "Érvénytelen kérés", -"Authentication error" => "Hitelesítési hiba", +"Unable to delete group" => "A csoport nem törölhető", +"Authentication error" => "Azonosítási hiba", +"Unable to delete user" => "A felhasználó nem törölhető", "Language changed" => "A nyelv megváltozott", +"Admins can't remove themself from the admin group" => "Adminisztrátorok nem távolíthatják el magukat az admin csoportból.", +"Unable to add user to group %s" => "A felhasználó nem adható hozzá ehhez a csoporthoz: %s", +"Unable to remove user from group %s" => "A felhasználó nem távolítható el ebből a csoportból: %s", "Disable" => "Letiltás", "Enable" => "Engedélyezés", "Saving..." => "Mentés...", "__language_name__" => "__language_name__", -"Add your App" => "App hozzáadása", -"Select an App" => "Egy App kiválasztása", +"Add your App" => "Az alkalmazás hozzáadása", +"More Apps" => "További alkalmazások", +"Select an App" => "Válasszon egy alkalmazást", "See application page at apps.owncloud.com" => "Lásd apps.owncloud.com, alkalmazások oldal", +"User Documentation" => "Felhasználói leírás", +"Administrator Documentation" => "Üzemeltetői leírás", +"Online Documentation" => "Online leírás", +"Forum" => "Fórum", +"Bugtracker" => "Hibabejelentések", +"Commercial Support" => "Megvásárolható támogatás", +"You have used %s of the available %s" => "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s", "Clients" => "Kliensek", +"Download Desktop Clients" => "Desktop kliensprogramok letöltése", +"Download Android Client" => "Android kliens letöltése", +"Download iOS Client" => "iOS kliens letöltése", "Password" => "Jelszó", -"Unable to change your password" => "Nem lehet megváltoztatni a jelszavad", -"Current password" => "Jelenlegi jelszó", -"New password" => "Új jelszó", -"show" => "Mutat", -"Change password" => "Jelszó megváltoztatása", +"Your password was changed" => "A jelszava megváltozott", +"Unable to change your password" => "A jelszó nem változtatható meg", +"Current password" => "A jelenlegi jelszó", +"New password" => "Az új jelszó", +"show" => "lássam", +"Change password" => "A jelszó megváltoztatása", "Email" => "Email", -"Your email address" => "Email címed", -"Fill in an email address to enable password recovery" => "Töltsd ki az email címet, hogy engedélyezhesd a jelszó-visszaállítást", +"Your email address" => "Az Ön emailcíme", +"Fill in an email address to enable password recovery" => "Töltse ki az emailcímet, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!", "Language" => "Nyelv", -"Help translate" => "Segíts lefordítani!", +"Help translate" => "Segítsen a fordításban!", +"WebDAV" => "WebDAV elérés: ", +"Use this address to connect to your ownCloud in your file manager" => "Ennek a címnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelőjével is is elérheti az állományait.", +"Version" => "Verzió", "Name" => "Név", "Groups" => "Csoportok", "Create" => "Létrehozás", -"Default Quota" => "Alapértelmezett kvóta", -"Other" => "Egyéb", -"Quota" => "Kvóta", +"Other" => "Más", +"Group Admin" => "Csoportadminisztrátor", "Delete" => "Törlés" ); diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index f2053b95279..d5057275d2b 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -19,8 +19,6 @@ "Name" => "Nomine", "Groups" => "Gruppos", "Create" => "Crear", -"Default Quota" => "Quota predeterminate", "Other" => "Altere", -"Quota" => "Quota", "Delete" => "Deler" ); diff --git a/settings/l10n/id.php b/settings/l10n/id.php index fd2be4856d9..575b0a233dd 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -27,9 +27,7 @@ "Name" => "Nama", "Groups" => "Group", "Create" => "Buat", -"Default Quota" => "Kuota default", "Other" => "Lain-lain", "Group Admin" => "Admin Grup", -"Quota" => "Quota", "Delete" => "Hapus" ); diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 79551579fc2..c9717932978 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -53,9 +53,7 @@ "Name" => "Nome", "Groups" => "Gruppi", "Create" => "Crea", -"Default Quota" => "Quota predefinita", "Other" => "Altro", "Group Admin" => "Gruppo di amministrazione", -"Quota" => "Quote", "Delete" => "Elimina" ); diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 847f696037d..29c38827566 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -53,9 +53,7 @@ "Name" => "名前", "Groups" => "グループ", "Create" => "作成", -"Default Quota" => "デフォルトのクォータサイズ", "Other" => "その他", "Group Admin" => "グループ管理者", -"Quota" => "クオータ", "Delete" => "削除" ); diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 26720b20619..a9d994f87c6 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -38,9 +38,7 @@ "Name" => "სახელი", "Groups" => "ჯგუფი", "Create" => "შექმნა", -"Default Quota" => "საწყისი ქვოტა", "Other" => "სხვა", "Group Admin" => "ჯგუფის ადმინისტრატორი", -"Quota" => "ქვოტა", "Delete" => "წაშლა" ); diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 286cac87c53..6556e1b93b8 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -41,9 +41,7 @@ "Name" => "이름", "Groups" => "그룹", "Create" => "만들기", -"Default Quota" => "기본 할당량", "Other" => "기타", "Group Admin" => "그룹 관리자", -"Quota" => "할당량", "Delete" => "삭제" ); diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index baa89a033b6..db09bdc1280 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -28,9 +28,7 @@ "Name" => "Numm", "Groups" => "Gruppen", "Create" => "Erstellen", -"Default Quota" => "Standard Quota", "Other" => "Aner", "Group Admin" => "Gruppen Admin", -"Quota" => "Quota", "Delete" => "Läschen" ); diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index f5fa8e29d96..0430fface00 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -31,8 +31,6 @@ "Name" => "Vardas", "Groups" => "Grupės", "Create" => "Sukurti", -"Default Quota" => "Numatytoji kvota", "Other" => "Kita", -"Quota" => "Limitas", "Delete" => "Ištrinti" ); diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 3f45d669b59..5ae9be48e4f 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -39,9 +39,7 @@ "Name" => "Vārds", "Groups" => "Grupas", "Create" => "Izveidot", -"Default Quota" => "Apjoms pēc noklusējuma", "Other" => "Cits", "Group Admin" => "Grupas administrators", -"Quota" => "Apjoms", "Delete" => "Izdzēst" ); diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 25a3fa80c47..4c5f7bf549b 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -52,9 +52,7 @@ "Name" => "Име", "Groups" => "Групи", "Create" => "Создај", -"Default Quota" => "Предефинирана квота", "Other" => "Останато", "Group Admin" => "Администратор на група", -"Quota" => "Квота", "Delete" => "Избриши" ); diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 608ed7e05d5..27eb4c2df9f 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -27,8 +27,6 @@ "Name" => "Nama", "Groups" => "Kumpulan", "Create" => "Buat", -"Default Quota" => "Kuota Lalai", "Other" => "Lain", -"Quota" => "Kuota", "Delete" => "Padam" ); diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 0800b6682e6..24a6085b024 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -21,7 +21,14 @@ "More Apps" => "Flere Apps", "Select an App" => "Velg en app", "See application page at apps.owncloud.com" => "Se applikasjonens side på apps.owncloud.org", +"User Documentation" => "Brukerdokumentasjon", +"Administrator Documentation" => "Administratordokumentasjon", +"Commercial Support" => "Kommersiell støtte", +"You have used %s of the available %s" => "Du har brukt %s av tilgjengelig %s", "Clients" => "Klienter", +"Download Desktop Clients" => "Last ned skrivebordsklienter", +"Download Android Client" => "Last ned Android-klient", +"Download iOS Client" => "Last ned iOS-klient", "Password" => "Passord", "Your password was changed" => "Passord har blitt endret", "Unable to change your password" => "Kunne ikke endre passordet ditt", @@ -34,12 +41,12 @@ "Fill in an email address to enable password recovery" => "Oppi epostadressen du vil tilbakestille passordet for", "Language" => "Språk", "Help translate" => "Bidra til oversettelsen", +"WebDAV" => "WebDAV", +"Version" => "Versjon", "Name" => "Navn", "Groups" => "Grupper", "Create" => "Opprett", -"Default Quota" => "Standard Kvote", "Other" => "Annet", "Group Admin" => "Gruppeadministrator", -"Quota" => "Kvote", "Delete" => "Slett" ); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 40d8742d7b3..583c044ba47 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -53,9 +53,7 @@ "Name" => "Naam", "Groups" => "Groepen", "Create" => "Creëer", -"Default Quota" => "Standaard limiet", "Other" => "Andere", "Group Admin" => "Groep beheerder", -"Quota" => "Limieten", "Delete" => "verwijderen" ); diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 92ff6d22df2..9f54fc9ee5f 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -26,6 +26,5 @@ "Groups" => "Grupper", "Create" => "Lag", "Other" => "Anna", -"Quota" => "Kvote", "Delete" => "Slett" ); diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index 0bed7a9a416..358b44bbec3 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -37,9 +37,7 @@ "Name" => "Nom", "Groups" => "Grops", "Create" => "Crea", -"Default Quota" => "Quota per defaut", "Other" => "Autres", "Group Admin" => "Grop Admin", -"Quota" => "Quota", "Delete" => "Escafa" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 3668421d9c7..1008726d36e 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -41,9 +41,7 @@ "Name" => "Nazwa", "Groups" => "Grupy", "Create" => "Utwórz", -"Default Quota" => "Domyślny udział", "Other" => "Inne", "Group Admin" => "Grupa Admin", -"Quota" => "Udział", "Delete" => "Usuń" ); diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index ebbdc85e45b..a731d142ce3 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -41,9 +41,7 @@ "Name" => "Nome", "Groups" => "Grupos", "Create" => "Criar", -"Default Quota" => "Quota Padrão", "Other" => "Outro", "Group Admin" => "Grupo Administrativo", -"Quota" => "Cota", "Delete" => "Apagar" ); diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 6c2a50047db..1cfa991464f 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -53,9 +53,7 @@ "Name" => "Nome", "Groups" => "Grupos", "Create" => "Criar", -"Default Quota" => "Quota por padrão", "Other" => "Outro", "Group Admin" => "Grupo Administrador", -"Quota" => "Quota", "Delete" => "Apagar" ); diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 26865c8c711..4c8b1ac420a 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -38,9 +38,7 @@ "Name" => "Nume", "Groups" => "Grupuri", "Create" => "Crează", -"Default Quota" => "Cotă implicită", "Other" => "Altele", "Group Admin" => "Grupul Admin ", -"Quota" => "Cotă", "Delete" => "Șterge" ); diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index bef330b92b7..48965f9a684 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -48,9 +48,7 @@ "Name" => "Имя", "Groups" => "Группы", "Create" => "Создать", -"Default Quota" => "Квота по умолчанию", "Other" => "Другое", "Group Admin" => "Группа Администраторы", -"Quota" => "Квота", "Delete" => "Удалить" ); diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index a964fe9166e..38b736a5c18 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -52,9 +52,7 @@ "Name" => "Имя", "Groups" => "Группы", "Create" => "Создать", -"Default Quota" => "Квота по умолчанию", "Other" => "Другой", "Group Admin" => "Группа Admin", -"Quota" => "квота", "Delete" => "Удалить" ); diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 6c46834beb1..4f4834921e9 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -35,9 +35,7 @@ "Name" => "නාමය", "Groups" => "සමූහය", "Create" => "තනන්න", -"Default Quota" => "සාමාන්‍ය සලාකය", "Other" => "වෙනත්", "Group Admin" => "කාණ්ඩ පරිපාලක", -"Quota" => "සලාකය", "Delete" => "මකා දමනවා" ); diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 08b9079c3ae..c3cf84f1fe8 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -41,9 +41,7 @@ "Name" => "Meno", "Groups" => "Skupiny", "Create" => "Vytvoriť", -"Default Quota" => "Predvolená kvóta", "Other" => "Iné", "Group Admin" => "Správca skupiny", -"Quota" => "Kvóta", "Delete" => "Odstrániť" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 01d1d481b97..ce12b4e3e22 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -41,9 +41,7 @@ "Name" => "Ime", "Groups" => "Skupine", "Create" => "Ustvari", -"Default Quota" => "Privzeta količinska omejitev", "Other" => "Drugo", "Group Admin" => "Skrbnik skupine", -"Quota" => "Količinska omejitev", "Delete" => "Izbriši" ); diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index be30ab45f53..9fb495a9ebb 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -41,9 +41,7 @@ "Name" => "Име", "Groups" => "Групе", "Create" => "Направи", -"Default Quota" => "Подразумевано ограничење", "Other" => "Друго", "Group Admin" => "Управник групе", -"Quota" => "Ограничење", "Delete" => "Обриши" ); diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 15e4bfd035e..bc4ec8c64d7 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -53,9 +53,7 @@ "Name" => "Namn", "Groups" => "Grupper", "Create" => "Skapa", -"Default Quota" => "Förvald datakvot", "Other" => "Annat", "Group Admin" => "Gruppadministratör", -"Quota" => "Kvot", "Delete" => "Radera" ); diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index cbc2eec8fb7..3b3b1f8dddf 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -40,9 +40,7 @@ "Name" => "பெயர்", "Groups" => "குழுக்கள்", "Create" => "உருவாக்குக", -"Default Quota" => "பொது இருப்பு பங்கு", "Other" => "மற்றவை", "Group Admin" => "குழு நிர்வாகி", -"Quota" => "பங்கு", "Delete" => "அழிக்க" ); diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 063ec8733ae..558af48df14 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -40,9 +40,7 @@ "Name" => "ชื่อ", "Groups" => "กลุ่ม", "Create" => "สร้าง", -"Default Quota" => "โควต้าที่กำหนดไว้เริ่มต้น", "Other" => "อื่นๆ", "Group Admin" => "ผู้ดูแลกลุ่ม", -"Quota" => "พื้นที่", "Delete" => "ลบ" ); diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 44dee92a3fc..295dbfab584 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -48,9 +48,7 @@ "Name" => "Ad", "Groups" => "Gruplar", "Create" => "Oluştur", -"Default Quota" => "Varsayılan Kota", "Other" => "Diğer", "Group Admin" => "Yönetici Grubu ", -"Quota" => "Kota", "Delete" => "Sil" ); diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index b9f48b2e881..d6a9e9fa491 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -53,9 +53,7 @@ "Name" => "Ім'я", "Groups" => "Групи", "Create" => "Створити", -"Default Quota" => "Квота за замовчуванням", "Other" => "Інше", "Group Admin" => "Адміністратор групи", -"Quota" => "Квота", "Delete" => "Видалити" ); diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 50259953acd..9651bee1124 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -41,9 +41,7 @@ "Name" => "Tên", "Groups" => "Nhóm", "Create" => "Tạo", -"Default Quota" => "Hạn ngạch mặt định", "Other" => "Khác", "Group Admin" => "Nhóm quản trị", -"Quota" => "Hạn ngạch", "Delete" => "Xóa" ); diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index cd6610d5a17..6afcc1ecd56 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -39,9 +39,7 @@ "Name" => "名字", "Groups" => "组", "Create" => "新建", -"Default Quota" => "默认限额", "Other" => "其他的", "Group Admin" => "群组管理员", -"Quota" => "限额", "Delete" => "删除" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 99fb0b2279c..00e51d211c4 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -53,9 +53,7 @@ "Name" => "名称", "Groups" => "组", "Create" => "创建", -"Default Quota" => "默认配额", "Other" => "其它", "Group Admin" => "组管理员", -"Quota" => "配额", "Delete" => "删除" ); diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 6589973bf99..d25ae4e149c 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -41,9 +41,7 @@ "Name" => "名稱", "Groups" => "群組", "Create" => "創造", -"Default Quota" => "預設容量限制", "Other" => "其他", "Group Admin" => "群組 管理員", -"Quota" => "容量限制", "Delete" => "刪除" ); -- cgit v1.2.3 From 329bddab481129b480ca187b694e507eff7fb125 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 31 Dec 2012 00:05:31 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/hu_HU.php | 62 ++++++--- apps/files/l10n/is.php | 62 +++++++++ apps/files_encryption/l10n/hu_HU.php | 4 +- apps/files_encryption/l10n/is.php | 6 + apps/files_external/l10n/fr.php | 4 +- apps/files_external/l10n/hu_HU.php | 23 ++- apps/files_external/l10n/is.php | 26 ++++ apps/files_sharing/l10n/hu_HU.php | 8 +- apps/files_sharing/l10n/is.php | 9 ++ apps/files_versions/l10n/hu_HU.php | 8 ++ apps/files_versions/l10n/is.php | 8 ++ apps/user_ldap/l10n/is.php | 5 + apps/user_webdavauth/l10n/hu_HU.php | 4 + apps/user_webdavauth/l10n/is.php | 4 + core/l10n/hu_HU.php | 1 + core/l10n/is.php | 100 +++++++++++++- l10n/cs_CZ/settings.po | 14 +- l10n/de/settings.po | 12 +- l10n/de_DE/settings.po | 12 +- l10n/es/settings.po | 14 +- l10n/es_AR/settings.po | 14 +- l10n/fr/files_external.po | 10 +- l10n/fr/settings.po | 14 +- l10n/hu_HU/core.po | 64 ++++----- l10n/hu_HU/files.po | 160 ++++++++++----------- l10n/hu_HU/files_encryption.po | 22 +-- l10n/hu_HU/files_external.po | 54 ++++---- l10n/hu_HU/files_sharing.po | 18 +-- l10n/hu_HU/files_versions.po | 22 +-- l10n/hu_HU/lib.po | 62 ++++----- l10n/hu_HU/settings.po | 16 +-- l10n/hu_HU/user_webdavauth.po | 10 +- l10n/is/core.po | 261 ++++++++++++++++++----------------- l10n/is/files.po | 199 +++++++++++++------------- l10n/is/files_encryption.po | 23 +-- l10n/is/files_external.po | 61 ++++---- l10n/is/files_sharing.po | 21 +-- l10n/is/files_versions.po | 23 +-- l10n/is/lib.po | 79 +++++------ l10n/is/settings.po | 127 ++++++++--------- l10n/is/user_ldap.po | 13 +- l10n/is/user_webdavauth.po | 11 +- l10n/it/settings.po | 14 +- l10n/sv/settings.po | 15 +- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/hu_HU.php | 28 ++-- lib/l10n/is.php | 34 +++++ settings/l10n/cs_CZ.php | 4 + settings/l10n/de.php | 4 + settings/l10n/de_DE.php | 4 + settings/l10n/es.php | 4 + settings/l10n/es_AR.php | 4 + settings/l10n/fr.php | 4 + settings/l10n/hu_HU.php | 8 +- settings/l10n/is.php | 62 +++++++++ settings/l10n/it.php | 4 + settings/l10n/sv.php | 4 + 66 files changed, 1155 insertions(+), 728 deletions(-) create mode 100644 apps/files/l10n/is.php create mode 100644 apps/files_encryption/l10n/is.php create mode 100644 apps/files_external/l10n/is.php create mode 100644 apps/files_sharing/l10n/is.php create mode 100644 apps/files_versions/l10n/hu_HU.php create mode 100644 apps/files_versions/l10n/is.php create mode 100644 apps/user_ldap/l10n/is.php create mode 100644 apps/user_webdavauth/l10n/hu_HU.php create mode 100644 apps/user_webdavauth/l10n/is.php create mode 100644 lib/l10n/is.php create mode 100644 settings/l10n/is.php (limited to 'apps') diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 083d5a391e1..f797c67b986 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -1,42 +1,62 @@ "Nincs hiba, a fájl sikeresen feltöltve.", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl meghaladja a MAX_FILE_SIZE direktívát ami meghatározott a HTML form-ban.", -"The uploaded file was only partially uploaded" => "Az eredeti fájl csak részlegesen van feltöltve.", -"No file was uploaded" => "Nem lett fájl feltöltve.", -"Missing a temporary folder" => "Hiányzik az ideiglenes könyvtár", -"Failed to write to disk" => "Nem írható lemezre", +"There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét.", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra.", +"The uploaded file was only partially uploaded" => "Az eredeti fájlt csak részben sikerült feltölteni.", +"No file was uploaded" => "Nem töltődött fel semmi", +"Missing a temporary folder" => "Hiányzik egy ideiglenes mappa", +"Failed to write to disk" => "Nem sikerült a lemezre történő írás", "Files" => "Fájlok", -"Unshare" => "Nem oszt meg", +"Unshare" => "Megosztás visszavonása", "Delete" => "Törlés", -"replace" => "cserél", +"Rename" => "Átnevezés", +"{new_name} already exists" => "{new_name} már létezik", +"replace" => "írjuk fölül", +"suggest name" => "legyen más neve", "cancel" => "mégse", -"undo" => "visszavon", +"replaced {new_name}" => "a(z) {new_name} állományt kicseréltük", +"undo" => "visszavonás", +"replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", +"unshared {files}" => "{files} fájl megosztása visszavonva", +"deleted {files}" => "{files} fájl törölve", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'", "generating ZIP-file, it may take some time." => "ZIP-fájl generálása, ez eltarthat egy ideig.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű", "Upload Error" => "Feltöltési hiba", -"Close" => "Bezár", +"Close" => "Bezárás", "Pending" => "Folyamatban", -"Upload cancelled." => "Feltöltés megszakítva", +"1 file uploading" => "1 fájl töltődik föl", +"{count} files uploading" => "{count} fájl töltődik föl", +"Upload cancelled." => "A feltöltést megszakítottuk.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", +"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja.", +"{count} files scanned" => "{count} fájlt találtunk", +"error while scanning" => "Hiba a fájllista-ellenőrzés során", "Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", +"1 folder" => "1 mappa", +"{count} folders" => "{count} mappa", +"1 file" => "1 fájl", +"{count} files" => "{count} fájl", "File handling" => "Fájlkezelés", "Maximum upload size" => "Maximális feltölthető fájlméret", -"max. possible: " => "max. lehetséges", -"Needed for multi-file and folder downloads." => "Kötegelt file- vagy mappaletöltéshez szükséges", -"Enable ZIP-download" => "ZIP-letöltés engedélyezése", +"max. possible: " => "max. lehetséges: ", +"Needed for multi-file and folder downloads." => "Kötegelt fájl- vagy mappaletöltéshez szükséges", +"Enable ZIP-download" => "A ZIP-letöltés engedélyezése", "0 is unlimited" => "0 = korlátlan", -"Maximum input size for ZIP files" => "ZIP file-ok maximum mérete", +"Maximum input size for ZIP files" => "ZIP-fájlok maximális kiindulási mérete", "Save" => "Mentés", "New" => "Új", "Text file" => "Szövegfájl", "Folder" => "Mappa", +"From link" => "Feltöltés linkről", "Upload" => "Feltöltés", -"Cancel upload" => "Feltöltés megszakítása", -"Nothing in here. Upload something!" => "Töltsön fel egy fájlt.", +"Cancel upload" => "A feltöltés megszakítása", +"Nothing in here. Upload something!" => "Itt nincs semmi. Töltsön fel valamit!", "Download" => "Letöltés", -"Upload too large" => "Feltöltés túl nagy", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "A fájlokat amit próbálsz feltölteni meghaladta a legnagyobb fájlméretet ezen a szerveren.", -"Files are being scanned, please wait." => "File-ok vizsgálata, kis türelmet", -"Current scanning" => "Aktuális vizsgálat" +"Upload too large" => "A feltöltés túl nagy", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.", +"Files are being scanned, please wait." => "A fájllista ellenőrzése zajlik, kis türelmet!", +"Current scanning" => "Ellenőrzés alatt" ); diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php new file mode 100644 index 00000000000..bca878873ac --- /dev/null +++ b/apps/files/l10n/is.php @@ -0,0 +1,62 @@ + "Engin villa, innsending heppnaðist", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Innsend skrá er stærri en upload_max stillingin í php.ini:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu.", +"The uploaded file was only partially uploaded" => "Einungis hluti af innsendri skrá skilaði sér", +"No file was uploaded" => "Engin skrá skilaði sér", +"Missing a temporary folder" => "Vantar bráðabirgðamöppu", +"Failed to write to disk" => "Tókst ekki að skrifa á disk", +"Files" => "Skrár", +"Unshare" => "Hætta deilingu", +"Delete" => "Eyða", +"Rename" => "Endurskýra", +"{new_name} already exists" => "{new_name} er þegar til", +"replace" => "yfirskrifa", +"suggest name" => "stinga upp á nafni", +"cancel" => "hætta við", +"replaced {new_name}" => "endurskýrði {new_name}", +"undo" => "afturkalla", +"replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}", +"unshared {files}" => "Hætti við deilingu á {files}", +"deleted {files}" => "eyddi {files}", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", +"generating ZIP-file, it may take some time." => "bý til ZIP skrá, það gæti tekið smá stund.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti.", +"Upload Error" => "Villa við innsendingu", +"Close" => "Loka", +"Pending" => "Bíður", +"1 file uploading" => "1 skrá innsend", +"{count} files uploading" => "{count} skrár innsendar", +"Upload cancelled." => "Hætt við innsendingu.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.", +"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud.", +"{count} files scanned" => "{count} skrár skimaðar", +"error while scanning" => "villa við skimun", +"Name" => "Nafn", +"Size" => "Stærð", +"Modified" => "Breytt", +"1 folder" => "1 mappa", +"{count} folders" => "{count} möppur", +"1 file" => "1 skrá", +"{count} files" => "{count} skrár", +"File handling" => "Meðhöndlun skrár", +"Maximum upload size" => "Hámarks stærð innsendingar", +"max. possible: " => "hámark mögulegt: ", +"Needed for multi-file and folder downloads." => "Nauðsynlegt til að sækja margar skrár og möppur í einu.", +"Enable ZIP-download" => "Virkja ZIP niðurhal.", +"0 is unlimited" => "0 er ótakmarkað", +"Maximum input size for ZIP files" => "Hámarks inntaksstærð fyrir ZIP skrár", +"Save" => "Vista", +"New" => "Nýtt", +"Text file" => "Texta skrá", +"Folder" => "Mappa", +"From link" => "Af tengli", +"Upload" => "Senda inn", +"Cancel upload" => "Hætta við innsendingu", +"Nothing in here. Upload something!" => "Ekkert hér. Sendu eitthvað inn!", +"Download" => "Niðurhal", +"Upload too large" => "Innsend skrá of stór", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni.", +"Files are being scanned, please wait." => "Verið er að skima skrár, vinsamlegast hinkraðu.", +"Current scanning" => "Er að skima" +); diff --git a/apps/files_encryption/l10n/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php index 4352d8b7712..8ea0f731736 100644 --- a/apps/files_encryption/l10n/hu_HU.php +++ b/apps/files_encryption/l10n/hu_HU.php @@ -1,6 +1,6 @@ "Titkosítás", -"Exclude the following file types from encryption" => "A következő fájl típusok kizárása a titkosításból", +"Enable Encryption" => "A titkosítás engedélyezése", "None" => "Egyik sem", -"Enable Encryption" => "Titkosítás engedélyezése" +"Exclude the following file types from encryption" => "A következő fájltípusok kizárása a titkosításból" ); diff --git a/apps/files_encryption/l10n/is.php b/apps/files_encryption/l10n/is.php new file mode 100644 index 00000000000..3210ecb4f8a --- /dev/null +++ b/apps/files_encryption/l10n/is.php @@ -0,0 +1,6 @@ + "Dulkóðun", +"Enable Encryption" => "Virkja dulkóðun", +"None" => "Ekkert", +"Exclude the following file types from encryption" => "Undanskilja eftirfarandi skráartegundir frá dulkóðun" +); diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index 2c95e0d8b09..0825a961b1c 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -5,8 +5,8 @@ "Fill out all required fields" => "Veuillez remplir tous les champs requis", "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", -"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 possible. 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 possible. Contactez votre administrateur système pour l'installer.", +"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.", "External Storage" => "Stockage externe", "Mount point" => "Point de montage", "Backend" => "Infrastructure", diff --git a/apps/files_external/l10n/hu_HU.php b/apps/files_external/l10n/hu_HU.php index e915c34b950..b8973c96411 100644 --- a/apps/files_external/l10n/hu_HU.php +++ b/apps/files_external/l10n/hu_HU.php @@ -1,5 +1,26 @@ "Érvényes hozzáférés", +"Error configuring Dropbox storage" => "A Dropbox tárolót nem sikerült beállítani", +"Grant access" => "Megadom a hozzáférést", +"Fill out all required fields" => "Töltse ki az összes szükséges mezőt", +"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.", +"External Storage" => "Külső tárolási szolgáltatások becsatolása", +"Mount point" => "Hova csatoljuk", +"Backend" => "Külső tárolórendszer", +"Configuration" => "Beállítások", +"Options" => "Opciók", +"Applicable" => "Érvényességi kör", +"Add mount point" => "Új csatolás létrehozása", +"None set" => "Nincs beállítva", +"All Users" => "Az összes felhasználó", "Groups" => "Csoportok", "Users" => "Felhasználók", -"Delete" => "Törlés" +"Delete" => "Törlés", +"Enable User External Storage" => "Külső tárolók engedélyezése a felhasználók részére", +"Allow users to mount their own external storage" => "Lehetővé teszi, hogy a felhasználók külső tárolási szolgáltatásokat csatoljanak be a saját területükre", +"SSL root certificates" => "SSL tanúsítványok", +"Import Root Certificate" => "SSL tanúsítványok importálása" ); diff --git a/apps/files_external/l10n/is.php b/apps/files_external/l10n/is.php new file mode 100644 index 00000000000..5110bf5ad27 --- /dev/null +++ b/apps/files_external/l10n/is.php @@ -0,0 +1,26 @@ + "Aðgengi veitt", +"Error configuring Dropbox storage" => "Villa við að setja upp Dropbox gagnasvæði", +"Grant access" => "Veita aðgengi", +"Fill out all required fields" => "Fylltu út alla skilyrta reiti", +"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", +"Mount point" => "Mount svæði", +"Backend" => "Stjórnun", +"Configuration" => "Uppsetning", +"Options" => "Stillingar", +"Applicable" => "Gilt", +"Add mount point" => "Bæta við mount svæði", +"None set" => "Ekkert sett", +"All Users" => "Allir notendur", +"Groups" => "Hópar", +"Users" => "Notendur", +"Delete" => "Eyða", +"Enable User External Storage" => "Virkja ytra gagnasvæði notenda", +"Allow users to mount their own external storage" => "Leyfa notendum að bæta við sínum eigin ytri gagnasvæðum", +"SSL root certificates" => "SSL rótar skilríki", +"Import Root Certificate" => "Flytja inn rótar skilríki" +); diff --git a/apps/files_sharing/l10n/hu_HU.php b/apps/files_sharing/l10n/hu_HU.php index be706461d58..f8ca541260d 100644 --- a/apps/files_sharing/l10n/hu_HU.php +++ b/apps/files_sharing/l10n/hu_HU.php @@ -1,3 +1,9 @@ "Jelszó" +"Password" => "Jelszó", +"Submit" => "Elküld", +"%s shared the folder %s with you" => "%s megosztotta Önnel ezt a mappát: %s", +"%s shared the file %s with you" => "%s megosztotta Önnel ezt az állományt: %s", +"Download" => "Letöltés", +"No preview available for" => "Nem áll rendelkezésre előnézet ehhez: ", +"web services under your control" => "webszolgáltatások saját kézben" ); diff --git a/apps/files_sharing/l10n/is.php b/apps/files_sharing/l10n/is.php new file mode 100644 index 00000000000..bf1975c54ae --- /dev/null +++ b/apps/files_sharing/l10n/is.php @@ -0,0 +1,9 @@ + "Lykilorð", +"Submit" => "Senda", +"%s shared the folder %s with you" => "%s deildi möppunni %s með þér", +"%s shared the file %s with you" => "%s deildi skránni %s með þér", +"Download" => "Niðurhal", +"No preview available for" => "Yfirlit ekki í boði fyrir", +"web services under your control" => "vefþjónusta undir þinni stjórn" +); diff --git a/apps/files_versions/l10n/hu_HU.php b/apps/files_versions/l10n/hu_HU.php new file mode 100644 index 00000000000..1575eda3f35 --- /dev/null +++ b/apps/files_versions/l10n/hu_HU.php @@ -0,0 +1,8 @@ + "Az összes korábbi változat törlése", +"History" => "Korábbi változatok", +"Versions" => "Az állományok korábbi változatai", +"This will delete all existing backup versions of your files" => "Itt törölni tudja állományainak összes korábbi verzióját", +"Files Versioning" => "Az állományok verzionálása", +"Enable" => "engedélyezve" +); diff --git a/apps/files_versions/l10n/is.php b/apps/files_versions/l10n/is.php new file mode 100644 index 00000000000..f63939d3af9 --- /dev/null +++ b/apps/files_versions/l10n/is.php @@ -0,0 +1,8 @@ + "Úrelda allar útgáfur", +"History" => "Saga", +"Versions" => "Útgáfur", +"This will delete all existing backup versions of your files" => "Þetta mun eyða öllum afritum af skránum þínum", +"Files Versioning" => "Útgáfur af skrám", +"Enable" => "Virkja" +); diff --git a/apps/user_ldap/l10n/is.php b/apps/user_ldap/l10n/is.php new file mode 100644 index 00000000000..29bc7692795 --- /dev/null +++ b/apps/user_ldap/l10n/is.php @@ -0,0 +1,5 @@ + "Netþjónn", +"Password" => "Lykilorð", +"Help" => "Hjálp" +); diff --git a/apps/user_webdavauth/l10n/hu_HU.php b/apps/user_webdavauth/l10n/hu_HU.php new file mode 100644 index 00000000000..75a23ed7be4 --- /dev/null +++ b/apps/user_webdavauth/l10n/hu_HU.php @@ -0,0 +1,4 @@ + "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "Az ownCloud rendszer erre a címre fogja elküldeni a felhasználók bejelentkezési adatait. Ha 401-es vagy 403-as http kódot kap vissza, azt sikertelen azonosításként fogja értelmezni, minden más kódot sikeresnek fog tekinteni." +); diff --git a/apps/user_webdavauth/l10n/is.php b/apps/user_webdavauth/l10n/is.php new file mode 100644 index 00000000000..13d9a1fe8f4 --- /dev/null +++ b/apps/user_webdavauth/l10n/is.php @@ -0,0 +1,4 @@ + "Vefslóð: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud mun senda auðkenni notenda á þessa vefslóð og túkla svörin http 401 og http 403 sem rangar auðkenniupplýsingar og öll önnur svör sem rétt." +); diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index d1bfb303e6f..9ac326d45ec 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -5,6 +5,7 @@ "Settings" => "Beállítások", "seconds ago" => "másodperccel ezelőtt", "1 minute ago" => "1 perccel ezelőtt", +"1 hour ago" => "1 órája", "today" => "ma", "yesterday" => "tegnap", "last month" => "múlt hónapban", diff --git a/core/l10n/is.php b/core/l10n/is.php index 23117cddf8b..53b2fe88839 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -1,24 +1,110 @@ "Notandinn %s deildi skrá með þér", +"User %s shared a folder with you" => "Notandinn %s deildi möppu með þér", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi skránni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s", "Category type not provided." => "Flokkur ekki gefin", +"No category to add?" => "Enginn flokkur til að bæta við?", +"This category already exists: " => "Þessi flokkur er þegar til:", +"Object type not provided." => "Tegund ekki í boði.", +"%s ID not provided." => "%s ID ekki í boði.", +"Error adding %s to favorites." => "Villa við að bæta %s við eftirlæti.", +"No categories selected for deletion." => "Enginn flokkur valinn til eyðingar.", +"Error removing %s from favorites." => "Villa við að fjarlægja %s úr eftirlæti.", +"Settings" => "Stillingar", "seconds ago" => "sek síðan", "1 minute ago" => "1 min síðan", "{minutes} minutes ago" => "{minutes} min síðan", +"1 hour ago" => "Fyrir 1 klst.", +"{hours} hours ago" => "fyrir {hours} klst.", "today" => "í dag", "yesterday" => "í gær", "{days} days ago" => "{days} dagar síðan", "last month" => "síðasta mánuði", +"{months} months ago" => "fyrir {months} mánuðum", "months ago" => "mánuðir síðan", "last year" => "síðasta ári", "years ago" => "árum síðan", +"Choose" => "Veldu", +"Cancel" => "Hætta við", +"No" => "Nei", +"Yes" => "Já", +"Ok" => "Í lagi", +"The object type is not specified." => "Tegund ekki tilgreind", +"Error" => "Villa", +"The app name is not specified." => "Nafn forrits ekki tilgreint", +"The required file {file} is not installed!" => "Umbeðina skráin {file} ekki tiltæk!", +"Error while sharing" => "Villa við deilingu", +"Error while unsharing" => "Villa við að hætta deilingu", +"Error while changing permissions" => "Villa við að breyta aðgangsheimildum", +"Shared with you and the group {group} by {owner}" => "Deilt með þér og hópnum {group} af {owner}", +"Shared with you by {owner}" => "Deilt með þér af {owner}", +"Share with" => "Deila með", +"Share with link" => "Deila með veftengli", +"Password protect" => "Verja með lykilorði", "Password" => "Lykilorð", +"Email link to person" => "Senda vefhlekk í tölvupóstu til notenda", +"Send" => "Senda", +"Set expiration date" => "Setja gildistíma", +"Expiration date" => "Gildir til", +"Share via email:" => "Deila með tölvupósti:", +"No people found" => "Engir notendur fundust", +"Resharing is not allowed" => "Endurdeiling er ekki leyfð", +"Shared in {item} with {user}" => "Deilt með {item} ásamt {user}", +"Unshare" => "Hætta deilingu", +"can edit" => "getur breytt", +"access control" => "aðgangsstýring", +"create" => "mynda", +"update" => "uppfæra", +"delete" => "eyða", +"share" => "deila", +"Password protected" => "Verja með lykilorði", +"Error unsetting expiration date" => "Villa við að aftengja gildistíma", +"Error setting expiration date" => "Villa við að setja gildistíma", +"Sending ..." => "Sendi ...", +"Email sent" => "Tölvupóstur sendur", +"ownCloud password reset" => "endursetja ownCloud lykilorð", +"Use the following link to reset your password: {link}" => "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}", +"You will receive a link to reset your password via Email." => "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið.", +"Reset email send." => "Beiðni um endursetningu send.", +"Request failed!" => "Beiðni mistókst!", "Username" => "Notendanafn", +"Request reset" => "Endursetja lykilorð", +"Your password was reset" => "Lykilorðið þitt hefur verið endursett.", +"To login page" => "Fara á innskráningarsíðu", +"New password" => "Nýtt lykilorð", +"Reset password" => "Endursetja lykilorð", "Personal" => "Persónustillingar", +"Users" => "Notendur", +"Apps" => "Forrit", "Admin" => "Vefstjórn", "Help" => "Help", +"Access forbidden" => "Aðgangur bannaður", "Cloud not found" => "Skýið finnst eigi", "Edit categories" => "Breyta flokkum", "Add" => "Bæta", +"Security Warning" => "Öryggis aðvörun", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Enginn traustur slembitölugjafi í boði, vinsamlegast virkjaðu PHP OpenSSL viðbótina.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Án öruggs slembitölugjafa er mögulegt að sjá fyrir öryggis auðkenni til að endursetja lykilorð og komast inn á aðganginn þinn.", +"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." => "Gagnamappan þín er að öllum líkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með því að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina.", "Create an admin account" => "Útbúa vefstjóra aðgang", +"Advanced" => "Ítarlegt", +"Data folder" => "Gagnamappa", +"Configure the database" => "Stilla gagnagrunn", +"will be used" => "verður notað", +"Database user" => "Notandi gagnagrunns", +"Database password" => "Lykilorð gagnagrunns", +"Database name" => "Nafn gagnagrunns", +"Database tablespace" => "Töflusvæði gagnagrunns", +"Database host" => "Netþjónn gagnagrunns", +"Finish setup" => "Ljúka uppsetningu", +"Sunday" => "Sunnudagur", +"Monday" => "Mánudagur", +"Tuesday" => "Þriðjudagur", +"Wednesday" => "Miðvikudagur", +"Thursday" => "Fimmtudagur", +"Friday" => "Föstudagur", +"Saturday" => "Laugardagur", "January" => "Janúar", "February" => "Febrúar", "March" => "Mars", @@ -29,8 +115,20 @@ "August" => "Ágúst", "September" => "September", "October" => "Október", +"November" => "Nóvember", +"December" => "Desember", +"web services under your control" => "vefþjónusta undir þinni stjórn", "Log out" => "Útskrá", +"Automatic logon rejected!" => "Sjálfvirkri innskráningu hafnað!", +"If you did not change your password recently, your account may be compromised!" => "Ef þú breyttir ekki lykilorðinu þínu fyrir skömmu, er mögulegt að einhver annar hafi komist inn á aðganginn þinn.", +"Please change your password to secure your account again." => "Vinsamlegast breyttu lykilorðinu þínu til að tryggja öryggi þitt.", +"Lost your password?" => "Týndir þú lykilorðinu?", +"remember" => "muna eftir mér", +"Log in" => "Skrá inn", "You are logged out." => "Þú ert útskráð(ur).", "prev" => "fyrra", -"next" => "næsta" +"next" => "næsta", +"Security Warning!" => "Öryggis aðvörun!", +"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Vinsamlegast staðfestu lykilorðið þitt.
Í öryggisskyni munum við biðja þig um að skipta um lykilorð af og til.", +"Verify" => "Staðfesta" ); diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index d822114feb6..2fd34e04214 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 20:08+0000\n" +"Last-Translator: Tomáš Chvátal \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" @@ -250,11 +250,11 @@ msgstr "Vytvořit" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Výchozí úložiště" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Neomezeně" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -266,11 +266,11 @@ msgstr "Správa skupiny" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Úložiště" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Výchozí" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 1343f1761fe..129f9393516 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 00:15+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" @@ -261,11 +261,11 @@ msgstr "Anlegen" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Standard-Speicher" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Unbegrenzt" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -277,11 +277,11 @@ msgstr "Gruppenadministrator" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Speicher" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Standard" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 8e49c577c50..cad62cf5996 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 00:21+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" @@ -261,11 +261,11 @@ msgstr "Anlegen" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Standard-Speicher" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Unbegrenzt" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -277,11 +277,11 @@ msgstr "Gruppenadministrator" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Speicher" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Standard" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index e6ce79afba7..be3f8676b46 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 00:45+0000\n" +"Last-Translator: Agustin Ferrario \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" @@ -256,11 +256,11 @@ msgstr "Crear" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Almacenamiento Predeterminado" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ilimitado" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -272,11 +272,11 @@ msgstr "Grupo admin" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Alamacenamiento" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Predeterminado" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 9946b227e27..5e4d44648a9 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 00:45+0000\n" +"Last-Translator: Agustin Ferrario \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -246,11 +246,11 @@ msgstr "Crear" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Almacenamiento Predeterminado" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ilimitado" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -262,11 +262,11 @@ msgstr "Grupo Administrador" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Almacenamiento" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Predeterminado" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index a8f3ff32125..02af3bd71fb 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" -"PO-Revision-Date: 2012-12-28 23:07+0000\n" -"Last-Translator: ouafnico \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 10:41+0000\n" +"Last-Translator: Romain DEP. \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" @@ -47,14 +47,14 @@ msgstr "Erreur lors de la configuration du support de stockage Google Drive" 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 possible. Contactez votre administrateur système pour l'installer." +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:435 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 possible. Contactez votre administrateur système pour l'installer." +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." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 1076e0b9797..2b0461bacab 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 11:04+0000\n" +"Last-Translator: Romain DEP. \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" @@ -258,11 +258,11 @@ msgstr "Créer" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Support de stockage par défaut" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Illimité" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -274,11 +274,11 @@ msgstr "Groupe Admin" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Support de stockage" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Défaut" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index be9005b3379..827fa8bff4f 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 09:40+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" @@ -100,7 +100,7 @@ msgstr "" #: js/js.js:707 msgid "1 hour ago" -msgstr "" +msgstr "1 órája" #: js/js.js:708 msgid "{hours} hours ago" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Hiba" @@ -177,7 +177,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -205,11 +205,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Jelszó" @@ -274,23 +274,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -314,8 +314,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Felhasználónév" @@ -404,44 +404,44 @@ msgstr "" msgid "Create an admin account" msgstr "Rendszergazdafiók létrehozása" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Haladó" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Adatkönyvtár" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Adatbázis konfigurálása" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "használva lesz" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Adatbázis felhasználónév" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Adatbázis jelszó" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Adatbázis név" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Adatbázis szerver" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Beállítás befejezése" @@ -529,29 +529,29 @@ msgstr "webszolgáltatások az irányításod alatt" msgid "Log out" msgstr "Kilépés" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Elfelejtett jelszó?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "emlékezzen" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Bejelentkezés" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index cddd901f078..d430e38083e 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 20:37+0000\n" +"Last-Translator: Laszlo Tornoci \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" @@ -22,169 +22,169 @@ msgstr "" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" -msgstr "Nincs hiba, a fájl sikeresen feltöltve." +msgstr "A fájlt sikerült feltölteni" #: ajax/upload.php:21 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +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:23 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "A feltöltött fájl meghaladja a MAX_FILE_SIZE direktívát ami meghatározott a HTML form-ban." +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:25 msgid "The uploaded file was only partially uploaded" -msgstr "Az eredeti fájl csak részlegesen van feltöltve." +msgstr "Az eredeti fájlt csak részben sikerült feltölteni." #: ajax/upload.php:26 msgid "No file was uploaded" -msgstr "Nem lett fájl feltöltve." +msgstr "Nem töltődött fel semmi" #: ajax/upload.php:27 msgid "Missing a temporary folder" -msgstr "Hiányzik az ideiglenes könyvtár" +msgstr "Hiányzik egy ideiglenes mappa" #: ajax/upload.php:28 msgid "Failed to write to disk" -msgstr "Nem írható lemezre" +msgstr "Nem sikerült a lemezre történő írás" #: appinfo/app.php:10 msgid "Files" msgstr "Fájlok" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" -msgstr "Nem oszt meg" +msgstr "Megosztás visszavonása" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Törlés" #: js/fileactions.js:181 msgid "Rename" -msgstr "" +msgstr "Átnevezés" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} már létezik" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" -msgstr "cserél" +msgstr "írjuk fölül" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" -msgstr "" +msgstr "legyen más neve" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "mégse" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" -msgstr "" +msgstr "a(z) {new_name} állományt kicseréltük" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" -msgstr "visszavon" +msgstr "visszavonás" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" -msgstr "" +msgstr "{files} fájl megosztása visszavonva" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" -msgstr "" +msgstr "{files} fájl törölve" #: js/files.js:33 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-fájl generálása, ez eltarthat egy ideig." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Feltöltési hiba" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" -msgstr "Bezár" +msgstr "Bezárás" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Folyamatban" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" -msgstr "" +msgstr "1 fájl töltődik föl" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" -msgstr "" +msgstr "{count} fájl töltődik föl" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." -msgstr "Feltöltés megszakítva" +msgstr "A feltöltést megszakítottuk." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "" +msgstr "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" -msgstr "" +msgstr "{count} fájlt találtunk" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" -msgstr "" +msgstr "Hiba a fájllista-ellenőrzés során" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Név" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Méret" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Módosítva" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" -msgstr "" +msgstr "1 mappa" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" -msgstr "" +msgstr "{count} mappa" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" -msgstr "" +msgstr "1 fájl" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" -msgstr "" +msgstr "{count} fájl" #: templates/admin.php:5 msgid "File handling" @@ -196,15 +196,15 @@ msgstr "Maximális feltölthető fájlméret" #: templates/admin.php:9 msgid "max. possible: " -msgstr "max. lehetséges" +msgstr "max. lehetséges: " #: templates/admin.php:12 msgid "Needed for multi-file and folder downloads." -msgstr "Kötegelt file- vagy mappaletöltéshez szükséges" +msgstr "Kötegelt fájl- vagy mappaletöltéshez szükséges" #: templates/admin.php:14 msgid "Enable ZIP-download" -msgstr "ZIP-letöltés engedélyezése" +msgstr "A ZIP-letöltés engedélyezése" #: templates/admin.php:17 msgid "0 is unlimited" @@ -212,7 +212,7 @@ msgstr "0 = korlátlan" #: templates/admin.php:19 msgid "Maximum input size for ZIP files" -msgstr "ZIP file-ok maximum mérete" +msgstr "ZIP-fájlok maximális kiindulási mérete" #: templates/admin.php:23 msgid "Save" @@ -232,7 +232,7 @@ msgstr "Mappa" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Feltöltés linkről" #: templates/index.php:35 msgid "Upload" @@ -240,30 +240,30 @@ msgstr "Feltöltés" #: templates/index.php:43 msgid "Cancel upload" -msgstr "Feltöltés megszakítása" +msgstr "A feltöltés megszakítása" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" -msgstr "Töltsön fel egy fájlt." +msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Letöltés" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" -msgstr "Feltöltés túl nagy" +msgstr "A feltöltés túl nagy" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "A fájlokat amit próbálsz feltölteni meghaladta a legnagyobb fájlméretet ezen a szerveren." +msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." -msgstr "File-ok vizsgálata, kis türelmet" +msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" -msgstr "Aktuális vizsgálat" +msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index 8fa556e4714..896e96e2c73 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -8,28 +8,28 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 19:46+0200\n" -"PO-Revision-Date: 2012-08-26 09:01+0000\n" -"Last-Translator: Csaba Orban \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 17:43+0000\n" +"Last-Translator: Laszlo Tornoci \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" "Content-Transfer-Encoding: 8bit\n" "Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "Encryption" msgstr "Titkosítás" -#: templates/settings.php:4 -msgid "Exclude the following file types from encryption" -msgstr "A következő fájl típusok kizárása a titkosításból" +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "A titkosítás engedélyezése" -#: templates/settings.php:5 +#: templates/settings.php:7 msgid "None" msgstr "Egyik sem" -#: templates/settings.php:10 -msgid "Enable Encryption" -msgstr "Titkosítás engedélyezése" +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" +msgstr "A következő fájltípusok kizárása a titkosításból" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index b77194ab265..450c7e05616 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 19:20+0000\n" +"Last-Translator: Laszlo Tornoci \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" @@ -19,76 +19,76 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Érvényes hozzáférés" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "A Dropbox tárolót nem sikerült beállítani" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Megadom a hozzáférést" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Töltse ki az összes szükséges mezőt" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Adjon meg egy érvényes Dropbox app key-t és secretet!" #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "A Google Drive tárolót nem sikerült beállítani" #: lib/config.php:434 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +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:435 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 "" +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." #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Külső tárolási szolgáltatások becsatolása" #: templates/settings.php:8 templates/settings.php:22 msgid "Mount point" -msgstr "" +msgstr "Hova csatoljuk" #: templates/settings.php:9 msgid "Backend" -msgstr "" +msgstr "Külső tárolórendszer" #: templates/settings.php:10 msgid "Configuration" -msgstr "" +msgstr "Beállítások" #: templates/settings.php:11 msgid "Options" -msgstr "" +msgstr "Opciók" #: templates/settings.php:12 msgid "Applicable" -msgstr "" +msgstr "Érvényességi kör" #: templates/settings.php:27 msgid "Add mount point" -msgstr "" +msgstr "Új csatolás létrehozása" #: templates/settings.php:85 msgid "None set" -msgstr "" +msgstr "Nincs beállítva" #: templates/settings.php:86 msgid "All Users" -msgstr "" +msgstr "Az összes felhasználó" #: templates/settings.php:87 msgid "Groups" @@ -99,22 +99,22 @@ msgid "Users" msgstr "Felhasználók" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Törlés" #: templates/settings.php:124 msgid "Enable User External Storage" -msgstr "" +msgstr "Külső tárolók engedélyezése a felhasználók részére" #: templates/settings.php:125 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Lehetővé teszi, hogy a felhasználók külső tárolási szolgáltatásokat csatoljanak be a saját területükre" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" -msgstr "" +msgstr "SSL tanúsítványok" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" -msgstr "" +msgstr "SSL tanúsítványok importálása" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 4270813b4c0..0534ea09d43 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 17:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 17:39+0000\n" +"Last-Translator: Laszlo Tornoci \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" @@ -24,26 +24,26 @@ msgstr "Jelszó" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Elküld" #: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s megosztotta Önnel ezt a mappát: %s" #: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s megosztotta Önnel ezt az állományt: %s" #: templates/public.php:22 templates/public.php:38 msgid "Download" -msgstr "" +msgstr "Letöltés" #: templates/public.php:37 msgid "No preview available for" -msgstr "" +msgstr "Nem áll rendelkezésre előnézet ehhez: " #: templates/public.php:43 msgid "web services under your control" -msgstr "" +msgstr "webszolgáltatások saját kézben" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index b55e474da7f..0a39722ad7f 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 17:24+0000\n" +"Last-Translator: Laszlo Tornoci \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" @@ -17,26 +17,26 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 +#: js/settings-personal.js:31 templates/settings-personal.php:7 msgid "Expire all versions" -msgstr "" +msgstr "Az összes korábbi változat törlése" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "Korábbi változatok" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Az állományok korábbi változatai" -#: templates/settings-personal.php:7 +#: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Itt törölni tudja állományainak összes korábbi verzióját" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Az állományok verzionálása" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "engedélyezve" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 18f4e74d072..1a78f30958a 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 09:34+0000\n" +"Last-Translator: Laszlo Tornoci \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" @@ -18,45 +18,45 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:287 msgid "Help" msgstr "Súgó" -#: app.php:292 +#: app.php:294 msgid "Personal" msgstr "Személyes" -#: app.php:297 +#: app.php:299 msgid "Settings" msgstr "Beállítások" -#: app.php:302 +#: app.php:304 msgid "Users" msgstr "Felhasználók" -#: app.php:309 +#: app.php:311 msgid "Apps" msgstr "Alkalmazások" -#: app.php:311 +#: app.php:313 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." -msgstr "ZIP-letöltés letiltva" +msgstr "A ZIP-letöltés nem engedélyezett." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." -msgstr "A file-okat egyenként kell letölteni" +msgstr "A fájlokat egyenként kell letölteni" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" -msgstr "Vissza a File-okhoz" +msgstr "Vissza a Fájlokhoz" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." -msgstr "Túl nagy file-ok a zip-generáláshoz" +msgstr "A kiválasztott fájlok túl nagy a zip tömörítéshez." #: json.php:28 msgid "Application is not enabled" @@ -68,7 +68,7 @@ msgstr "Hitelesítési hiba" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "A token lejárt. Frissítsd az oldalt." +msgstr "A token lejárt. Frissítse az oldalt." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" @@ -80,29 +80,29 @@ msgstr "Szöveg" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Képek" #: template.php:103 msgid "seconds ago" -msgstr "másodperccel ezelőtt" +msgstr "másodperce" #: template.php:104 msgid "1 minute ago" -msgstr "1 perccel ezelőtt" +msgstr "1 perce" #: template.php:105 #, php-format msgid "%d minutes ago" -msgstr "%d perccel ezelőtt" +msgstr "%d perce" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "1 órája" #: template.php:107 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d órája" #: template.php:108 msgid "today" @@ -115,7 +115,7 @@ msgstr "tegnap" #: template.php:110 #, php-format msgid "%d days ago" -msgstr "%d évvel ezelőtt" +msgstr "%d napja" #: template.php:111 msgid "last month" @@ -124,7 +124,7 @@ msgstr "múlt hónapban" #: template.php:112 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d hónapja" #: template.php:113 msgid "last year" @@ -132,22 +132,22 @@ msgstr "tavaly" #: template.php:114 msgid "years ago" -msgstr "évvel ezelőtt" +msgstr "éve" #: updater.php:75 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s elérhető. További információ." #: updater.php:77 msgid "up to date" -msgstr "" +msgstr "a legfrissebb változat" #: updater.php:80 msgid "updates check is disabled" -msgstr "" +msgstr "A frissitések ellenőrzése nincs engedélyezve." #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Ez a kategória nem található: \"%s\"" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index c1f721a18a4..b00e728cc43 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 14:17+0000\n" +"Last-Translator: Laszlo Tornoci \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" @@ -115,7 +115,7 @@ msgstr "Lásd apps.owncloud.com, alkalmazások oldal" #: templates/apps.php:32 msgid "-licensed by " -msgstr "" +msgstr "-a jogtuladonos " #: templates/help.php:3 msgid "User Documentation" @@ -196,11 +196,11 @@ msgstr "Email" #: templates/personal.php:34 msgid "Your email address" -msgstr "Az Ön emailcíme" +msgstr "Az Ön email címe" #: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" -msgstr "Töltse ki az emailcímet, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!" +msgstr "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!" #: templates/personal.php:41 templates/personal.php:42 msgid "Language" @@ -212,7 +212,7 @@ msgstr "Segítsen a fordításban!" #: templates/personal.php:52 msgid "WebDAV" -msgstr "WebDAV elérés: " +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" @@ -230,7 +230,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "A programot az ownCloud közösség fejleszti. A forráskód az AGPL feltételei mellett használható föl." #: templates/users.php:21 templates/users.php:81 msgid "Name" diff --git a/l10n/hu_HU/user_webdavauth.po b/l10n/hu_HU/user_webdavauth.po index 5b8d806958e..5d89219034f 100644 --- a/l10n/hu_HU/user_webdavauth.po +++ b/l10n/hu_HU/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 20:47+0000\n" +"Last-Translator: Laszlo Tornoci \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" @@ -19,11 +19,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "Az ownCloud rendszer erre a címre fogja elküldeni a felhasználók bejelentkezési adatait. Ha 401-es vagy 403-as http kódot kap vissza, azt sikertelen azonosításként fogja értelmezni, minden más kódot sikeresnek fog tekinteni." diff --git a/l10n/is/core.po b/l10n/is/core.po index 4432000b3cc..f21c418fab2 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 14:48+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,26 +22,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Notandinn %s deildi skrá með þér" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Notandinn %s deildi möppu með þér" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Notandinn %s deildi skránni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -48,41 +49,41 @@ msgstr "Flokkur ekki gefin" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "" +msgstr "Enginn flokkur til að bæta við?" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "" +msgstr "Þessi flokkur er þegar til:" #: 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 "" +msgstr "Tegund ekki í boði." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID ekki í boði." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Villa við að bæta %s við eftirlæti." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "" +msgstr "Enginn flokkur valinn til eyðingar." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Villa við að fjarlægja %s úr eftirlæti." #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" -msgstr "" +msgstr "Stillingar" #: js/js.js:704 msgid "seconds ago" @@ -98,11 +99,11 @@ msgstr "{minutes} min síðan" #: js/js.js:707 msgid "1 hour ago" -msgstr "" +msgstr "Fyrir 1 klst." #: js/js.js:708 msgid "{hours} hours ago" -msgstr "" +msgstr "fyrir {hours} klst." #: js/js.js:709 msgid "today" @@ -122,7 +123,7 @@ msgstr "síðasta mánuði" #: js/js.js:713 msgid "{months} months ago" -msgstr "" +msgstr "fyrir {months} mánuðum" #: js/js.js:714 msgid "months ago" @@ -138,204 +139,204 @@ msgstr "árum síðan" #: js/oc-dialogs.js:126 msgid "Choose" -msgstr "" +msgstr "Veldu" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" -msgstr "" +msgstr "Hætta við" #: js/oc-dialogs.js:162 msgid "No" -msgstr "" +msgstr "Nei" #: js/oc-dialogs.js:163 msgid "Yes" -msgstr "" +msgstr "Já" #: js/oc-dialogs.js:180 msgid "Ok" -msgstr "" +msgstr "Í lagi" #: 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 "" +msgstr "Tegund ekki tilgreind" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" -msgstr "" +msgstr "Villa" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Nafn forrits ekki tilgreint" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "Umbeðina skráin {file} ekki tiltæk!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "" +msgstr "Villa við deilingu" #: js/share.js:135 msgid "Error while unsharing" -msgstr "" +msgstr "Villa við að hætta deilingu" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "Villa við að breyta aðgangsheimildum" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Deilt með þér og hópnum {group} af {owner}" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Deilt með þér af {owner}" #: js/share.js:158 msgid "Share with" -msgstr "" +msgstr "Deila með" #: js/share.js:163 msgid "Share with link" -msgstr "" +msgstr "Deila með veftengli" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" -msgstr "" +msgstr "Verja með lykilorði" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Lykilorð" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Senda vefhlekk í tölvupóstu til notenda" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Senda" #: js/share.js:177 msgid "Set expiration date" -msgstr "" +msgstr "Setja gildistíma" #: js/share.js:178 msgid "Expiration date" -msgstr "" +msgstr "Gildir til" #: js/share.js:210 msgid "Share via email:" -msgstr "" +msgstr "Deila með tölvupósti:" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "Engir notendur fundust" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "Endurdeiling er ekki leyfð" #: js/share.js:275 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Deilt með {item} ásamt {user}" #: js/share.js:296 msgid "Unshare" -msgstr "" +msgstr "Hætta deilingu" #: js/share.js:308 msgid "can edit" -msgstr "" +msgstr "getur breytt" #: js/share.js:310 msgid "access control" -msgstr "" +msgstr "aðgangsstýring" #: js/share.js:313 msgid "create" -msgstr "" +msgstr "mynda" #: js/share.js:316 msgid "update" -msgstr "" +msgstr "uppfæra" #: js/share.js:319 msgid "delete" -msgstr "" +msgstr "eyða" #: js/share.js:322 msgid "share" -msgstr "" +msgstr "deila" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" -msgstr "" +msgstr "Verja með lykilorði" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Villa við að aftengja gildistíma" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" -msgstr "" +msgstr "Villa við að setja gildistíma" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Sendi ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Tölvupóstur sendur" #: lostpassword/controller.php:47 msgid "ownCloud password reset" -msgstr "" +msgstr "endursetja ownCloud lykilorð" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "" +msgstr "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið." #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "Beiðni um endursetningu send." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "Beiðni mistókst!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Notendanafn" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "" +msgstr "Endursetja lykilorð" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "Lykilorðið þitt hefur verið endursett." #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "Fara á innskráningarsíðu" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "Nýtt lykilorð" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "Endursetja lykilorð" #: strings.php:5 msgid "Personal" @@ -343,11 +344,11 @@ msgstr "Persónustillingar" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Notendur" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "Forrit" #: strings.php:8 msgid "Admin" @@ -359,7 +360,7 @@ msgstr "Help" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Aðgangur bannaður" #: templates/404.php:12 msgid "Cloud not found" @@ -375,19 +376,19 @@ msgstr "Bæta" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Öryggis aðvörun" #: templates/installation.php:24 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Enginn traustur slembitölugjafi í boði, vinsamlegast virkjaðu PHP OpenSSL viðbótina." #: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Án öruggs slembitölugjafa er mögulegt að sjá fyrir öryggis auðkenni til að endursetja lykilorð og komast inn á aðganginn þinn." #: templates/installation.php:32 msgid "" @@ -396,80 +397,80 @@ msgid "" "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 "" +msgstr "Gagnamappan þín er að öllum líkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með því að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina." #: templates/installation.php:36 msgid "Create an admin account" msgstr "Útbúa vefstjóra aðgang" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" -msgstr "" +msgstr "Ítarlegt" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" -msgstr "" +msgstr "Gagnamappa" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" -msgstr "" +msgstr "Stilla gagnagrunn" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" -msgstr "" +msgstr "verður notað" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" -msgstr "" +msgstr "Notandi gagnagrunns" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" -msgstr "" +msgstr "Lykilorð gagnagrunns" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" -msgstr "" +msgstr "Nafn gagnagrunns" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" -msgstr "" +msgstr "Töflusvæði gagnagrunns" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" -msgstr "" +msgstr "Netþjónn gagnagrunns" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" -msgstr "" +msgstr "Ljúka uppsetningu" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Sunnudagur" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Mánudagur" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Þriðjudagur" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Miðvikudagur" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Fimmtudagur" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Föstudagur" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Laugardagur" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "January" @@ -513,45 +514,45 @@ msgstr "Október" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "November" -msgstr "" +msgstr "Nóvember" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "December" -msgstr "" +msgstr "Desember" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "" +msgstr "vefþjónusta undir þinni stjórn" #: templates/layout.user.php:45 msgid "Log out" msgstr "Útskrá" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Sjálfvirkri innskráningu hafnað!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Ef þú breyttir ekki lykilorðinu þínu fyrir skömmu, er mögulegt að einhver annar hafi komist inn á aðganginn þinn." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Vinsamlegast breyttu lykilorðinu þínu til að tryggja öryggi þitt." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" -msgstr "" +msgstr "Týndir þú lykilorðinu?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" -msgstr "" +msgstr "muna eftir mér" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" -msgstr "" +msgstr "Skrá inn" #: templates/logout.php:1 msgid "You are logged out." @@ -567,14 +568,14 @@ msgstr "næsta" #: templates/verify.php:5 msgid "Security Warning!" -msgstr "" +msgstr "Öryggis aðvörun!" #: templates/verify.php:6 msgid "" "Please verify your password.
For security reasons you may be " "occasionally asked to enter your password again." -msgstr "" +msgstr "Vinsamlegast staðfestu lykilorðið þitt.
Í öryggisskyni munum við biðja þig um að skipta um lykilorð af og til." #: templates/verify.php:16 msgid "Verify" -msgstr "" +msgstr "Staðfesta" diff --git a/l10n/is/files.po b/l10n/is/files.po index 094b80b04e4..1036913c086 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-06 00:11+0100\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 15:06+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,248 +20,248 @@ msgstr "" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Engin villa, innsending heppnaðist" #: ajax/upload.php:21 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" #: ajax/upload.php:23 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." #: ajax/upload.php:25 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Einungis hluti af innsendri skrá skilaði sér" #: ajax/upload.php:26 msgid "No file was uploaded" -msgstr "" +msgstr "Engin skrá skilaði sér" #: ajax/upload.php:27 msgid "Missing a temporary folder" -msgstr "" +msgstr "Vantar bráðabirgðamöppu" #: ajax/upload.php:28 msgid "Failed to write to disk" -msgstr "" +msgstr "Tókst ekki að skrifa á disk" #: appinfo/app.php:10 msgid "Files" -msgstr "" +msgstr "Skrár" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" -msgstr "" +msgstr "Hætta deilingu" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" -msgstr "" +msgstr "Eyða" #: js/fileactions.js:181 msgid "Rename" -msgstr "" +msgstr "Endurskýra" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} er þegar til" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" -msgstr "" +msgstr "yfirskrifa" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" -msgstr "" +msgstr "stinga upp á nafni" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" -msgstr "" +msgstr "hætta við" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" -msgstr "" +msgstr "endurskýrði {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" -msgstr "" +msgstr "afturkalla" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" -msgstr "" +msgstr "Hætti við deilingu á {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" -msgstr "" +msgstr "eyddi {files}" #: js/files.js:33 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "bý til ZIP skrá, það gæti tekið smá stund." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti." -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" -msgstr "" +msgstr "Villa við innsendingu" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" -msgstr "" +msgstr "Loka" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" -msgstr "" +msgstr "Bíður" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" -msgstr "" +msgstr "1 skrá innsend" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" -msgstr "" +msgstr "{count} skrár innsendar" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." -msgstr "" +msgstr "Hætt við innsendingu." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "" +msgstr "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" -msgstr "" +msgstr "{count} skrár skimaðar" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" -msgstr "" +msgstr "villa við skimun" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" -msgstr "" +msgstr "Nafn" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" -msgstr "" +msgstr "Stærð" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" -msgstr "" +msgstr "Breytt" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" -msgstr "" +msgstr "1 mappa" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" -msgstr "" +msgstr "{count} möppur" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" -msgstr "" +msgstr "1 skrá" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" -msgstr "" +msgstr "{count} skrár" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Meðhöndlun skrár" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Hámarks stærð innsendingar" #: templates/admin.php:9 msgid "max. possible: " -msgstr "" +msgstr "hámark mögulegt: " #: templates/admin.php:12 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Nauðsynlegt til að sækja margar skrár og möppur í einu." #: templates/admin.php:14 msgid "Enable ZIP-download" -msgstr "" +msgstr "Virkja ZIP niðurhal." #: templates/admin.php:17 msgid "0 is unlimited" -msgstr "" +msgstr "0 er ótakmarkað" #: templates/admin.php:19 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Hámarks inntaksstærð fyrir ZIP skrár" #: templates/admin.php:23 msgid "Save" -msgstr "" +msgstr "Vista" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "Nýtt" #: templates/index.php:10 msgid "Text file" -msgstr "" +msgstr "Texta skrá" #: templates/index.php:12 msgid "Folder" -msgstr "" +msgstr "Mappa" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Af tengli" #: templates/index.php:35 msgid "Upload" -msgstr "" +msgstr "Senda inn" #: templates/index.php:43 msgid "Cancel upload" -msgstr "" +msgstr "Hætta við innsendingu" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "Ekkert hér. Sendu eitthvað inn!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" -msgstr "" +msgstr "Niðurhal" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" -msgstr "" +msgstr "Innsend skrá of stór" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" -msgstr "" +msgstr "Er að skima" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index aba8a60b74f..3dfd91e61ab 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-06 00:11+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 19:56+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +20,16 @@ msgstr "" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Dulkóðun" -#: templates/settings.php:4 -msgid "Exclude the following file types from encryption" -msgstr "" +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "Virkja dulkóðun" -#: templates/settings.php:5 +#: templates/settings.php:7 msgid "None" -msgstr "" +msgstr "Ekkert" #: templates/settings.php:12 -msgid "Enable Encryption" -msgstr "" +msgid "Exclude the following file types from encryption" +msgstr "Undanskilja eftirfarandi skráartegundir frá dulkóðun" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index a62f4ed1e0a..1e8fbe75517 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 18:22+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,102 +20,102 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Aðgengi veitt" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Villa við að setja upp Dropbox gagnasvæði" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Veita aðgengi" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Fylltu út alla skilyrta reiti" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Gefðu upp virkan Dropbox lykil og leynikóða" #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði" #: lib/config.php:434 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +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:435 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 "" +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." #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Ytri gagnageymsla" #: templates/settings.php:8 templates/settings.php:22 msgid "Mount point" -msgstr "" +msgstr "Mount svæði" #: templates/settings.php:9 msgid "Backend" -msgstr "" +msgstr "Stjórnun" #: templates/settings.php:10 msgid "Configuration" -msgstr "" +msgstr "Uppsetning" #: templates/settings.php:11 msgid "Options" -msgstr "" +msgstr "Stillingar" #: templates/settings.php:12 msgid "Applicable" -msgstr "" +msgstr "Gilt" #: templates/settings.php:27 msgid "Add mount point" -msgstr "" +msgstr "Bæta við mount svæði" #: templates/settings.php:85 msgid "None set" -msgstr "" +msgstr "Ekkert sett" #: templates/settings.php:86 msgid "All Users" -msgstr "" +msgstr "Allir notendur" #: templates/settings.php:87 msgid "Groups" -msgstr "" +msgstr "Hópar" #: templates/settings.php:95 msgid "Users" -msgstr "" +msgstr "Notendur" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" -msgstr "" +msgstr "Eyða" #: templates/settings.php:124 msgid "Enable User External Storage" -msgstr "" +msgstr "Virkja ytra gagnasvæði notenda" #: templates/settings.php:125 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Leyfa notendum að bæta við sínum eigin ytri gagnasvæðum" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" -msgstr "" +msgstr "SSL rótar skilríki" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" -msgstr "" +msgstr "Flytja inn rótar skilríki" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 1d9102f0849..d37c6475559 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-06 00:11+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 15:08+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,30 +20,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Lykilorð" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Senda" #: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s deildi möppunni %s með þér" #: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s deildi skránni %s með þér" #: templates/public.php:22 templates/public.php:38 msgid "Download" -msgstr "" +msgstr "Niðurhal" #: templates/public.php:37 msgid "No preview available for" -msgstr "" +msgstr "Yfirlit ekki í boði fyrir" #: templates/public.php:43 msgid "web services under your control" -msgstr "" +msgstr "vefþjónusta undir þinni stjórn" diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po index 82fb0358475..bc2e72de575 100644 --- a/l10n/is/files_versions.po +++ b/l10n/is/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-06 00:11+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 17:42+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,26 +18,26 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 +#: js/settings-personal.js:31 templates/settings-personal.php:7 msgid "Expire all versions" -msgstr "" +msgstr "Úrelda allar útgáfur" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "Saga" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Útgáfur" -#: templates/settings-personal.php:7 +#: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Þetta mun eyða öllum afritum af skránum þínum" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Útgáfur af skrám" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Virkja" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 8531c69aa27..0e7cb461873 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-06 00:11+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 15:15+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,134 +20,134 @@ msgstr "" #: app.php:287 msgid "Help" -msgstr "" +msgstr "Hjálp" #: app.php:294 msgid "Personal" -msgstr "" +msgstr "Um mig" #: app.php:299 msgid "Settings" -msgstr "" +msgstr "Stillingar" #: app.php:304 msgid "Users" -msgstr "" +msgstr "Notendur" #: app.php:311 msgid "Apps" -msgstr "" +msgstr "Forrit" #: app.php:313 msgid "Admin" -msgstr "" +msgstr "Stjórnun" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." -msgstr "" +msgstr "Slökkt á ZIP niðurhali." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Skrárnar verður að sækja eina og eina" -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" -msgstr "" +msgstr "Aftur í skrár" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Forrit ekki virkt" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Villa við auðkenningu" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Skrár" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Texti" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Myndir" #: template.php:103 msgid "seconds ago" -msgstr "" +msgstr "sek." #: template.php:104 msgid "1 minute ago" -msgstr "" +msgstr "Fyrir 1 mínútu" #: template.php:105 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "fyrir %d mínútum" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "Fyrir 1 klst." #: template.php:107 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "fyrir %d klst." #: template.php:108 msgid "today" -msgstr "" +msgstr "í dag" #: template.php:109 msgid "yesterday" -msgstr "" +msgstr "í gær" #: template.php:110 #, php-format msgid "%d days ago" -msgstr "" +msgstr "fyrir %d dögum" #: template.php:111 msgid "last month" -msgstr "" +msgstr "síðasta mánuði" #: template.php:112 #, php-format msgid "%d months ago" -msgstr "" +msgstr "fyrir %d mánuðum" #: template.php:113 msgid "last year" -msgstr "" +msgstr "síðasta ári" #: template.php:114 msgid "years ago" -msgstr "" +msgstr "einhverjum árum" #: updater.php:75 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s er í boði. Sækja meiri upplýsingar" #: updater.php:77 msgid "up to date" -msgstr "" +msgstr "nýjasta útgáfa" #: updater.php:80 msgid "updates check is disabled" -msgstr "" +msgstr "uppfærslupróf er ekki virkjað" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Fann ekki flokkinn \"%s\"" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 3842a0e149f..5b2d7ad671a 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 17:53+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,97 +20,97 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Ekki tókst að hlaða lista frá forrita síðu" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "Hópur er þegar til" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "Ekki tókst að bæta við hóp" #: ajax/enableapp.php:12 msgid "Could not enable app. " -msgstr "" +msgstr "Gat ekki virkjað forrit" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "Netfang vistað" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "Ógilt netfang" #: ajax/openid.php:13 msgid "OpenID Changed" -msgstr "" +msgstr "OpenID breytt" #: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "Ógild fyrirspurn" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "Ekki tókst að eyða hóp" #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Villa við auðkenningu" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "" +msgstr "Ekki tókst að eyða notenda" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "" +msgstr "Tungumáli breytt" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp" #: ajax/togglegroups.php:28 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Ekki tókst að bæta notenda við hópinn %s" #: ajax/togglegroups.php:34 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Ekki tókst að fjarlægja notanda úr hópnum %s" #: js/apps.js:28 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Gera óvirkt" #: js/apps.js:28 js/apps.js:55 msgid "Enable" -msgstr "" +msgstr "Virkja" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Er að vista ..." #: personal.php:42 personal.php:43 msgid "__language_name__" -msgstr "" +msgstr "__nafn_tungumáls__" #: templates/apps.php:10 msgid "Add your App" -msgstr "" +msgstr "Bæta við forriti" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "Fleiri forrit" #: templates/apps.php:27 msgid "Select an App" -msgstr "" +msgstr "Veldu forrit" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Skoða forrita síðuna hjá apps.owncloud.com" #: templates/apps.php:32 msgid "-licensed by " @@ -117,108 +118,108 @@ msgstr "" #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Notenda handbók" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Stjórnenda handbók" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Handbók á netinu" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Vefspjall" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Villubókhald" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Borgaður stuðningur" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "Þú hefur notað %s af tiltæku %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Notendahugbúnaður" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Hlaða niður notendahugbúnaði" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Hlaða niður Andoid hugbúnaði" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Hlaða niður iOS hugbúnaði" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" -msgstr "" +msgstr "Lykilorð" #: templates/personal.php:22 msgid "Your password was changed" -msgstr "" +msgstr "Lykilorði þínu hefur verið breytt" #: templates/personal.php:23 msgid "Unable to change your password" -msgstr "" +msgstr "Ekki tókst að breyta lykilorðinu þínu" #: templates/personal.php:24 msgid "Current password" -msgstr "" +msgstr "Núverandi lykilorð" #: templates/personal.php:25 msgid "New password" -msgstr "" +msgstr "Nýtt lykilorð" #: templates/personal.php:26 msgid "show" -msgstr "" +msgstr "sýna" #: templates/personal.php:27 msgid "Change password" -msgstr "" +msgstr "Breyta lykilorði" #: templates/personal.php:33 msgid "Email" -msgstr "" +msgstr "Netfang" #: templates/personal.php:34 msgid "Your email address" -msgstr "" +msgstr "Netfangið þitt" #: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði" #: templates/personal.php:41 templates/personal.php:42 msgid "Language" -msgstr "" +msgstr "Tungumál" #: templates/personal.php:47 msgid "Help translate" -msgstr "" +msgstr "Hjálpa við þýðingu" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þínu" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Útgáfa" #: templates/personal.php:65 msgid "" @@ -228,44 +229,44 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Þróað af ownCloud samfélaginu, forrita kóðinn er skráðu með AGPL." #: templates/users.php:21 templates/users.php:81 msgid "Name" -msgstr "" +msgstr "Nafn" #: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" -msgstr "" +msgstr "Hópar" #: templates/users.php:32 msgid "Create" -msgstr "" +msgstr "Búa til" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Sjálfgefin gagnageymsla" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ótakmarkað" #: templates/users.php:60 templates/users.php:153 msgid "Other" -msgstr "" +msgstr "Annað" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" -msgstr "" +msgstr "Hópa stjóri" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "gagnapláss" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Sjálfgefið" #: templates/users.php:161 msgid "Delete" -msgstr "" +msgstr "Eyða" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 06ab3b51ea6..828b0b2693a 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 19:00+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +33,7 @@ msgstr "" #: templates/settings.php:15 msgid "Host" -msgstr "" +msgstr "Netþjónn" #: templates/settings.php:15 msgid "" @@ -60,7 +61,7 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "Lykilorð" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." @@ -180,4 +181,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Hjálp" diff --git a/l10n/is/user_webdavauth.po b/l10n/is/user_webdavauth.po index 378e437e2a3..859ebae1986 100644 --- a/l10n/is/user_webdavauth.po +++ b/l10n/is/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 21:13+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "Vefslóð: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud mun senda auðkenni notenda á þessa vefslóð og túkla svörin http 401 og http 403 sem rangar auðkenniupplýsingar og öll önnur svör sem rétt." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 00d5a41c44a..046096abda4 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 07:47+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" @@ -251,11 +251,11 @@ msgstr "Crea" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Archiviazione predefinita" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Illimitata" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -267,11 +267,11 @@ msgstr "Gruppo di amministrazione" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Archiviazione" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Predefinito" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 52485e8f6f4..ee72c8dd291 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -8,15 +8,16 @@ # , 2011. # Magnus Höglund , 2012. # , 2012. +# , 2012. # , 2011, 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"PO-Revision-Date: 2012-12-30 07:10+0000\n" +"Last-Translator: xt00r \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" @@ -251,11 +252,11 @@ msgstr "Skapa" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Förvald lagring" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Obegränsad" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -267,11 +268,11 @@ msgstr "Gruppadministratör" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Lagring" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Förvald" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 4a7b327861f..cc33a324c89 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\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 bafda267119..9834fd44815 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\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 4f497da4a5e..1741ce20902 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\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 616e915131f..ba153383185 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\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 15c8d37ac46..252ca02fd8c 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\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 81d322f1cfc..50c7690b122 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\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 2e1e8704e8c..48ce7c8f931 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\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 9776c97fbb6..b4e0bb7c2ba 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\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 38da6d21b9f..3090e074b57 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\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 9237ed079fb..3612d95289b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" +"POT-Creation-Date: 2012-12-31 00:04+0100\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/hu_HU.php b/lib/l10n/hu_HU.php index 63704a978c5..3dcf0646d06 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -5,22 +5,30 @@ "Users" => "Felhasználók", "Apps" => "Alkalmazások", "Admin" => "Admin", -"ZIP download is turned off." => "ZIP-letöltés letiltva", -"Files need to be downloaded one by one." => "A file-okat egyenként kell letölteni", -"Back to Files" => "Vissza a File-okhoz", -"Selected files too large to generate zip file." => "Túl nagy file-ok a zip-generáláshoz", +"ZIP download is turned off." => "A ZIP-letöltés nem engedélyezett.", +"Files need to be downloaded one by one." => "A fájlokat egyenként kell letölteni", +"Back to Files" => "Vissza a Fájlokhoz", +"Selected files too large to generate zip file." => "A kiválasztott fájlok túl nagy a zip tömörítéshez.", "Application is not enabled" => "Az alkalmazás nincs engedélyezve", "Authentication error" => "Hitelesítési hiba", -"Token expired. Please reload page." => "A token lejárt. Frissítsd az oldalt.", +"Token expired. Please reload page." => "A token lejárt. Frissítse az oldalt.", "Files" => "Fájlok", "Text" => "Szöveg", -"seconds ago" => "másodperccel ezelőtt", -"1 minute ago" => "1 perccel ezelőtt", -"%d minutes ago" => "%d perccel ezelőtt", +"Images" => "Képek", +"seconds ago" => "másodperce", +"1 minute ago" => "1 perce", +"%d minutes ago" => "%d perce", +"1 hour ago" => "1 órája", +"%d hours ago" => "%d órája", "today" => "ma", "yesterday" => "tegnap", -"%d days ago" => "%d évvel ezelőtt", +"%d days ago" => "%d napja", "last month" => "múlt hónapban", +"%d months ago" => "%d hónapja", "last year" => "tavaly", -"years ago" => "évvel ezelőtt" +"years ago" => "éve", +"%s is available. Get more information" => "%s elérhető. További információ.", +"up to date" => "a legfrissebb változat", +"updates check is disabled" => "A frissitések ellenőrzése nincs engedélyezve.", +"Could not find category \"%s\"" => "Ez a kategória nem található: \"%s\"" ); diff --git a/lib/l10n/is.php b/lib/l10n/is.php new file mode 100644 index 00000000000..8fdb45a05cd --- /dev/null +++ b/lib/l10n/is.php @@ -0,0 +1,34 @@ + "Hjálp", +"Personal" => "Um mig", +"Settings" => "Stillingar", +"Users" => "Notendur", +"Apps" => "Forrit", +"Admin" => "Stjórnun", +"ZIP download is turned off." => "Slökkt á ZIP niðurhali.", +"Files need to be downloaded one by one." => "Skrárnar verður að sækja eina og eina", +"Back to Files" => "Aftur í skrár", +"Selected files too large to generate zip file." => "Valdar skrár eru of stórar til að búa til ZIP skrá.", +"Application is not enabled" => "Forrit ekki virkt", +"Authentication error" => "Villa við auðkenningu", +"Token expired. Please reload page." => "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn.", +"Files" => "Skrár", +"Text" => "Texti", +"Images" => "Myndir", +"seconds ago" => "sek.", +"1 minute ago" => "Fyrir 1 mínútu", +"%d minutes ago" => "fyrir %d mínútum", +"1 hour ago" => "Fyrir 1 klst.", +"%d hours ago" => "fyrir %d klst.", +"today" => "í dag", +"yesterday" => "í gær", +"%d days ago" => "fyrir %d dögum", +"last month" => "síðasta mánuði", +"%d months ago" => "fyrir %d mánuðum", +"last year" => "síðasta ári", +"years ago" => "einhverjum árum", +"%s is available. Get more information" => "%s er í boði. Sækja meiri upplýsingar", +"up to date" => "nýjasta útgáfa", +"updates check is disabled" => "uppfærslupróf er ekki virkjað", +"Could not find category \"%s\"" => "Fann ekki flokkinn \"%s\"" +); diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index a23314a2cc6..d86376d5672 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -53,7 +53,11 @@ "Name" => "Jméno", "Groups" => "Skupiny", "Create" => "Vytvořit", +"Default Storage" => "Výchozí úložiště", +"Unlimited" => "Neomezeně", "Other" => "Jiná", "Group Admin" => "Správa skupiny", +"Storage" => "Úložiště", +"Default" => "Výchozí", "Delete" => "Smazat" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index e54aea3bb99..6434d23a5ba 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -53,7 +53,11 @@ "Name" => "Name", "Groups" => "Gruppen", "Create" => "Anlegen", +"Default Storage" => "Standard-Speicher", +"Unlimited" => "Unbegrenzt", "Other" => "Andere", "Group Admin" => "Gruppenadministrator", +"Storage" => "Speicher", +"Default" => "Standard", "Delete" => "Löschen" ); diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 7fc439f8222..10914350d74 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -53,7 +53,11 @@ "Name" => "Name", "Groups" => "Gruppen", "Create" => "Anlegen", +"Default Storage" => "Standard-Speicher", +"Unlimited" => "Unbegrenzt", "Other" => "Andere", "Group Admin" => "Gruppenadministrator", +"Storage" => "Speicher", +"Default" => "Standard", "Delete" => "Löschen" ); diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 874f5e2a1be..bd7d2866601 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -53,7 +53,11 @@ "Name" => "Nombre", "Groups" => "Grupos", "Create" => "Crear", +"Default Storage" => "Almacenamiento Predeterminado", +"Unlimited" => "Ilimitado", "Other" => "Otro", "Group Admin" => "Grupo admin", +"Storage" => "Alamacenamiento", +"Default" => "Predeterminado", "Delete" => "Eliminar" ); diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index b7bd0a22da9..03f6c5593d4 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -53,7 +53,11 @@ "Name" => "Nombre", "Groups" => "Grupos", "Create" => "Crear", +"Default Storage" => "Almacenamiento Predeterminado", +"Unlimited" => "Ilimitado", "Other" => "Otro", "Group Admin" => "Grupo Administrador", +"Storage" => "Almacenamiento", +"Default" => "Predeterminado", "Delete" => "Borrar" ); diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 3c7f6a43e4d..a8367ef458d 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -53,7 +53,11 @@ "Name" => "Nom", "Groups" => "Groupes", "Create" => "Créer", +"Default Storage" => "Support de stockage par défaut", +"Unlimited" => "Illimité", "Other" => "Autre", "Group Admin" => "Groupe Admin", +"Storage" => "Support de stockage", +"Default" => "Défaut", "Delete" => "Supprimer" ); diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 124dd4c4eb7..5fdc11e44f9 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -22,6 +22,7 @@ "More Apps" => "További alkalmazások", "Select an App" => "Válasszon egy alkalmazást", "See application page at apps.owncloud.com" => "Lásd apps.owncloud.com, alkalmazások oldal", +"-licensed by " => "-a jogtuladonos ", "User Documentation" => "Felhasználói leírás", "Administrator Documentation" => "Üzemeltetői leírás", "Online Documentation" => "Online leírás", @@ -41,13 +42,14 @@ "show" => "lássam", "Change password" => "A jelszó megváltoztatása", "Email" => "Email", -"Your email address" => "Az Ön emailcíme", -"Fill in an email address to enable password recovery" => "Töltse ki az emailcímet, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!", +"Your email address" => "Az Ön email címe", +"Fill in an email address to enable password recovery" => "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!", "Language" => "Nyelv", "Help translate" => "Segítsen a fordításban!", -"WebDAV" => "WebDAV elérés: ", +"WebDAV" => "WebDAV", "Use this address to connect to your ownCloud in your file manager" => "Ennek a címnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelőjével is is elérheti az állományait.", "Version" => "Verzió", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "A programot az ownCloud közösség fejleszti. A forráskód az AGPL feltételei mellett használható föl.", "Name" => "Név", "Groups" => "Csoportok", "Create" => "Létrehozás", diff --git a/settings/l10n/is.php b/settings/l10n/is.php new file mode 100644 index 00000000000..2056dfc5b72 --- /dev/null +++ b/settings/l10n/is.php @@ -0,0 +1,62 @@ + "Ekki tókst að hlaða lista frá forrita síðu", +"Group already exists" => "Hópur er þegar til", +"Unable to add group" => "Ekki tókst að bæta við hóp", +"Could not enable app. " => "Gat ekki virkjað forrit", +"Email saved" => "Netfang vistað", +"Invalid email" => "Ógilt netfang", +"OpenID Changed" => "OpenID breytt", +"Invalid request" => "Ógild fyrirspurn", +"Unable to delete group" => "Ekki tókst að eyða hóp", +"Authentication error" => "Villa við auðkenningu", +"Unable to delete user" => "Ekki tókst að eyða notenda", +"Language changed" => "Tungumáli breytt", +"Admins can't remove themself from the admin group" => "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp", +"Unable to add user to group %s" => "Ekki tókst að bæta notenda við hópinn %s", +"Unable to remove user from group %s" => "Ekki tókst að fjarlægja notanda úr hópnum %s", +"Disable" => "Gera óvirkt", +"Enable" => "Virkja", +"Saving..." => "Er að vista ...", +"__language_name__" => "__nafn_tungumáls__", +"Add your App" => "Bæta við forriti", +"More Apps" => "Fleiri forrit", +"Select an App" => "Veldu forrit", +"See application page at apps.owncloud.com" => "Skoða forrita síðuna hjá apps.owncloud.com", +"User Documentation" => "Notenda handbók", +"Administrator Documentation" => "Stjórnenda handbók", +"Online Documentation" => "Handbók á netinu", +"Forum" => "Vefspjall", +"Bugtracker" => "Villubókhald", +"Commercial Support" => "Borgaður stuðningur", +"You have used %s of the available %s" => "Þú hefur notað %s af tiltæku %s", +"Clients" => "Notendahugbúnaður", +"Download Desktop Clients" => "Hlaða niður notendahugbúnaði", +"Download Android Client" => "Hlaða niður Andoid hugbúnaði", +"Download iOS Client" => "Hlaða niður iOS hugbúnaði", +"Password" => "Lykilorð", +"Your password was changed" => "Lykilorði þínu hefur verið breytt", +"Unable to change your password" => "Ekki tókst að breyta lykilorðinu þínu", +"Current password" => "Núverandi lykilorð", +"New password" => "Nýtt lykilorð", +"show" => "sýna", +"Change password" => "Breyta lykilorði", +"Email" => "Netfang", +"Your email address" => "Netfangið þitt", +"Fill in an email address to enable password recovery" => "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði", +"Language" => "Tungumál", +"Help translate" => "Hjálpa við þýðingu", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þínu", +"Version" => "Útgáfa", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Þróað af ownCloud samfélaginu, forrita kóðinn er skráðu með AGPL.", +"Name" => "Nafn", +"Groups" => "Hópar", +"Create" => "Búa til", +"Default Storage" => "Sjálfgefin gagnageymsla", +"Unlimited" => "Ótakmarkað", +"Other" => "Annað", +"Group Admin" => "Hópa stjóri", +"Storage" => "gagnapláss", +"Default" => "Sjálfgefið", +"Delete" => "Eyða" +); diff --git a/settings/l10n/it.php b/settings/l10n/it.php index c9717932978..043f1a2db9d 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -53,7 +53,11 @@ "Name" => "Nome", "Groups" => "Gruppi", "Create" => "Crea", +"Default Storage" => "Archiviazione predefinita", +"Unlimited" => "Illimitata", "Other" => "Altro", "Group Admin" => "Gruppo di amministrazione", +"Storage" => "Archiviazione", +"Default" => "Predefinito", "Delete" => "Elimina" ); diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index bc4ec8c64d7..681db2099a1 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -53,7 +53,11 @@ "Name" => "Namn", "Groups" => "Grupper", "Create" => "Skapa", +"Default Storage" => "Förvald lagring", +"Unlimited" => "Obegränsad", "Other" => "Annat", "Group Admin" => "Gruppadministratör", +"Storage" => "Lagring", +"Default" => "Förvald", "Delete" => "Radera" ); -- cgit v1.2.3 From 3d23e983908d02fe72f305aeaabbdca05d167e8f Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Mon, 31 Dec 2012 16:31:22 +0000 Subject: Remove the WIP external sharing api --- apps/files_sharing/appinfo/app.php | 1 - apps/files_sharing/appinfo/routes.php | 23 ----------------- apps/files_sharing/lib/api.php | 47 ----------------------------------- apps/files_sharing/tests/api.php | 13 ---------- 4 files changed, 84 deletions(-) delete mode 100644 apps/files_sharing/appinfo/routes.php delete mode 100644 apps/files_sharing/lib/api.php delete mode 100644 apps/files_sharing/tests/api.php (limited to 'apps') diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index 1402a146454..0104d0d017f 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -3,7 +3,6 @@ OC::$CLASSPATH['OC_Share_Backend_File'] = "apps/files_sharing/lib/share/file.php"; OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'apps/files_sharing/lib/share/folder.php'; OC::$CLASSPATH['OC_Filestorage_Shared'] = "apps/files_sharing/lib/sharedstorage.php"; -OC::$CLASSPATH['OC_Sharing_API'] = "apps/files_sharing/lib/api.php"; OCP\Util::connectHook('OC_Filesystem', 'setup', 'OC_Filestorage_Shared', 'setup'); OCP\Share::registerBackend('file', 'OC_Share_Backend_File'); OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file'); diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php deleted file mode 100644 index 180dde635ad..00000000000 --- a/apps/files_sharing/appinfo/routes.php +++ /dev/null @@ -1,23 +0,0 @@ -. -* -*/ -OCP\API::register('post', '/cloud/files/share/{type}/{path}', array('OC_Sharing_API', 'shareFile'), 'files_sharing', OC_API::USER_AUTH, array(), array('type' => 'user|group|link|email|contact|remote', 'path' => '.*')); -?> \ No newline at end of file diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php deleted file mode 100644 index 151e6d6cfd4..00000000000 --- a/apps/files_sharing/lib/api.php +++ /dev/null @@ -1,47 +0,0 @@ - OCP\Share::SHARE_TYPE_USER, - 'group' => OCP\Share::SHARE_TYPE_GROUP, - 'link' => OCP\Share::SHARE_TYPE_LINK, - 'email' => OCP\Share::SHARE_TYPE_EMAIL, - 'contact' => OCP\Share::SHARE_TYPE_CONTACT, - 'remote' => OCP\Share::SHARE_TYPE_USER, - ); - $type = $typemap[$parameters['type']]; - $shareWith = isset($_POST['shareWith']) ? $_POST['shareWith'] : null; - $permissionstring = isset($_POST['permissions']) ? $_POST['permissions'] : ''; - $permissionmap = array( - 'C' => OCP\Share::PERMISSION_CREATE, - 'R' => OCP\Share::PERMISSION_READ, - 'U' => OCP\Share::PERMISSION_UPDATE, - 'D' => OCP\Share::PERMISSION_DELETE, - 'S' => OCP\Share::PERMISSION_SHARE, - ); - $permissions = 0; - foreach($permissionmap as $letter => $permission) { - if(strpos($permissionstring, $letter) !== false) { - $permissions += $permission; - } - } - - try { - OCP\Share::shareItem('file', $fileid, $type, $shareWith, $permissions); - } catch (Exception $e){ - error_log($e->getMessage()); - } - switch($type){ - case OCP\Share::SHARE_TYPE_LINK: - $link = OC_Helper::linkToPublic('files') . '&file=/' . OC_User::getUser() . '/files' . $path; - return array('link' => array('url' => $link)); - break; - } - - } - -} \ No newline at end of file diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php deleted file mode 100644 index 65d4b87089c..00000000000 --- a/apps/files_sharing/tests/api.php +++ /dev/null @@ -1,13 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -class Test_Share_API extends UnitTestCase { - - function test - -} \ No newline at end of file -- cgit v1.2.3 From c6064a542c0b0c462db8136602cb1198b825b513 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 1 Jan 2013 00:04:42 +0100 Subject: [tx-robot] updated from transifex --- apps/files_external/l10n/gl.php | 4 +- apps/user_ldap/l10n/gl.php | 6 +- apps/user_webdavauth/l10n/gl.php | 3 +- core/l10n/gl.php | 100 ++++++++++--------- core/l10n/hu_HU.php | 133 ++++++++++++++++-------- l10n/ca/settings.po | 16 +-- l10n/gl/core.po | 173 ++++++++++++++++---------------- l10n/gl/files_external.po | 18 ++-- l10n/gl/settings.po | 83 +++++++-------- l10n/gl/user_ldap.po | 14 +-- l10n/gl/user_webdavauth.po | 11 +- l10n/hu_HU/core.po | 194 ++++++++++++++++++------------------ 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/ca.php | 6 +- settings/l10n/gl.php | 60 +++++++---- 24 files changed, 466 insertions(+), 375 deletions(-) (limited to 'apps') diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 5024dac4d8c..f8100e14620 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -3,8 +3,10 @@ "Error configuring Dropbox storage" => "Produciuse un erro ao configurar o almacenamento en Dropbox", "Grant access" => "Permitir o acceso", "Fill out all required fields" => "Cubrir todos os campos obrigatorios", -"Please provide a valid Dropbox app key and secret." => "Dá o segredo e a chave correcta do aplicativo de Dropbox.", +"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", +"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.", "External Storage" => "Almacenamento externo", "Mount point" => "Punto de montaxe", "Backend" => "Infraestrutura", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index 41431293cba..ae05efcd27f 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -1,10 +1,12 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Aviso: Os aplicativos user_ldap e user_webdavauth son incompatíbeis. Pode acontecer un comportamento estraño. Consulte co administrador do sistema para desactivar un deles.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Aviso: O módulo PHP LDAP é necesario e non está instalado, a infraestrutura non funcionará. Consulte co administrador do sistema para instalalo.", "Host" => "Servidor", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Pode omitir o protocolo agás que precise de SSL. Nese caso comece con ldaps://", "Base DN" => "DN base", "You can specify Base DN for users and groups in the Advanced tab" => "Pode especificar a DN base para usuarios e grupos na lapela de «Avanzado»", "User DN" => "DN do usuario", -"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." => "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso en anónimo de o DN e o contrasinal baleiros.", +"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." => "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso anónimo deixe o DN e o contrasinal baleiros.", "Password" => "Contrasinal", "For anonymous access, leave DN and Password empty." => "Para o acceso anónimo deixe o DN e o contrasinal baleiros.", "User Login Filter" => "Filtro de acceso de usuarios", @@ -21,7 +23,7 @@ "Base Group Tree" => "Base da árbore de grupo", "Group-Member association" => "Asociación de grupos e membros", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "Non empregualo para conexións SSL: fallará.", +"Do not use it for SSL connections, it will fail." => "Non empregalo para conexións SSL: fallará.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP que non distingue entre maiúsculas e minúsculas (Windows)", "Turn off SSL certificate validation." => "Desactiva a validación do certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a conexión só funciona con esta opción importa o certificado SSL do servidor LDAP no seu servidor ownCloud.", diff --git a/apps/user_webdavauth/l10n/gl.php b/apps/user_webdavauth/l10n/gl.php index a5b7e56771f..fa81db333d4 100644 --- a/apps/user_webdavauth/l10n/gl.php +++ b/apps/user_webdavauth/l10n/gl.php @@ -1,3 +1,4 @@ "URL WebDAV: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviará as credenciais do usuario a este URL, http 401 e http 403 interpretanse como credenciais incorrectas e todos os outros códigos como credenciais correctas." ); diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 4cdc39896b5..8daa8c6d1c4 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -1,23 +1,27 @@ "O usuario %s compartíu un ficheiro con vostede", +"User %s shared a folder with you" => "O usuario %s compartíu un cartafol con vostede", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o ficheiro «%s» con vostede. Teno dispoñíbel en: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o cartafol «%s» con vostede. Teno dispoñíbel en: %s", "Category type not provided." => "Non se indicou o tipo de categoría", "No category to add?" => "Sen categoría que engadir?", "This category already exists: " => "Esta categoría xa existe: ", "Object type not provided." => "Non se forneceu o tipo de obxecto.", -"%s ID not provided." => "Non se deu o ID %s.", -"Error adding %s to favorites." => "Erro ao engadir %s aos favoritos.", +"%s ID not provided." => "Non se forneceu o ID %s.", +"Error adding %s to favorites." => "Produciuse un erro ao engadir %s aos favoritos.", "No categories selected for deletion." => "Non hai categorías seleccionadas para eliminar.", -"Error removing %s from favorites." => "Erro ao eliminar %s dos favoritos.", +"Error removing %s from favorites." => "Produciuse un erro ao eliminar %s dos favoritos.", "Settings" => "Configuracións", "seconds ago" => "segundos atrás", "1 minute ago" => "hai 1 minuto", -"{minutes} minutes ago" => "{minutes} minutos atrás", +"{minutes} minutes ago" => "hai {minutes} minutos", "1 hour ago" => "hai 1 hora", -"{hours} hours ago" => "{hours} horas atrás", +"{hours} hours ago" => "hai {hours} horas", "today" => "hoxe", "yesterday" => "onte", -"{days} days ago" => "{days} días atrás", +"{days} days ago" => "hai {days} días", "last month" => "último mes", -"{months} months ago" => "{months} meses atrás", +"{months} months ago" => "hai {months} meses", "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", @@ -30,42 +34,46 @@ "Error" => "Erro", "The app name is not specified." => "Non se especificou o nome do aplicativo.", "The required file {file} is not installed!" => "Non está instalado o ficheiro {file} que se precisa", -"Error while sharing" => "Erro compartindo", -"Error while unsharing" => "Erro ao deixar de compartir", -"Error while changing permissions" => "Erro ao cambiar os permisos", -"Shared with you and the group {group} by {owner}" => "Compartido contigo e co grupo {group} de {owner}", -"Shared with you by {owner}" => "Compartido contigo por {owner}", +"Error while sharing" => "Produciuse un erro ao compartir", +"Error while unsharing" => "Produciuse un erro ao deixar de compartir", +"Error while changing permissions" => "Produciuse un erro ao cambiar os permisos", +"Shared with you and the group {group} by {owner}" => "Compartido con vostede e co grupo {group} por {owner}", +"Shared with you by {owner}" => "Compartido con vostede por {owner}", "Share with" => "Compartir con", -"Share with link" => "Compartir ca ligazón", +"Share with link" => "Compartir coa ligazón", "Password protect" => "Protexido con contrasinais", "Password" => "Contrasinal", +"Email link to person" => "Enviar ligazón por correo", +"Send" => "Enviar", "Set expiration date" => "Definir a data de caducidade", "Expiration date" => "Data de caducidade", -"Share via email:" => "Compartir por correo electrónico:", +"Share via email:" => "Compartir por correo:", "No people found" => "Non se atopou xente", -"Resharing is not allowed" => "Non se acepta volver a compartir", +"Resharing is not allowed" => "Non se permite volver a compartir", "Shared in {item} with {user}" => "Compartido en {item} con {user}", "Unshare" => "Deixar de compartir", "can edit" => "pode editar", "access control" => "control de acceso", "create" => "crear", "update" => "actualizar", -"delete" => "borrar", +"delete" => "eliminar", "share" => "compartir", "Password protected" => "Protexido con contrasinal", -"Error unsetting expiration date" => "Erro ao quitar a data de caducidade", -"Error setting expiration date" => "Erro ao definir a data de caducidade", -"ownCloud password reset" => "Restablecer contrasinal de ownCloud", -"Use the following link to reset your password: {link}" => "Usa a seguinte ligazón para restablecer o contrasinal: {link}", -"You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo electrónico para restablecer o contrasinal", -"Reset email send." => "Restablecer o envío por correo.", -"Request failed!" => "Fallo na petición", +"Error unsetting expiration date" => "Produciuse un erro ao retirar a data de caducidade", +"Error setting expiration date" => "Produciuse un erro ao definir a data de caducidade", +"Sending ..." => "Enviando...", +"Email sent" => "Correo enviado", +"ownCloud password reset" => "Restabelecer o contrasinal de ownCloud", +"Use the following link to reset your password: {link}" => "Usa a seguinte ligazón para restabelecer o contrasinal: {link}", +"You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo para restabelecer o contrasinal", +"Reset email send." => "Restabelecer o envío por correo.", +"Request failed!" => "Non foi posíbel facer a petición", "Username" => "Nome de usuario", -"Request reset" => "Petición de restablecemento", -"Your password was reset" => "O contrasinal foi restablecido", +"Request reset" => "Petición de restabelecemento", +"Your password was reset" => "O contrasinal foi restabelecido", "To login page" => "A páxina de conexión", "New password" => "Novo contrasinal", -"Reset password" => "Restablecer contrasinal", +"Reset password" => "Restabelecer o contrasinal", "Personal" => "Persoal", "Users" => "Usuarios", "Apps" => "Aplicativos", @@ -75,15 +83,15 @@ "Cloud not found" => "Nube non atopada", "Edit categories" => "Editar categorías", "Add" => "Engadir", -"Security Warning" => "Aviso de seguridade", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non hai un xerador de números aleatorios dispoñíbel. Activa o engadido de OpenSSL para PHP.", -"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sen un xerador de números aleatorios seguro podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa túa conta.", -"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." => "O teu cartafol de datos e os teus ficheiros son seguramente accesibles a través de internet. O ficheiro .htaccess que ownCloud fornece non está empregándose. Suxírese que configures o teu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou movas o cartafol de datos fóra do root do directorio de datos do servidor web.", +"Security Warning" => "Aviso de seguranza", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non hai un xerador de números ao chou dispoñíbel. Active o engadido de OpenSSL para PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sen un xerador seguro de números ao chou podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa súa conta.", +"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." => "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través da Internet. O ficheiro .htaccess que fornece ownCloud non está a empregarse. Suxerimoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesíbel ou mova o cartafol de datos fora do directorio raíz de datos do servidor web.", "Create an admin account" => "Crear unha contra de administrador", "Advanced" => "Avanzado", "Data folder" => "Cartafol de datos", "Configure the database" => "Configurar a base de datos", -"will be used" => "será utilizado", +"will be used" => "vai ser utilizado", "Database user" => "Usuario da base de datos", "Database password" => "Contrasinal da base de datos", "Database name" => "Nome da base de datos", @@ -97,23 +105,23 @@ "Thursday" => "Xoves", "Friday" => "Venres", "Saturday" => "Sábado", -"January" => "Xaneiro", -"February" => "Febreiro", -"March" => "Marzo", -"April" => "Abril", -"May" => "Maio", -"June" => "Xuño", -"July" => "Xullo", -"August" => "Agosto", -"September" => "Setembro", -"October" => "Outubro", -"November" => "Novembro", -"December" => "Decembro", +"January" => "xaneiro", +"February" => "febreiro", +"March" => "marzo", +"April" => "abril", +"May" => "maio", +"June" => "xuño", +"July" => "xullo", +"August" => "agosto", +"September" => "setembro", +"October" => "outubro", +"November" => "novembro", +"December" => "decembro", "web services under your control" => "servizos web baixo o seu control", "Log out" => "Desconectar", "Automatic logon rejected!" => "Rexeitouse a entrada automática", -"If you did not change your password recently, your account may be compromised!" => "Se non fixeches cambios de contrasinal recentemente é posíbel que a túa conta estea comprometida!", -"Please change your password to secure your account again." => "Cambia de novo o teu contrasinal para asegurar a túa conta.", +"If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!", +"Please change your password to secure your account again." => "Cambie de novo o seu contrasinal para asegurar a súa conta.", "Lost your password?" => "Perdeu o contrasinal?", "remember" => "lembrar", "Log in" => "Conectar", @@ -121,6 +129,6 @@ "prev" => "anterior", "next" => "seguinte", "Security Warning!" => "Advertencia de seguranza", -"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Verifica o teu contrasinal.
Por motivos de seguridade pode que ocasionalmente se che pregunte de novo polo teu contrasinal.", +"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Verifique o seu contrasinal.
Por motivos de seguranza pode que ocasionalmente se lle pregunte de novo polo seu contrasinal.", "Verify" => "Verificar" ); diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 9ac326d45ec..1c86e8b11d6 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -1,28 +1,73 @@ "%s felhasználó megosztott Önnel egy fájlt", +"User %s shared a folder with you" => "%s felhasználó megosztott Önnel egy mappát", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s felhasználó megosztotta ezt az állományt Önnel: %s. A fájl innen tölthető le: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s felhasználó megosztotta ezt a mappát Önnel: %s. A mappa innen tölthető le: %s", +"Category type not provided." => "Nincs megadva a kategória típusa.", "No category to add?" => "Nincs hozzáadandó kategória?", -"This category already exists: " => "Ez a kategória már létezik", +"This category already exists: " => "Ez a kategória már létezik: ", +"Object type not provided." => "Az objektum típusa nincs megadva.", +"%s ID not provided." => "%s ID nincs megadva.", +"Error adding %s to favorites." => "Nem sikerült a kedvencekhez adni ezt: %s", "No categories selected for deletion." => "Nincs törlésre jelölt kategória", +"Error removing %s from favorites." => "Nem sikerült a kedvencekből törölni ezt: %s", "Settings" => "Beállítások", -"seconds ago" => "másodperccel ezelőtt", -"1 minute ago" => "1 perccel ezelőtt", +"seconds ago" => "pár másodperce", +"1 minute ago" => "1 perce", +"{minutes} minutes ago" => "{minutes} perce", "1 hour ago" => "1 órája", +"{hours} hours ago" => "{hours} órája", "today" => "ma", "yesterday" => "tegnap", +"{days} days ago" => "{days} napja", "last month" => "múlt hónapban", -"months ago" => "hónappal ezelőtt", +"{months} months ago" => "{months} hónapja", +"months ago" => "több hónapja", "last year" => "tavaly", -"years ago" => "évvel ezelőtt", +"years ago" => "több éve", +"Choose" => "Válasszon", "Cancel" => "Mégse", "No" => "Nem", "Yes" => "Igen", "Ok" => "Ok", +"The object type is not specified." => "Az objektum típusa nincs megadva.", "Error" => "Hiba", -"Password" => "Jelszó", -"Unshare" => "Nem oszt meg", -"create" => "létrehozás", +"The app name is not specified." => "Az alkalmazás neve nincs megadva.", +"The required file {file} is not installed!" => "A szükséges fájl: {file} nincs telepítve!", +"Error while sharing" => "Nem sikerült létrehozni a megosztást", +"Error while unsharing" => "Nem sikerült visszavonni a megosztást", +"Error while changing permissions" => "Nem sikerült módosítani a jogosultságokat", +"Shared with you and the group {group} by {owner}" => "Megosztotta Önnel és a(z) {group} csoporttal: {owner}", +"Shared with you by {owner}" => "Megosztotta Önnel: {owner}", +"Share with" => "Kivel osztom meg", +"Share with link" => "Link megadásával osztom meg", +"Password protect" => "Jelszóval is védem", +"Password" => "Jelszó (tetszőleges)", +"Email link to person" => "Email címre küldjük el", +"Send" => "Küldjük el", +"Set expiration date" => "Legyen lejárati idő", +"Expiration date" => "A lejárati idő", +"Share via email:" => "Megosztás emaillel:", +"No people found" => "Nincs találat", +"Resharing is not allowed" => "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal", +"Shared in {item} with {user}" => "Megosztva {item}-ben {user}-rel", +"Unshare" => "A megosztás visszavonása", +"can edit" => "módosíthat", +"access control" => "jogosultság", +"create" => "létrehoz", +"update" => "szerkeszt", +"delete" => "töröl", +"share" => "megoszt", +"Password protected" => "Jelszóval van védve", +"Error unsetting expiration date" => "Nem sikerült a lejárati időt törölni", +"Error setting expiration date" => "Nem sikerült a lejárati időt beállítani", +"Sending ..." => "Küldés ...", +"Email sent" => "Az emailt elküldtük", "ownCloud password reset" => "ownCloud jelszó-visszaállítás", -"Use the following link to reset your password: {link}" => "Használja az alábbi linket a jelszó-visszaállításhoz: {link}", -"You will receive a link to reset your password via Email." => "Egy e-mailben kap értesítést a jelszóváltoztatás módjáról.", +"Use the following link to reset your password: {link}" => "Használja ezt a linket a jelszó ismételt beállításához: {link}", +"You will receive a link to reset your password via Email." => "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról.", +"Reset email send." => "Elküldtük az emailt a jelszó ismételt beállításához.", +"Request failed!" => "Nem sikerült a kérést teljesíteni!", "Username" => "Felhasználónév", "Request reset" => "Visszaállítás igénylése", "Your password was reset" => "Jelszó megváltoztatva", @@ -32,48 +77,58 @@ "Personal" => "Személyes", "Users" => "Felhasználók", "Apps" => "Alkalmazások", -"Admin" => "Admin", +"Admin" => "Adminisztráció", "Help" => "Súgó", -"Access forbidden" => "Hozzáférés tiltva", +"Access forbidden" => "A hozzáférés nem engedélyezett", "Cloud not found" => "A felhő nem található", "Edit categories" => "Kategóriák szerkesztése", "Add" => "Hozzáadás", "Security Warning" => "Biztonsági figyelmeztetés", -"Create an admin account" => "Rendszergazdafiók létrehozása", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nem érhető el megfelelő véletlenszám-generátor, telepíteni kellene a PHP OpenSSL kiegészítését.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Megfelelő véletlenszám-generátor hiányában egy támadó szándékú idegen képes lehet megjósolni a jelszóvisszaállító tokent, és Ön helyett belépni.", +"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." => "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon fontos, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár nem legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.", +"Create an admin account" => "Rendszergazdai belépés létrehozása", "Advanced" => "Haladó", "Data folder" => "Adatkönyvtár", "Configure the database" => "Adatbázis konfigurálása", -"will be used" => "használva lesz", +"will be used" => "adatbázist fogunk használni", "Database user" => "Adatbázis felhasználónév", "Database password" => "Adatbázis jelszó", -"Database name" => "Adatbázis név", +"Database name" => "Az adatbázis neve", +"Database tablespace" => "Az adatbázis táblázattér (tablespace)", "Database host" => "Adatbázis szerver", -"Finish setup" => "Beállítás befejezése", -"Sunday" => "Vasárnap", -"Monday" => "Hétfő", -"Tuesday" => "Kedd", -"Wednesday" => "Szerda", -"Thursday" => "Csütörtök", -"Friday" => "Péntek", -"Saturday" => "Szombat", -"January" => "Január", -"February" => "Február", -"March" => "Március", -"April" => "Április", -"May" => "Május", -"June" => "Június", -"July" => "Július", -"August" => "Augusztus", -"September" => "Szeptember", -"October" => "Október", -"November" => "November", -"December" => "December", -"web services under your control" => "webszolgáltatások az irányításod alatt", +"Finish setup" => "A beállítások befejezése", +"Sunday" => "vasárnap", +"Monday" => "hétfő", +"Tuesday" => "kedd", +"Wednesday" => "szerda", +"Thursday" => "csütörtök", +"Friday" => "péntek", +"Saturday" => "szombat", +"January" => "január", +"February" => "február", +"March" => "március", +"April" => "április", +"May" => "május", +"June" => "június", +"July" => "július", +"August" => "augusztus", +"September" => "szeptember", +"October" => "október", +"November" => "november", +"December" => "december", +"web services under your control" => "webszolgáltatások saját kézben", "Log out" => "Kilépés", -"Lost your password?" => "Elfelejtett jelszó?", +"Automatic logon rejected!" => "Az automatikus bejelentkezés sikertelen!", +"If you did not change your password recently, your account may be compromised!" => "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy idegenek jutottak be a rendszerbe az Ön nevében!", +"Please change your password to secure your account again." => "A biztonsága érdekében változtassa meg a jelszavát!", +"Lost your password?" => "Elfelejtette a jelszavát?", "remember" => "emlékezzen", "Log in" => "Bejelentkezés", "You are logged out." => "Kilépett.", -"prev" => "Előző", -"next" => "Következő" +"prev" => "előző", +"next" => "következő", +"Security Warning!" => "Biztonsági figyelmeztetés!", +"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Kérjük írja be a jelszavát!
Biztonsági okokból néha a bejelentkezést követően is ellenőrzésképpen meg kell adnia a jelszavát.", +"Verify" => "Ellenőrzés" ); diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 03cdc399cfb..85b991ab12e 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 07:40+0000\n" +"Last-Translator: rogerc \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" @@ -249,15 +249,15 @@ msgstr "Crea" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Emmagatzemament per defecte" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Il·limitat" #: templates/users.php:60 templates/users.php:153 msgid "Other" -msgstr "Altre" +msgstr "Un altre" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" @@ -265,11 +265,11 @@ msgstr "Grup Admin" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Emmagatzemament" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Per defecte" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 22c66343396..69256439a07 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -4,14 +4,15 @@ # # Translators: # antiparvos , 2012. +# , 2012. # Xosé M. Lamas , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 09:32+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" @@ -22,26 +23,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "O usuario %s compartíu un ficheiro con vostede" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "O usuario %s compartíu un cartafol con vostede" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "O usuario %s compartiu o ficheiro «%s» con vostede. Teno dispoñíbel en: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "O usuario %s compartiu o cartafol «%s» con vostede. Teno dispoñíbel en: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -65,12 +66,12 @@ msgstr "Non se forneceu o tipo de obxecto." #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "Non se deu o ID %s." +msgstr "Non se forneceu o ID %s." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Erro ao engadir %s aos favoritos." +msgstr "Produciuse un erro ao engadir %s aos favoritos." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -79,7 +80,7 @@ msgstr "Non hai categorías seleccionadas para eliminar." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Erro ao eliminar %s dos favoritos." +msgstr "Produciuse un erro ao eliminar %s dos favoritos." #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" @@ -95,7 +96,7 @@ msgstr "hai 1 minuto" #: js/js.js:706 msgid "{minutes} minutes ago" -msgstr "{minutes} minutos atrás" +msgstr "hai {minutes} minutos" #: js/js.js:707 msgid "1 hour ago" @@ -103,7 +104,7 @@ msgstr "hai 1 hora" #: js/js.js:708 msgid "{hours} hours ago" -msgstr "{hours} horas atrás" +msgstr "hai {hours} horas" #: js/js.js:709 msgid "today" @@ -115,7 +116,7 @@ msgstr "onte" #: js/js.js:711 msgid "{days} days ago" -msgstr "{days} días atrás" +msgstr "hai {days} días" #: js/js.js:712 msgid "last month" @@ -123,7 +124,7 @@ msgstr "último mes" #: js/js.js:713 msgid "{months} months ago" -msgstr "{months} meses atrás" +msgstr "hai {months} meses" #: js/js.js:714 msgid "months ago" @@ -163,8 +164,8 @@ msgid "The object type is not specified." msgstr "Non se especificou o tipo de obxecto." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Erro" @@ -176,25 +177,25 @@ msgstr "Non se especificou o nome do aplicativo." msgid "The required file {file} is not installed!" msgstr "Non está instalado o ficheiro {file} que se precisa" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "Erro compartindo" +msgstr "Produciuse un erro ao compartir" #: js/share.js:135 msgid "Error while unsharing" -msgstr "Erro ao deixar de compartir" +msgstr "Produciuse un erro ao deixar de compartir" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "Erro ao cambiar os permisos" +msgstr "Produciuse un erro ao cambiar os permisos" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "Compartido contigo e co grupo {group} de {owner}" +msgstr "Compartido con vostede e co grupo {group} por {owner}" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "Compartido contigo por {owner}" +msgstr "Compartido con vostede por {owner}" #: js/share.js:158 msgid "Share with" @@ -202,24 +203,24 @@ msgstr "Compartir con" #: js/share.js:163 msgid "Share with link" -msgstr "Compartir ca ligazón" +msgstr "Compartir coa ligazón" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protexido con contrasinais" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Contrasinal" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Enviar ligazón por correo" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Enviar" #: js/share.js:177 msgid "Set expiration date" @@ -231,7 +232,7 @@ msgstr "Data de caducidade" #: js/share.js:210 msgid "Share via email:" -msgstr "Compartir por correo electrónico:" +msgstr "Compartir por correo:" #: js/share.js:212 msgid "No people found" @@ -239,7 +240,7 @@ msgstr "Non se atopou xente" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "Non se acepta volver a compartir" +msgstr "Non se permite volver a compartir" #: js/share.js:275 msgid "Shared in {item} with {user}" @@ -267,64 +268,64 @@ msgstr "actualizar" #: js/share.js:319 msgid "delete" -msgstr "borrar" +msgstr "eliminar" #: js/share.js:322 msgid "share" msgstr "compartir" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "Erro ao quitar a data de caducidade" +msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" -msgstr "Erro ao definir a data de caducidade" +msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Enviando..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Correo enviado" #: lostpassword/controller.php:47 msgid "ownCloud password reset" -msgstr "Restablecer contrasinal de ownCloud" +msgstr "Restabelecer o contrasinal de ownCloud" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Usa a seguinte ligazón para restablecer o contrasinal: {link}" +msgstr "Usa a seguinte ligazón para restabelecer o contrasinal: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Recibirá unha ligazón por correo electrónico para restablecer o contrasinal" +msgstr "Recibirá unha ligazón por correo para restabelecer o contrasinal" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Restablecer o envío por correo." +msgstr "Restabelecer o envío por correo." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Fallo na petición" +msgstr "Non foi posíbel facer a petición" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nome de usuario" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Petición de restablecemento" +msgstr "Petición de restabelecemento" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "O contrasinal foi restablecido" +msgstr "O contrasinal foi restabelecido" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -336,7 +337,7 @@ msgstr "Novo contrasinal" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Restablecer contrasinal" +msgstr "Restabelecer o contrasinal" #: strings.php:5 msgid "Personal" @@ -376,19 +377,19 @@ msgstr "Engadir" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "Aviso de seguridade" +msgstr "Aviso de seguranza" #: templates/installation.php:24 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Non hai un xerador de números aleatorios dispoñíbel. Activa o engadido de OpenSSL para PHP." +msgstr "Non hai un xerador de números ao chou dispoñíbel. Active o engadido de OpenSSL para PHP." #: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sen un xerador de números aleatorios seguro podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa túa conta." +msgstr "Sen un xerador seguro de números ao chou podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa súa conta." #: templates/installation.php:32 msgid "" @@ -397,50 +398,50 @@ msgid "" "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 "O teu cartafol de datos e os teus ficheiros son seguramente accesibles a través de internet. O ficheiro .htaccess que ownCloud fornece non está empregándose. Suxírese que configures o teu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou movas o cartafol de datos fóra do root do directorio de datos do servidor web." +msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través da Internet. O ficheiro .htaccess que fornece ownCloud non está a empregarse. Suxerimoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesíbel ou mova o cartafol de datos fora do directorio raíz de datos do servidor web." #: templates/installation.php:36 msgid "Create an admin account" msgstr "Crear unha contra de administrador" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Cartafol de datos" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar a base de datos" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" -msgstr "será utilizado" +msgstr "vai ser utilizado" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Táboa de espazos da base de datos" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Rematar a configuración" @@ -474,51 +475,51 @@ msgstr "Sábado" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "January" -msgstr "Xaneiro" +msgstr "xaneiro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "February" -msgstr "Febreiro" +msgstr "febreiro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "March" -msgstr "Marzo" +msgstr "marzo" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "April" -msgstr "Abril" +msgstr "abril" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "May" -msgstr "Maio" +msgstr "maio" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "June" -msgstr "Xuño" +msgstr "xuño" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "July" -msgstr "Xullo" +msgstr "xullo" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "August" -msgstr "Agosto" +msgstr "agosto" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "September" -msgstr "Setembro" +msgstr "setembro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "October" -msgstr "Outubro" +msgstr "outubro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "November" -msgstr "Novembro" +msgstr "novembro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "December" -msgstr "Decembro" +msgstr "decembro" #: templates/layout.guest.php:42 msgid "web services under your control" @@ -528,29 +529,29 @@ msgstr "servizos web baixo o seu control" msgid "Log out" msgstr "Desconectar" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Rexeitouse a entrada automática" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Se non fixeches cambios de contrasinal recentemente é posíbel que a túa conta estea comprometida!" +msgstr "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "Cambia de novo o teu contrasinal para asegurar a túa conta." +msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "lembrar" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Conectar" @@ -574,7 +575,7 @@ msgstr "Advertencia de seguranza" msgid "" "Please verify your password.
For security reasons you may be " "occasionally asked to enter your password again." -msgstr "Verifica o teu contrasinal.
Por motivos de seguridade pode que ocasionalmente se che pregunte de novo polo teu contrasinal." +msgstr "Verifique o seu contrasinal.
Por motivos de seguranza pode que ocasionalmente se lle pregunte de novo polo seu contrasinal." #: templates/verify.php:16 msgid "Verify" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 775152bbea7..9bc476ece0b 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 08:40+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "Cubrir todos os campos obrigatorios" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Dá o segredo e a chave correcta do aplicativo de Dropbox." +msgstr "Forneza unha chave correcta e segreda do Dropbox." #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" @@ -47,14 +47,14 @@ msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +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:435 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 "" +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." #: templates/settings.php:3 msgid "External Storage" @@ -101,7 +101,7 @@ msgid "Users" msgstr "Usuarios" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Eliminar" @@ -113,10 +113,10 @@ msgstr "Activar o almacenamento externo do usuario" msgid "Allow users to mount their own external storage" msgstr "Permitir aos usuarios montar os seus propios almacenamentos externos" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "Certificados SSL root" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Importar o certificado root" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index e2ef6571062..29fdaa8ac25 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -4,14 +4,15 @@ # # Translators: # antiparvos , 2012. +# , 2012. # Xosé M. Lamas , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 09:02+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" @@ -21,7 +22,7 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Non se puido cargar a lista desde a App Store" +msgstr "Non foi posíbel cargar a lista desde a App Store" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -29,23 +30,23 @@ msgstr "O grupo xa existe" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Non se pode engadir o grupo" +msgstr "Non é posíbel engadir o grupo" #: ajax/enableapp.php:12 msgid "Could not enable app. " -msgstr "Con se puido activar o aplicativo." +msgstr "Non é posíbel activar o aplicativo." #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Correo electrónico gardado" +msgstr "Correo gardado" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "correo electrónico non válido" +msgstr "correo incorrecto" #: ajax/openid.php:13 msgid "OpenID Changed" -msgstr "Mudou o OpenID" +msgstr "Cambiou o OpenID" #: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" @@ -53,19 +54,19 @@ msgstr "Petición incorrecta" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Non se pode eliminar o grupo." +msgstr "Non é posíbel eliminar o grupo." #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "Erro na autenticación" +msgstr "Produciuse un erro de autenticación" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Non se pode eliminar o usuario" +msgstr "Non é posíbel eliminar o usuario" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "O idioma mudou" +msgstr "O idioma cambiou" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -74,12 +75,12 @@ msgstr "Os administradores non se pode eliminar a si mesmos do grupo admin" #: ajax/togglegroups.php:28 #, php-format msgid "Unable to add user to group %s" -msgstr "Non se puido engadir o usuario ao grupo %s" +msgstr "Non é posíbel engadir o usuario ao grupo %s" #: ajax/togglegroups.php:34 #, php-format msgid "Unable to remove user from group %s" -msgstr "Non se puido eliminar o usuario do grupo %s" +msgstr "Non é posíbel eliminar o usuario do grupo %s" #: js/apps.js:28 js/apps.js:67 msgid "Disable" @@ -99,7 +100,7 @@ msgstr "Galego" #: templates/apps.php:10 msgid "Add your App" -msgstr "Engade o teu aplicativo" +msgstr "Engada o seu aplicativo" #: templates/apps.php:11 msgid "More Apps" @@ -107,11 +108,11 @@ msgstr "Máis aplicativos" #: templates/apps.php:27 msgid "Select an App" -msgstr "Escolla un Aplicativo" +msgstr "Escolla un aplicativo" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "Vexa a páxina do aplicativo en apps.owncloud.com" +msgstr "Consulte a páxina do aplicativo en apps.owncloud.com" #: templates/apps.php:32 msgid "-licensed by " @@ -119,32 +120,32 @@ msgstr "-licenciado por%s
of the available %s" -msgstr "Tes usados %s do total dispoñíbel de %s" +msgstr "Te en uso %s do total dispoñíbel de %s" #: templates/personal.php:12 msgid "Clients" @@ -152,15 +153,15 @@ msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Descargar clientes para escritorio" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Descargar clientes para Android" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Descargar clientes ra iOS" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -172,7 +173,7 @@ msgstr "O seu contrasinal foi cambiado" #: templates/personal.php:23 msgid "Unable to change your password" -msgstr "Incapaz de trocar o seu contrasinal" +msgstr "Non é posíbel cambiar o seu contrasinal" #: templates/personal.php:24 msgid "Current password" @@ -188,19 +189,19 @@ msgstr "amosar" #: templates/personal.php:27 msgid "Change password" -msgstr "Mudar contrasinal" +msgstr "Cambiar o contrasinal" #: templates/personal.php:33 msgid "Email" -msgstr "Correo electrónico" +msgstr "Correo" #: templates/personal.php:34 msgid "Your email address" -msgstr "O seu enderezo de correo electrónico" +msgstr "O seu enderezo de correo" #: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" -msgstr "Escriba un enderezo de correo electrónico para habilitar a recuperación do contrasinal" +msgstr "Escriba un enderezo de correo para activar a recuperación do contrasinal" #: templates/personal.php:41 templates/personal.php:42 msgid "Language" @@ -212,15 +213,15 @@ msgstr "Axude na tradución" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Versión" #: templates/personal.php:65 msgid "" @@ -246,11 +247,11 @@ msgstr "Crear" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Almacenamento predeterminado" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Sen límites" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -262,12 +263,12 @@ msgstr "Grupo Admin" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Almacenamento" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Predeterminado" #: templates/users.php:161 msgid "Delete" -msgstr "Borrar" +msgstr "Eliminar" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index e61cf22989a..024f611c187 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 08:48+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" @@ -24,13 +24,13 @@ 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 "" +msgstr "Aviso: Os aplicativos user_ldap e user_webdavauth son incompatíbeis. Pode acontecer un comportamento estraño. Consulte co administrador do sistema para desactivar un deles." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Aviso: O módulo PHP LDAP é necesario e non está instalado, a infraestrutura non funcionará. Consulte co administrador do sistema para instalalo." #: templates/settings.php:15 msgid "Host" @@ -58,7 +58,7 @@ msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso en anónimo de o DN e o contrasinal baleiros." +msgstr "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso anónimo deixe o DN e o contrasinal baleiros." #: templates/settings.php:18 msgid "Password" @@ -130,7 +130,7 @@ msgstr "Usar TLS" #: templates/settings.php:28 msgid "Do not use it for SSL connections, it will fail." -msgstr "Non empregualo para conexións SSL: fallará." +msgstr "Non empregalo para conexións SSL: fallará." #: templates/settings.php:29 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index 8fdb2745637..5630c82c50e 100644 --- a/l10n/gl/user_webdavauth.po +++ b/l10n/gl/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Miguel Branco, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 08:22+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" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud enviará as credenciais do usuario a este URL, http 401 e http 403 interpretanse como credenciais incorrectas e todos os outros códigos como credenciais correctas." diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 827fa8bff4f..40dde261a38 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 09:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 14:56+0000\n" +"Last-Translator: Laszlo Tornoci \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" @@ -23,30 +23,30 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "%s felhasználó megosztott Önnel egy fájlt" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "%s felhasználó megosztott Önnel egy mappát" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "%s felhasználó megosztotta ezt az állományt Önnel: %s. A fájl innen tölthető le: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "%s felhasználó megosztotta ezt a mappát Önnel: %s. A mappa innen tölthető le: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Nincs megadva a kategória típusa." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -54,24 +54,24 @@ msgstr "Nincs hozzáadandó kategória?" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "Ez a kategória már létezik" +msgstr "Ez a kategória már létezik: " #: 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 "" +msgstr "Az objektum típusa nincs megadva." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID nincs megadva." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Nem sikerült a kedvencekhez adni ezt: %s" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -80,7 +80,7 @@ msgstr "Nincs törlésre jelölt kategória" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Nem sikerült a kedvencekből törölni ezt: %s" #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" @@ -88,15 +88,15 @@ msgstr "Beállítások" #: js/js.js:704 msgid "seconds ago" -msgstr "másodperccel ezelőtt" +msgstr "pár másodperce" #: js/js.js:705 msgid "1 minute ago" -msgstr "1 perccel ezelőtt" +msgstr "1 perce" #: js/js.js:706 msgid "{minutes} minutes ago" -msgstr "" +msgstr "{minutes} perce" #: js/js.js:707 msgid "1 hour ago" @@ -104,7 +104,7 @@ msgstr "1 órája" #: js/js.js:708 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} órája" #: js/js.js:709 msgid "today" @@ -116,7 +116,7 @@ msgstr "tegnap" #: js/js.js:711 msgid "{days} days ago" -msgstr "" +msgstr "{days} napja" #: js/js.js:712 msgid "last month" @@ -124,11 +124,11 @@ msgstr "múlt hónapban" #: js/js.js:713 msgid "{months} months ago" -msgstr "" +msgstr "{months} hónapja" #: js/js.js:714 msgid "months ago" -msgstr "hónappal ezelőtt" +msgstr "több hónapja" #: js/js.js:715 msgid "last year" @@ -136,11 +136,11 @@ msgstr "tavaly" #: js/js.js:716 msgid "years ago" -msgstr "évvel ezelőtt" +msgstr "több éve" #: js/oc-dialogs.js:126 msgid "Choose" -msgstr "" +msgstr "Válasszon" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" @@ -161,7 +161,7 @@ msgstr "Ok" #: 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 "" +msgstr "Az objektum típusa nincs megadva." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 @@ -171,128 +171,128 @@ msgstr "Hiba" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Az alkalmazás neve nincs megadva." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "A szükséges fájl: {file} nincs telepítve!" #: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "" +msgstr "Nem sikerült létrehozni a megosztást" #: js/share.js:135 msgid "Error while unsharing" -msgstr "" +msgstr "Nem sikerült visszavonni a megosztást" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "Nem sikerült módosítani a jogosultságokat" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Megosztotta Önnel és a(z) {group} csoporttal: {owner}" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Megosztotta Önnel: {owner}" #: js/share.js:158 msgid "Share with" -msgstr "" +msgstr "Kivel osztom meg" #: js/share.js:163 msgid "Share with link" -msgstr "" +msgstr "Link megadásával osztom meg" #: js/share.js:166 msgid "Password protect" -msgstr "" +msgstr "Jelszóval is védem" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" -msgstr "Jelszó" +msgstr "Jelszó (tetszőleges)" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Email címre küldjük el" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Küldjük el" #: js/share.js:177 msgid "Set expiration date" -msgstr "" +msgstr "Legyen lejárati idő" #: js/share.js:178 msgid "Expiration date" -msgstr "" +msgstr "A lejárati idő" #: js/share.js:210 msgid "Share via email:" -msgstr "" +msgstr "Megosztás emaillel:" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "Nincs találat" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" #: js/share.js:275 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Megosztva {item}-ben {user}-rel" #: js/share.js:296 msgid "Unshare" -msgstr "Nem oszt meg" +msgstr "A megosztás visszavonása" #: js/share.js:308 msgid "can edit" -msgstr "" +msgstr "módosíthat" #: js/share.js:310 msgid "access control" -msgstr "" +msgstr "jogosultság" #: js/share.js:313 msgid "create" -msgstr "létrehozás" +msgstr "létrehoz" #: js/share.js:316 msgid "update" -msgstr "" +msgstr "szerkeszt" #: js/share.js:319 msgid "delete" -msgstr "" +msgstr "töröl" #: js/share.js:322 msgid "share" -msgstr "" +msgstr "megoszt" #: js/share.js:356 js/share.js:541 msgid "Password protected" -msgstr "" +msgstr "Jelszóval van védve" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Nem sikerült a lejárati időt törölni" #: js/share.js:566 msgid "Error setting expiration date" -msgstr "" +msgstr "Nem sikerült a lejárati időt beállítani" #: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Küldés ..." #: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Az emailt elküldtük" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -300,19 +300,19 @@ msgstr "ownCloud jelszó-visszaállítás" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Használja az alábbi linket a jelszó-visszaállításhoz: {link}" +msgstr "Használja ezt a linket a jelszó ismételt beállításához: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Egy e-mailben kap értesítést a jelszóváltoztatás módjáról." +msgstr "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról." #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "Elküldtük az emailt a jelszó ismételt beállításához." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "Nem sikerült a kérést teljesíteni!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 #: templates/login.php:28 @@ -353,7 +353,7 @@ msgstr "Alkalmazások" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "Adminisztráció" #: strings.php:9 msgid "Help" @@ -361,7 +361,7 @@ msgstr "Súgó" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Hozzáférés tiltva" +msgstr "A hozzáférés nem engedélyezett" #: templates/404.php:12 msgid "Cloud not found" @@ -383,13 +383,13 @@ msgstr "Biztonsági figyelmeztetés" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Nem érhető el megfelelő véletlenszám-generátor, telepíteni kellene a PHP OpenSSL kiegészítését." #: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Megfelelő véletlenszám-generátor hiányában egy támadó szándékú idegen képes lehet megjósolni a jelszóvisszaállító tokent, és Ön helyett belépni." #: templates/installation.php:32 msgid "" @@ -398,11 +398,11 @@ msgid "" "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 "" +msgstr "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon fontos, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár nem legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre." #: templates/installation.php:36 msgid "Create an admin account" -msgstr "Rendszergazdafiók létrehozása" +msgstr "Rendszergazdai belépés létrehozása" #: templates/installation.php:50 msgid "Advanced" @@ -419,7 +419,7 @@ msgstr "Adatbázis konfigurálása" #: templates/installation.php:64 templates/installation.php:75 #: templates/installation.php:85 templates/installation.php:95 msgid "will be used" -msgstr "használva lesz" +msgstr "adatbázist fogunk használni" #: templates/installation.php:107 msgid "Database user" @@ -431,11 +431,11 @@ msgstr "Adatbázis jelszó" #: templates/installation.php:115 msgid "Database name" -msgstr "Adatbázis név" +msgstr "Az adatbázis neve" #: templates/installation.php:123 msgid "Database tablespace" -msgstr "" +msgstr "Az adatbázis táblázattér (tablespace)" #: templates/installation.php:129 msgid "Database host" @@ -443,87 +443,87 @@ msgstr "Adatbázis szerver" #: templates/installation.php:134 msgid "Finish setup" -msgstr "Beállítás befejezése" +msgstr "A beállítások befejezése" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" -msgstr "Vasárnap" +msgstr "vasárnap" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Monday" -msgstr "Hétfő" +msgstr "hétfő" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Tuesday" -msgstr "Kedd" +msgstr "kedd" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Wednesday" -msgstr "Szerda" +msgstr "szerda" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Thursday" -msgstr "Csütörtök" +msgstr "csütörtök" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Friday" -msgstr "Péntek" +msgstr "péntek" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Saturday" -msgstr "Szombat" +msgstr "szombat" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "January" -msgstr "Január" +msgstr "január" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "February" -msgstr "Február" +msgstr "február" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "March" -msgstr "Március" +msgstr "március" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "April" -msgstr "Április" +msgstr "április" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "May" -msgstr "Május" +msgstr "május" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "June" -msgstr "Június" +msgstr "június" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "July" -msgstr "Július" +msgstr "július" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "August" -msgstr "Augusztus" +msgstr "augusztus" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "September" -msgstr "Szeptember" +msgstr "szeptember" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "October" -msgstr "Október" +msgstr "október" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "November" -msgstr "November" +msgstr "november" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "December" -msgstr "December" +msgstr "december" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "webszolgáltatások az irányításod alatt" +msgstr "webszolgáltatások saját kézben" #: templates/layout.user.php:45 msgid "Log out" @@ -531,21 +531,21 @@ msgstr "Kilépés" #: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Az automatikus bejelentkezés sikertelen!" #: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy idegenek jutottak be a rendszerbe az Ön nevében!" #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "A biztonsága érdekében változtassa meg a jelszavát!" #: templates/login.php:19 msgid "Lost your password?" -msgstr "Elfelejtett jelszó?" +msgstr "Elfelejtette a jelszavát?" #: templates/login.php:39 msgid "remember" @@ -561,22 +561,22 @@ msgstr "Kilépett." #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "Előző" +msgstr "előző" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "Következő" +msgstr "következő" #: templates/verify.php:5 msgid "Security Warning!" -msgstr "" +msgstr "Biztonsági figyelmeztetés!" #: templates/verify.php:6 msgid "" "Please verify your password.
For security reasons you may be " "occasionally asked to enter your password again." -msgstr "" +msgstr "Kérjük írja be a jelszavát!
Biztonsági okokból néha a bejelentkezést követően is ellenőrzésképpen meg kell adnia a jelszavát." #: templates/verify.php:16 msgid "Verify" -msgstr "" +msgstr "Ellenőrzés" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index cc33a324c89..0567b13a379 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\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 9834fd44815..1d626ded072 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\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 1741ce20902..3701b3c74b5 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\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 ba153383185..9e76df73ac2 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\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 252ca02fd8c..c3e62b78024 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\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 50c7690b122..e6fd3867fce 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\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 48ce7c8f931..08e958471c8 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\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 b4e0bb7c2ba..421ddba058c 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\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 3090e074b57..947c9737100 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\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 3612d95289b..2fe02cb5c3b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 6a354211254..cde7fd1cbf1 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -53,7 +53,11 @@ "Name" => "Nom", "Groups" => "Grups", "Create" => "Crea", -"Other" => "Altre", +"Default Storage" => "Emmagatzemament per defecte", +"Unlimited" => "Il·limitat", +"Other" => "Un altre", "Group Admin" => "Grup Admin", +"Storage" => "Emmagatzemament", +"Default" => "Per defecte", "Delete" => "Suprimeix" ); diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 2853b6fed7d..13088d0d8b2 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -1,47 +1,63 @@ "Non se puido cargar a lista desde a App Store", +"Unable to load list from App Store" => "Non foi posíbel cargar a lista desde a App Store", "Group already exists" => "O grupo xa existe", -"Unable to add group" => "Non se pode engadir o grupo", -"Could not enable app. " => "Con se puido activar o aplicativo.", -"Email saved" => "Correo electrónico gardado", -"Invalid email" => "correo electrónico non válido", -"OpenID Changed" => "Mudou o OpenID", +"Unable to add group" => "Non é posíbel engadir o grupo", +"Could not enable app. " => "Non é posíbel activar o aplicativo.", +"Email saved" => "Correo gardado", +"Invalid email" => "correo incorrecto", +"OpenID Changed" => "Cambiou o OpenID", "Invalid request" => "Petición incorrecta", -"Unable to delete group" => "Non se pode eliminar o grupo.", -"Authentication error" => "Erro na autenticación", -"Unable to delete user" => "Non se pode eliminar o usuario", -"Language changed" => "O idioma mudou", +"Unable to delete group" => "Non é posíbel eliminar o grupo.", +"Authentication error" => "Produciuse un erro de autenticación", +"Unable to delete user" => "Non é posíbel eliminar o usuario", +"Language changed" => "O idioma cambiou", "Admins can't remove themself from the admin group" => "Os administradores non se pode eliminar a si mesmos do grupo admin", -"Unable to add user to group %s" => "Non se puido engadir o usuario ao grupo %s", -"Unable to remove user from group %s" => "Non se puido eliminar o usuario do grupo %s", +"Unable to add user to group %s" => "Non é posíbel engadir o usuario ao grupo %s", +"Unable to remove user from group %s" => "Non é posíbel eliminar o usuario do grupo %s", "Disable" => "Desactivar", "Enable" => "Activar", "Saving..." => "Gardando...", "__language_name__" => "Galego", -"Add your App" => "Engade o teu aplicativo", +"Add your App" => "Engada o seu aplicativo", "More Apps" => "Máis aplicativos", -"Select an App" => "Escolla un Aplicativo", -"See application page at apps.owncloud.com" => "Vexa a páxina do aplicativo en apps.owncloud.com", +"Select an App" => "Escolla un aplicativo", +"See application page at apps.owncloud.com" => "Consulte a páxina do aplicativo en apps.owncloud.com", "-licensed by " => "-licenciado por", -"You have used %s of the available %s" => "Tes usados %s do total dispoñíbel de %s", +"User Documentation" => "Documentación do usuario", +"Administrator Documentation" => "Documentación do administrador", +"Online Documentation" => "Documentación na Rede", +"Forum" => "Foro", +"Bugtracker" => "Seguemento de fallos", +"Commercial Support" => "Asistencia comercial", +"You have used %s of the available %s" => "Te en uso %s do total dispoñíbel de %s", "Clients" => "Clientes", +"Download Desktop Clients" => "Descargar clientes para escritorio", +"Download Android Client" => "Descargar clientes para Android", +"Download iOS Client" => "Descargar clientes ra iOS", "Password" => "Contrasinal", "Your password was changed" => "O seu contrasinal foi cambiado", -"Unable to change your password" => "Incapaz de trocar o seu contrasinal", +"Unable to change your password" => "Non é posíbel cambiar o seu contrasinal", "Current password" => "Contrasinal actual", "New password" => "Novo contrasinal", "show" => "amosar", -"Change password" => "Mudar contrasinal", -"Email" => "Correo electrónico", -"Your email address" => "O seu enderezo de correo electrónico", -"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo electrónico para habilitar a recuperación do contrasinal", +"Change password" => "Cambiar o contrasinal", +"Email" => "Correo", +"Your email address" => "O seu enderezo de correo", +"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo para activar a recuperación do contrasinal", "Language" => "Idioma", "Help translate" => "Axude na tradución", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros", +"Version" => "Versión", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolvido pola comunidade ownCloud, o código fonte está baixo a licenza AGPL.", "Name" => "Nome", "Groups" => "Grupos", "Create" => "Crear", +"Default Storage" => "Almacenamento predeterminado", +"Unlimited" => "Sen límites", "Other" => "Outro", "Group Admin" => "Grupo Admin", -"Delete" => "Borrar" +"Storage" => "Almacenamento", +"Default" => "Predeterminado", +"Delete" => "Eliminar" ); -- cgit v1.2.3 From 516464ba94a73e9151702ddd08dae1b7501dc79c Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 2 Jan 2013 00:05:14 +0100 Subject: [tx-robot] updated from transifex --- apps/user_webdavauth/l10n/sl.php | 3 +- l10n/bn_BD/core.po | 579 ++++++++++++++++++++++++++++++++++++ l10n/bn_BD/files.po | 266 +++++++++++++++++ l10n/bn_BD/files_encryption.po | 34 +++ l10n/bn_BD/files_external.po | 120 ++++++++ l10n/bn_BD/files_sharing.po | 48 +++ l10n/bn_BD/files_versions.po | 42 +++ l10n/bn_BD/lib.po | 152 ++++++++++ l10n/bn_BD/settings.po | 271 +++++++++++++++++ l10n/bn_BD/user_ldap.po | 183 ++++++++++++ l10n/bn_BD/user_webdavauth.po | 29 ++ l10n/sl/settings.po | 40 +-- l10n/sl/user_webdavauth.po | 12 +- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/sl.php | 16 + 24 files changed, 1778 insertions(+), 37 deletions(-) create mode 100644 l10n/bn_BD/core.po create mode 100644 l10n/bn_BD/files.po create mode 100644 l10n/bn_BD/files_encryption.po create mode 100644 l10n/bn_BD/files_external.po create mode 100644 l10n/bn_BD/files_sharing.po create mode 100644 l10n/bn_BD/files_versions.po create mode 100644 l10n/bn_BD/lib.po create mode 100644 l10n/bn_BD/settings.po create mode 100644 l10n/bn_BD/user_ldap.po create mode 100644 l10n/bn_BD/user_webdavauth.po (limited to 'apps') diff --git a/apps/user_webdavauth/l10n/sl.php b/apps/user_webdavauth/l10n/sl.php index 9bd32954b05..8f4effc81a1 100644 --- a/apps/user_webdavauth/l10n/sl.php +++ b/apps/user_webdavauth/l10n/sl.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud bo poslal uporabniška poverila temu URL naslovu. Pri tem bo interpretiral http 401 in http 403 odgovor kot spodletelo avtentikacijo ter vse ostale http odgovore kot uspešne." ); diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po new file mode 100644 index 00000000000..6d8b387d60c --- /dev/null +++ b/l10n/bn_BD/core.po @@ -0,0 +1,579 @@ +# 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-01-02 00:04+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:84 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:86 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:88 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:90 +#, 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 +msgid "This category already exists: " +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/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 +msgid "Settings" +msgstr "" + +#: js/js.js:704 +msgid "seconds ago" +msgstr "" + +#: js/js.js:705 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:706 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:707 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:708 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:709 +msgid "today" +msgstr "" + +#: js/js.js:710 +msgid "yesterday" +msgstr "" + +#: js/js.js:711 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:712 +msgid "last month" +msgstr "" + +#: js/js.js:713 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:714 +msgid "months ago" +msgstr "" + +#: js/js.js:715 +msgid "last year" +msgstr "" + +#: js/js.js:716 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:126 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:162 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:163 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:180 +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:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 +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:124 js/share.js:594 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:135 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:142 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:151 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:153 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:158 +msgid "Share with" +msgstr "" + +#: js/share.js:163 +msgid "Share with link" +msgstr "" + +#: js/share.js:166 +msgid "Password protect" +msgstr "" + +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 +#: templates/verify.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:172 +msgid "Email link to person" +msgstr "" + +#: js/share.js:173 +msgid "Send" +msgstr "" + +#: js/share.js:177 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:178 +msgid "Expiration date" +msgstr "" + +#: js/share.js:210 +msgid "Share via email:" +msgstr "" + +#: js/share.js:212 +msgid "No people found" +msgstr "" + +#: js/share.js:239 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:275 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:296 +msgid "Unshare" +msgstr "" + +#: js/share.js:308 +msgid "can edit" +msgstr "" + +#: js/share.js:310 +msgid "access control" +msgstr "" + +#: js/share.js:313 +msgid "create" +msgstr "" + +#: js/share.js:316 +msgid "update" +msgstr "" + +#: js/share.js:319 +msgid "delete" +msgstr "" + +#: js/share.js:322 +msgid "share" +msgstr "" + +#: js/share.js:356 js/share.js:541 +msgid "Password protected" +msgstr "" + +#: js/share.js:554 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:566 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:581 +msgid "Sending ..." +msgstr "" + +#: js/share.js:592 +msgid "Email sent" +msgstr "" + +#: lostpassword/controller.php:47 +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:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +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:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +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:32 +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/installation.php:36 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:50 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:52 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:59 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 +msgid "will be used" +msgstr "" + +#: templates/installation.php:107 +msgid "Database user" +msgstr "" + +#: templates/installation.php:111 +msgid "Database password" +msgstr "" + +#: templates/installation.php:115 +msgid "Database name" +msgstr "" + +#: templates/installation.php:123 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:129 +msgid "Database host" +msgstr "" + +#: templates/installation.php:134 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Sunday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Monday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Tuesday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Wednesday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Thursday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Friday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Saturday" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "January" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "February" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "March" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "April" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "May" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "June" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "July" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "August" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "September" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "October" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "November" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "December" +msgstr "" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:45 +msgid "Log out" +msgstr "" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" + +#: templates/login.php:41 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password.
For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po new file mode 100644 index 00000000000..9b718fe76c4 --- /dev/null +++ b/l10n/bn_BD/files.po @@ -0,0 +1,266 @@ +# 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-01-02 00:04+0100\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/upload.php:20 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:23 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:25 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:26 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:27 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:28 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:10 +msgid "Files" +msgstr "" + +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:181 +msgid "Rename" +msgstr "" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "replace" +msgstr "" + +#: js/filelist.js:199 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "cancel" +msgstr "" + +#: js/filelist.js:248 +msgid "replaced {new_name}" +msgstr "" + +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +msgid "undo" +msgstr "" + +#: js/filelist.js:250 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:282 +msgid "unshared {files}" +msgstr "" + +#: js/filelist.js:284 +msgid "deleted {files}" +msgstr "" + +#: js/files.js:33 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:174 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:212 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:212 +msgid "Upload Error" +msgstr "" + +#: js/files.js:229 +msgid "Close" +msgstr "" + +#: js/files.js:248 js/files.js:362 js/files.js:392 +msgid "Pending" +msgstr "" + +#: js/files.js:268 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:271 js/files.js:325 js/files.js:340 +msgid "{count} files uploading" +msgstr "" + +#: js/files.js:343 js/files.js:376 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:445 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:515 +msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +msgstr "" + +#: js/files.js:699 +msgid "{count} files scanned" +msgstr "" + +#: js/files.js:707 +msgid "error while scanning" +msgstr "" + +#: js/files.js:780 templates/index.php:66 +msgid "Name" +msgstr "" + +#: js/files.js:781 templates/index.php:77 +msgid "Size" +msgstr "" + +#: js/files.js:782 templates/index.php:79 +msgid "Modified" +msgstr "" + +#: js/files.js:801 +msgid "1 folder" +msgstr "" + +#: js/files.js:803 +msgid "{count} folders" +msgstr "" + +#: js/files.js:811 +msgid "1 file" +msgstr "" + +#: js/files.js:813 +msgid "{count} files" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:9 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:12 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:14 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:17 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:19 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:23 +msgid "Save" +msgstr "" + +#: 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:35 +msgid "Upload" +msgstr "" + +#: templates/index.php:43 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:58 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:72 +msgid "Download" +msgstr "" + +#: templates/index.php:104 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:106 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:111 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:114 +msgid "Current scanning" +msgstr "" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po new file mode 100644 index 00000000000..da32933e271 --- /dev/null +++ b/l10n/bn_BD/files_encryption.po @@ -0,0 +1,34 @@ +# 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-01-02 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "" + +#: templates/settings.php:7 +msgid "None" +msgstr "" + +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" +msgstr "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po new file mode 100644 index 00000000000..6b3eb164280 --- /dev/null +++ b/l10n/bn_BD/files_external.po @@ -0,0 +1,120 @@ +# 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-01-02 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:434 +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:435 +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 "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:22 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:9 +msgid "Backend" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:27 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:85 +msgid "None set" +msgstr "" + +#: templates/settings.php:86 +msgid "All Users" +msgstr "" + +#: templates/settings.php:87 +msgid "Groups" +msgstr "" + +#: templates/settings.php:95 +msgid "Users" +msgstr "" + +#: templates/settings.php:108 templates/settings.php:109 +#: templates/settings.php:144 templates/settings.php:145 +msgid "Delete" +msgstr "" + +#: templates/settings.php:124 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:125 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:136 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:153 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po new file mode 100644 index 00000000000..28824778601 --- /dev/null +++ b/l10n/bn_BD/files_sharing.po @@ -0,0 +1,48 @@ +# 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-01-02 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:19 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:22 templates/public.php:38 +msgid "Download" +msgstr "" + +#: templates/public.php:37 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:43 +msgid "web services under your control" +msgstr "" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po new file mode 100644 index 00000000000..83da5456a7b --- /dev/null +++ b/l10n/bn_BD/files_versions.po @@ -0,0 +1,42 @@ +# 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-01-02 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/settings-personal.js:31 templates/settings-personal.php:7 +msgid "Expire all versions" +msgstr "" + +#: js/versions.js:16 +msgid "History" +msgstr "" + +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:10 +msgid "This will delete all existing backup versions of your files" +msgstr "" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po new file mode 100644 index 00000000000..7305e997402 --- /dev/null +++ b/l10n/bn_BD/lib.po @@ -0,0 +1,152 @@ +# 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-01-02 00:04+0100\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:287 +msgid "Help" +msgstr "" + +#: app.php:294 +msgid "Personal" +msgstr "" + +#: app.php:299 +msgid "Settings" +msgstr "" + +#: app.php:304 +msgid "Users" +msgstr "" + +#: app.php:311 +msgid "Apps" +msgstr "" + +#: app.php:313 +msgid "Admin" +msgstr "" + +#: files.php:365 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:366 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:366 files.php:391 +msgid "Back to Files" +msgstr "" + +#: files.php:390 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:64 json.php:77 json.php:89 +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 "" + +#: template.php:103 +msgid "seconds ago" +msgstr "" + +#: template.php:104 +msgid "1 minute ago" +msgstr "" + +#: template.php:105 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:106 +msgid "1 hour ago" +msgstr "" + +#: template.php:107 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:108 +msgid "today" +msgstr "" + +#: template.php:109 +msgid "yesterday" +msgstr "" + +#: template.php:110 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:111 +msgid "last month" +msgstr "" + +#: template.php:112 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:113 +msgid "last year" +msgstr "" + +#: template.php:114 +msgid "years ago" +msgstr "" + +#: updater.php:75 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:77 +msgid "up to date" +msgstr "" + +#: updater.php:80 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po new file mode 100644 index 00000000000..414c11fbd01 --- /dev/null +++ b/l10n/bn_BD/settings.po @@ -0,0 +1,271 @@ +# 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-01-02 00:04+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:12 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/openid.php:13 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:28 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:34 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: js/apps.js:28 js/apps.js:67 +msgid "Disable" +msgstr "" + +#: js/apps.js:28 js/apps.js:55 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:42 personal.php:43 +msgid "__language_name__" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:31 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:32 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:7 +msgid "Forum" +msgstr "" + +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:12 +msgid "Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 +msgid "Password" +msgstr "" + +#: templates/personal.php:22 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:23 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:24 +msgid "Current password" +msgstr "" + +#: templates/personal.php:25 +msgid "New password" +msgstr "" + +#: templates/personal.php:26 +msgid "show" +msgstr "" + +#: templates/personal.php:27 +msgid "Change password" +msgstr "" + +#: templates/personal.php:33 +msgid "Email" +msgstr "" + +#: templates/personal.php:34 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:35 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:41 templates/personal.php:42 +msgid "Language" +msgstr "" + +#: templates/personal.php:47 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" + +#: templates/personal.php:65 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/users.php:21 templates/users.php:81 +msgid "Name" +msgstr "" + +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 +msgid "Other" +msgstr "" + +#: templates/users.php:85 templates/users.php:117 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" + +#: templates/users.php:161 +msgid "Delete" +msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po new file mode 100644 index 00000000000..75066d45b13 --- /dev/null +++ b/l10n/bn_BD/user_ldap.po @@ -0,0 +1,183 @@ +# 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-01-02 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:8 +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:11 +msgid "" +"Warning: The PHP LDAP module needs is not installed, the backend will" +" not work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Host" +msgstr "" + +#: templates/settings.php:15 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:16 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:16 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:17 +msgid "User DN" +msgstr "" + +#: templates/settings.php:17 +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:18 +msgid "Password" +msgstr "" + +#: templates/settings.php:18 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:19 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:19 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:19 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:20 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:20 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:20 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:21 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:21 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:21 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:24 +msgid "Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:26 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:27 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:28 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:28 +msgid "Do not use it for SSL connections, it will fail." +msgstr "" + +#: templates/settings.php:29 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:30 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:30 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:30 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:31 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:31 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:32 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:34 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:36 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:37 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:39 +msgid "Help" +msgstr "" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po new file mode 100644 index 00000000000..3aa6ccffca6 --- /dev/null +++ b/l10n/bn_BD/user_webdavauth.po @@ -0,0 +1,29 @@ +# 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-01-02 00:04+0100\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index e10cc61469b..1b42ec608f7 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -5,15 +5,15 @@ # Translators: # <>, 2012. # , 2012. -# Peter Peroša , 2012. +# Peter Peroša , 2012-2013. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"PO-Revision-Date: 2013-01-01 14:26+0000\n" +"Last-Translator: Peter Peroša \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" @@ -121,27 +121,27 @@ msgstr "-z dovoljenjem s strani , 2012. +# Peter Peroša , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"PO-Revision-Date: 2013-01-01 14:17+0000\n" +"Last-Translator: Peter Peroša \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" @@ -20,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud bo poslal uporabniška poverila temu URL naslovu. Pri tem bo interpretiral http 401 in http 403 odgovor kot spodletelo avtentikacijo ter vse ostale http odgovore kot uspešne." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 0567b13a379..cef594b830d 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\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 1d626ded072..79fd8f71c43 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\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 3701b3c74b5..46f22de7109 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\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 9e76df73ac2..ec95612f537 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\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 c3e62b78024..6c6ad0096eb 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\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 e6fd3867fce..659868c67a0 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\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 08e958471c8..700a7cf8518 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\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 421ddba058c..51c00a79705 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\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 947c9737100..257fcae7736 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\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 2fe02cb5c3b..6a401044dae 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index ce12b4e3e22..88dc1dddba9 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -23,8 +23,17 @@ "Select an App" => "Izberite program", "See application page at apps.owncloud.com" => "Obiščite spletno stran programa na apps.owncloud.com", "-licensed by " => "-z dovoljenjem s strani ", +"User Documentation" => "Uporabniška dokumentacija", +"Administrator Documentation" => "Administratorjeva dokumentacija", +"Online Documentation" => "Spletna dokumentacija", +"Forum" => "Forum", +"Bugtracker" => "Sistem za sledenje napakam", +"Commercial Support" => "Komercialna podpora", "You have used %s of the available %s" => "Uporabljate %s od razpoložljivih %s", "Clients" => "Stranka", +"Download Desktop Clients" => "Prenesi namizne odjemalce", +"Download Android Client" => "Prenesi Android odjemalec", +"Download iOS Client" => "Prenesi iOS odjemalec", "Password" => "Geslo", "Your password was changed" => "Vaše geslo je spremenjeno", "Unable to change your password" => "Gesla ni mogoče spremeniti.", @@ -37,11 +46,18 @@ "Fill in an email address to enable password recovery" => "Vpišite vaš elektronski naslov in s tem omogočite obnovitev gesla", "Language" => "Jezik", "Help translate" => "Pomagajte pri prevajanju", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Uporabite ta naslov za povezavo do ownCloud v vašem upravljalniku datotek.", +"Version" => "Različica", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Programski paket razvija skupnost ownCloud. Izvorna koda je objavljena pod pogoji dovoljenja AGPL.", "Name" => "Ime", "Groups" => "Skupine", "Create" => "Ustvari", +"Default Storage" => "Privzeta shramba", +"Unlimited" => "Neomejeno", "Other" => "Drugo", "Group Admin" => "Skrbnik skupine", +"Storage" => "Shramba", +"Default" => "Privzeto", "Delete" => "Izbriši" ); -- cgit v1.2.3 From 8148c187a32e4952e150dffefecab39f1c5b323e Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Tue, 18 Dec 2012 16:10:48 +0100 Subject: whitespace cleanup --- apps/files/js/files.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'apps') diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 6a37d9e7f53..2ce1723f0b4 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -234,12 +234,12 @@ $(document).ready(function() { } }); }else{ - var dropTarget = $(e.originalEvent.target).closest('tr'); - if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder - var dirName = dropTarget.attr('data-file') - } + var dropTarget = $(e.originalEvent.target).closest('tr'); + if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder + var dirName = dropTarget.attr('data-file') + } - var date=new Date(); + var date=new Date(); if(files){ for(var i=0;i0){ @@ -292,9 +292,9 @@ $(document).ready(function() { var jqXHR = $('#file_upload_start').fileupload('send', {files: files[i], formData: function(form) { var formArray = form.serializeArray(); - // array index 0 contains the max files size - // array index 1 contains the request token - // array index 2 contains the directory + // array index 0 contains the max files size + // array index 1 contains the request token + // array index 2 contains the directory formArray[2]['value'] = dirName; return formArray; }}).success(function(result, textStatus, jqXHR) { @@ -305,13 +305,13 @@ $(document).ready(function() { $('#notification').fadeIn(); } var file=response[0]; - // TODO: this doesn't work if the file name has been changed server side + // TODO: this doesn't work if the file name has been changed server side delete uploadingFiles[dirName][file.name]; - if ($.assocArraySize(uploadingFiles[dirName]) == 0) { - delete uploadingFiles[dirName]; - } + if ($.assocArraySize(uploadingFiles[dirName]) == 0) { + delete uploadingFiles[dirName]; + } - var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext') + var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext') var currentUploads = parseInt(uploadtext.attr('currentUploads')); currentUploads -= 1; uploadtext.attr('currentUploads', currentUploads); @@ -434,7 +434,7 @@ $(document).ready(function() { // http://stackoverflow.com/a/6700/11236 var size = 0, key; for (key in obj) { - if (obj.hasOwnProperty(key)) size++; + if (obj.hasOwnProperty(key)) size++; } return size; }; -- cgit v1.2.3 From 32c2b0d50eac5669f64bdbf9256939d1ad046304 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Tue, 18 Dec 2012 16:36:26 +0100 Subject: enable enter in ie by using .submit()+form instead of .change(), use notifications when name is empty --- apps/files/js/files.js | 37 +++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) (limited to 'apps') diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 2ce1723f0b4..6d1be45cddc 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -496,7 +496,7 @@ $(document).ready(function() { $('#new li').each(function(i,element){ if($(element).children('p').length==0){ - $(element).children('input').remove(); + $(element).children('form').remove(); $(element).append('

'+$(element).data('text')+'

'); } }); @@ -506,22 +506,35 @@ $(document).ready(function() { $(this).data('text',text); $(this).children('p').remove(); var input=$(''); - $(this).append(input); + var form=$('
'); + form.append(input); + $(this).append(form); input.focus(); - input.change(function(){ - if (type != 'web' && Files.containsInvalidCharacters($(this).val())) { - return; - } else if( type == 'folder' && $('#dir').val() == '/' && $(this).val() == 'Shared') { + form.submit(function(event){ + event.stopPropagation(); + event.preventDefault(); + var newname=input.val(); + if(type != 'web' && Files.containsInvalidCharacters(newname)){ + return false; + } else if (newname.length == 0) { + if(type == 'web') { + $('#notification').text(t('files', "URL cannot be empty.")); + } else { + $('#notification').text(t('files', "Name cannot be empty.")); + } + $('#notification').fadeIn(); + return false; + } else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') { $('#notification').text(t('files','Invalid folder name. Usage of "Shared" is reserved by Owncloud')); $('#notification').fadeIn(); - return; + return false; } if (FileList.lastAction) { FileList.lastAction(); } - var name = getUniqueName($(this).val()); - if (name != $(this).val()) { - FileList.checkName(name, $(this).val(), true); + var name = getUniqueName(newname); + if (newname != name) { + FileList.checkName(name, newname, true); var hidden = true; } else { var hidden = false; @@ -604,8 +617,8 @@ $(document).ready(function() { }); break; } - var li=$(this).parent(); - $(this).remove(); + var li=form.parent(); + form.remove(); li.append('

'+li.data('text')+'

'); $('#new>a').click(); }); -- cgit v1.2.3 From 740b6623aad0b69e7f16348ad3d4a098a0a9e598 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Tue, 18 Dec 2012 16:37:27 +0100 Subject: show notification when renaming a file to '' --- apps/files/js/filelist.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps') diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 96dd0323d29..cf86cc60979 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -151,6 +151,10 @@ var FileList={ var newname=input.val(); if (Files.containsInvalidCharacters(newname)) { return false; + } else if (newname.length == 0) { + $('#notification').text(t('files', "Name cannot be empty.")); + $('#notification').fadeIn(); + return false; } if (newname != name) { if (FileList.checkName(name, newname, false)) { -- cgit v1.2.3 From a6733ff012b2d6c41c6d551ad1353856f9dfa14b Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Tue, 18 Dec 2012 16:39:01 +0100 Subject: abort rename on ESC keyup --- apps/files/js/filelist.js | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'apps') diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index cf86cc60979..1fbfc24e1e4 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -189,6 +189,13 @@ var FileList={ td.children('a.name').show(); return false; }); + input.keyup(function(event){ + if (event.keyCode == 27) { + tr.data('renaming',false); + form.remove(); + td.children('a.name').show(); + } + }); input.click(function(event){ event.stopPropagation(); event.preventDefault(); -- cgit v1.2.3 From 03b8a065cf37c040452b567a2a9050f637cbda94 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Wed, 2 Jan 2013 17:02:55 +0100 Subject: input/form switching cleanup --- apps/files/css/files.css | 2 +- apps/files/js/files.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'apps') diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 99c39f0acdb..f292c5c8c3f 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -21,7 +21,7 @@ #new>ul>li { height:20px; margin:.3em; padding-left:2em; padding-bottom:0.1em; background-repeat:no-repeat; cursor:pointer; } #new>ul>li>p { cursor:pointer; } -#new>ul>li>input { padding:0.3em; margin:-0.3em; } +#new>ul>li>form>input { padding:0.3em; margin:-0.3em; } #upload { height:27px; padding:0; margin-left:0.2em; overflow:hidden; diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 6d1be45cddc..c795469e2d5 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -477,7 +477,7 @@ $(document).ready(function() { $('#new').removeClass('active'); $('#new li').each(function(i,element){ if($(element).children('p').length==0){ - $(element).children('input').remove(); + $(element).children('form').remove(); $(element).append('

'+$(element).data('text')+'

'); } }); @@ -505,8 +505,8 @@ $(document).ready(function() { var text=$(this).children('p').text(); $(this).data('text',text); $(this).children('p').remove(); - var input=$(''); var form=$('
'); + var input=$(''); form.append(input); $(this).append(form); input.focus(); -- cgit v1.2.3 From 0405edc7984c01b5ef4d6cb4ff5154e8bd4dca11 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Wed, 2 Jan 2013 21:00:50 +0100 Subject: add translation call for 'Not enough space available' upload error --- apps/files/ajax/upload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index e7823bc4ffb..0909a3f0776 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -41,7 +41,7 @@ foreach($files['size'] as $size) { $totalSize+=$size; } if($totalSize>OC_Filesystem::free_space($dir)) { - OCP\JSON::error(array('data' => array( 'message' => 'Not enough space available' ))); + OCP\JSON::error(array('data' => array( 'message' => $l->t( 'Not enough space available' )))); exit(); } -- cgit v1.2.3 From 3ea9432d43c8a53934ff01c861bde35d22235760 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 2 Jan 2013 22:15:43 +0100 Subject: fixing undefined variable $l --- apps/files/ajax/upload.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 0909a3f0776..8513736835f 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -13,9 +13,11 @@ if (!isset($_FILES['files'])) { OCP\JSON::error(array('data' => array( 'message' => 'No file was uploaded. Unknown error' ))); exit(); } + +$l=OC_L10N::get('files'); + foreach ($_FILES['files']['error'] as $error) { if ($error != 0) { - $l=OC_L10N::get('files'); $errors = array( UPLOAD_ERR_OK=>$l->t('There is no error, the file uploaded with success'), UPLOAD_ERR_INI_SIZE=>$l->t('The uploaded file exceeds the upload_max_filesize directive in php.ini: ') -- cgit v1.2.3 From 3bcdd8c90056d4143b0f2e6794aca3c5e6656557 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 3 Jan 2013 00:05:19 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/bn_BD.php | 46 +++ apps/files_external/l10n/bn_BD.php | 6 + apps/files_sharing/l10n/bn_BD.php | 6 + apps/files_versions/l10n/bn_BD.php | 3 + apps/user_ldap/l10n/bn_BD.php | 4 + core/l10n/bn_BD.php | 121 ++++++++ l10n/bn_BD/core.po | 245 +++++++-------- l10n/bn_BD/files.po | 107 +++---- l10n/bn_BD/files_external.po | 10 +- l10n/bn_BD/files_sharing.po | 10 +- l10n/bn_BD/files_versions.po | 4 +- l10n/bn_BD/lib.po | 34 +-- l10n/bn_BD/settings.po | 95 +++--- l10n/bn_BD/user_ldap.po | 6 +- l10n/da/settings.po | 16 +- l10n/hu/core.po | 579 ++++++++++++++++++++++++++++++++++++ l10n/hu/files.po | 266 +++++++++++++++++ l10n/hu/files_encryption.po | 34 +++ l10n/hu/files_external.po | 120 ++++++++ l10n/hu/files_sharing.po | 48 +++ l10n/hu/files_versions.po | 42 +++ l10n/hu/lib.po | 152 ++++++++++ l10n/hu/settings.po | 271 +++++++++++++++++ l10n/hu/user_ldap.po | 183 ++++++++++++ l10n/hu/user_webdavauth.po | 29 ++ l10n/pt_PT/settings.po | 16 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 14 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/bn_BD.php | 18 ++ settings/l10n/bn_BD.php | 46 +++ settings/l10n/da.php | 4 + settings/l10n/pt_PT.php | 4 + 40 files changed, 2271 insertions(+), 286 deletions(-) create mode 100644 apps/files/l10n/bn_BD.php create mode 100644 apps/files_external/l10n/bn_BD.php create mode 100644 apps/files_sharing/l10n/bn_BD.php create mode 100644 apps/files_versions/l10n/bn_BD.php create mode 100644 apps/user_ldap/l10n/bn_BD.php create mode 100644 core/l10n/bn_BD.php create mode 100644 l10n/hu/core.po create mode 100644 l10n/hu/files.po create mode 100644 l10n/hu/files_encryption.po create mode 100644 l10n/hu/files_external.po create mode 100644 l10n/hu/files_sharing.po create mode 100644 l10n/hu/files_versions.po create mode 100644 l10n/hu/lib.po create mode 100644 l10n/hu/settings.po create mode 100644 l10n/hu/user_ldap.po create mode 100644 l10n/hu/user_webdavauth.po create mode 100644 lib/l10n/bn_BD.php create mode 100644 settings/l10n/bn_BD.php (limited to 'apps') diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php new file mode 100644 index 00000000000..45cf1c2313d --- /dev/null +++ b/apps/files/l10n/bn_BD.php @@ -0,0 +1,46 @@ + "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে", +"The uploaded file was only partially uploaded" => "আপলোড করা ফাইলটি আংশিক আপলোড হয়েছে", +"No file was uploaded" => "কোন ফাইল আপলোড করা হয় নি", +"Missing a temporary folder" => "অস্থায়ী ফোল্ডারটি খোয়া গিয়েছে ", +"Failed to write to disk" => "ডিস্কে লিখতে পারা গেল না", +"Files" => "ফাইল", +"Unshare" => "ভাগাভাগি বাতিল", +"Delete" => "মুছে ফেল", +"Rename" => "পূনঃনামকরণ", +"{new_name} already exists" => "{new_name} টি বিদ্যমান", +"replace" => "প্রতিস্থাপন", +"suggest name" => "নাম সুপারিশ কর", +"cancel" => "বাতিল", +"replaced {new_name}" => "{new_name} প্রতিস্থাপন করা হয়েছে", +"undo" => "ক্রিয়া প্রত্যাহার", +"replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে", +"unshared {files}" => "{files} ভাগাভাগি বাতিল কর", +"deleted {files}" => "{files} মুছে ফেলা হয়েছে", +"Upload Error" => "আপলোড করতে সমস্যা", +"Pending" => "মুলতুবি", +"1 file uploading" => "১ টি ফাইল আপলোড করা হচ্ছে", +"Upload cancelled." => "আপলোড বাতিল করা হয়েছে ।", +"error while scanning" => "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে", +"Name" => "নাম", +"Size" => "আকার", +"Modified" => "পরিবর্তিত", +"File handling" => "ফাইল হ্যান্ডলিং", +"Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", +"max. possible: " => "সম্ভাব্য সর্বোচ্চঃ", +"Needed for multi-file and folder downloads." => "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার ক্ষেত্রে আবশ্যক।", +"Enable ZIP-download" => "জিপ ডাউনলোড সক্রিয় কর", +"0 is unlimited" => "০ এর অর্থ হলো অসীম", +"Maximum input size for ZIP files" => "জিপ ফাইলের জন্য সর্বোচ্চ ইনপুট", +"Save" => "সংরক্ষণ কর", +"New" => "নতুন", +"Text file" => "টেক্সট ফাইল", +"Folder" => "ফোল্ডার", +"Upload" => "আপলোড", +"Cancel upload" => "আপলোড বাতিল কর", +"Nothing in here. Upload something!" => "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !", +"Download" => "ডাউনলোড", +"Upload too large" => "আপলোডের আকার অনেক বড়", +"Files are being scanned, please wait." => "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।", +"Current scanning" => "বর্তমান স্ক্যানিং" +); diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php new file mode 100644 index 00000000000..ad983b52e43 --- /dev/null +++ b/apps/files_external/l10n/bn_BD.php @@ -0,0 +1,6 @@ + "প্রশাসক", +"Groups" => "গোষ্ঠী", +"Users" => "ব্যবহারকারিবৃন্দ", +"Delete" => "মুছে ফেল" +); diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php new file mode 100644 index 00000000000..785dfcd2f1d --- /dev/null +++ b/apps/files_sharing/l10n/bn_BD.php @@ -0,0 +1,6 @@ + "কূটশব্দ", +"Submit" => "পাঠাও", +"Download" => "ডাউনলোড", +"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়" +); diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php new file mode 100644 index 00000000000..d44ea131313 --- /dev/null +++ b/apps/files_versions/l10n/bn_BD.php @@ -0,0 +1,3 @@ + "সক্রিয়" +); diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php new file mode 100644 index 00000000000..eca40c171f8 --- /dev/null +++ b/apps/user_ldap/l10n/bn_BD.php @@ -0,0 +1,4 @@ + "কূটশব্দ", +"Help" => "সহায়িকা" +); diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php new file mode 100644 index 00000000000..a3350761386 --- /dev/null +++ b/core/l10n/bn_BD.php @@ -0,0 +1,121 @@ + "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন", +"User %s shared a folder with you" => "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন", +"Category type not provided." => "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।", +"No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?", +"This category already exists: " => "এই ক্যাটেগরিটি বিদ্যমানঃ", +"Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।", +"Error adding %s to favorites." => "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।", +"No categories selected for deletion." => "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি।", +"Error removing %s from favorites." => "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।", +"Settings" => "নিয়ামকসমূহ", +"seconds ago" => "সেকেন্ড পূর্বে", +"1 minute ago" => "1 মিনিট পূর্বে", +"{minutes} minutes ago" => "{minutes} মিনিট পূর্বে", +"1 hour ago" => "1 ঘন্টা পূর্বে", +"{hours} hours ago" => "{hours} ঘন্টা পূর্বে", +"today" => "আজ", +"yesterday" => "গতকাল", +"{days} days ago" => "{days} দিন পূর্বে", +"last month" => "গতমাস", +"{months} months ago" => "{months} মাস পূর্বে", +"months ago" => "মাস পূর্বে", +"last year" => "গত বছর", +"years ago" => "বছর পূর্বে", +"Choose" => "নির্বাচন", +"Cancel" => "বাতিল", +"No" => "না", +"Yes" => "হ্যাঁ", +"Ok" => "তথাস্তু", +"The object type is not specified." => "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।", +"Error" => "সমস্যা", +"The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।", +"The required file {file} is not installed!" => "আবশ্যিক {file} টি সংস্থাপিত নেই !", +"Error while sharing" => "ভাগাভাগি করার সময় সমস্যা দেখা দিয়েছে", +"Error while unsharing" => "ভাগাভাগি বাতিল করার সময় সমস্যা দেখা দিয়েছে", +"Error while changing permissions" => "অনুমতি পরিবর্তন করার সময় সমস্যা দেখা দিয়েছে", +"Share with" => "যাদের সাথে ভাগাভাগি করবে", +"Share with link" => "লিংক সহযোগে ভাগাভাগি", +"Password protect" => "কূটশব্দদ্বারা সুরক্ষিত", +"Password" => "কূটশব্দ", +"Email link to person" => "ব্যক্তির সাথে ই-মেইল যুক্ত কর", +"Send" => "পাঠাও", +"Set expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন", +"Expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ", +"Share via email:" => "ই-মেইলের মাধ্যমে ভাগাভাগি করঃ", +"No people found" => "কোন ব্যক্তি খুঁজে পাওয়া গেল না", +"Resharing is not allowed" => "পূনরায় ভাগাভাগি করার অনুমতি নেই", +"Unshare" => "ভাগাভাগি বাতিল", +"can edit" => "সম্পাদনা করতে পারবে", +"access control" => "অধিগম্যতার নিয়ন্ত্রণ", +"create" => "তৈরি কর", +"update" => "পরিবর্ধন কর", +"delete" => "মুছে ফেল", +"share" => "ভাগাভাগি কর", +"Password protected" => "কূটশব্দদ্বারা সুরক্ষিত", +"Error unsetting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা", +"Error setting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা", +"Sending ..." => "পাঠানো হচ্ছে......", +"Email sent" => "ই-মেইল পাঠানো হয়েছে", +"ownCloud password reset" => "ownCloud কূটশব্দ পূনঃনির্ধারণ", +"Use the following link to reset your password: {link}" => "কূটশব্দ পূনঃনির্ধারণ করতে নিম্নোক্ত লিংকে ক্লিক করুন:{link}", +"You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি লিংক ই-মেইলের মাধ্যমে পাঠানো হয়েছে।", +"Reset email send." => "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।", +"Request failed!" => "অনুরোধ ব্যর্থ !", +"Username" => "ব্যবহারকারি", +"Request reset" => "পূনঃনির্ধারণের জন্য অনুরোধ", +"Your password was reset" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে", +"To login page" => "প্রবেশ পাতায়", +"New password" => "নতুন কূটশব্দ", +"Reset password" => "কূটশব্দ পূনঃনির্ধারণ", +"Personal" => "ব্যক্তিগত", +"Users" => "ব্যবহারকারিবৃন্দ", +"Apps" => "অ্যাপস", +"Admin" => "প্রশাসক", +"Help" => "সহায়িকা", +"Access forbidden" => "অধিগমনের অনুমতি নেই", +"Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না", +"Edit categories" => "ক্যাটেগরি সম্পাদনা", +"Add" => "যোগ কর", +"Security Warning" => "নিরাপত্তাজনিত সতর্কতা", +"Create an admin account" => "প্রশাসক একাউন্ট তৈরি কর", +"Advanced" => "সুচারু", +"Data folder" => "ডাটা ফোল্ডার", +"Configure the database" => "ডাটাবেজ কনফিগার কর", +"will be used" => "ব্যবহৃত হবে", +"Database user" => "ডাটাবেজ ব্যবহারকারি", +"Database password" => "ডাটাবেজ কূটশব্দ", +"Database name" => "ডাটাবেজের নাম", +"Database tablespace" => "ডাটাবেজ টেবিলস্পেস", +"Database host" => "ডাটাবেজ হোস্ট", +"Finish setup" => "সেট-আপ সুসম্পন্ন কর", +"Sunday" => "রবিবার", +"Monday" => "সোমবার", +"Tuesday" => "মঙ্গলবার", +"Wednesday" => "বুধবার", +"Thursday" => "বৃহষ্পতিবার", +"Friday" => "শুক্রবার", +"Saturday" => "শনিবার", +"January" => "জানুয়ারি", +"February" => "ফেব্রুয়ারি", +"March" => "মার্চ", +"April" => "এপ্রিল", +"May" => "মে", +"June" => "জুন", +"July" => "জুলাই", +"August" => "অগাস্ট", +"September" => "সেপ্টেম্বর", +"October" => "অক্টোবর", +"November" => "নভেম্বর", +"December" => "ডিসেম্বর", +"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়", +"Log out" => "প্রস্থান", +"Lost your password?" => "আপনার কূটশব্দটি হারিয়েছেন ?", +"remember" => "মনে রাখ", +"Log in" => "প্রবেশ", +"You are logged out." => "আপনি প্রস্থান করেছেন", +"prev" => "পূর্ববর্তী", +"next" => "পরবর্তী", +"Security Warning!" => "নিরাপত্তাবিষয়ক সতর্কবাণী", +"Verify" => "যাচাই কর" +); diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 6d8b387d60c..76af85b64d8 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Shubhra Paul , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2013-01-02 09:32+0000\n" +"Last-Translator: Shubhra Paul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,12 +21,12 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন" #: ajax/share.php:88 #, php-format @@ -43,21 +44,21 @@ msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "" +msgstr "যোগ করার মত কোন ক্যাটেগরি নেই ?" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "" +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 "" +msgstr "অবজেক্টের ধরণটি প্রদান করা হয় নি।" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 @@ -68,123 +69,123 @@ msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "" +msgstr "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি।" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।" #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" -msgstr "" +msgstr "নিয়ামকসমূহ" #: js/js.js:704 msgid "seconds ago" -msgstr "" +msgstr "সেকেন্ড পূর্বে" #: js/js.js:705 msgid "1 minute ago" -msgstr "" +msgstr "1 মিনিট পূর্বে" #: js/js.js:706 msgid "{minutes} minutes ago" -msgstr "" +msgstr "{minutes} মিনিট পূর্বে" #: js/js.js:707 msgid "1 hour ago" -msgstr "" +msgstr "1 ঘন্টা পূর্বে" #: js/js.js:708 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} ঘন্টা পূর্বে" #: js/js.js:709 msgid "today" -msgstr "" +msgstr "আজ" #: js/js.js:710 msgid "yesterday" -msgstr "" +msgstr "গতকাল" #: js/js.js:711 msgid "{days} days ago" -msgstr "" +msgstr "{days} দিন পূর্বে" #: js/js.js:712 msgid "last month" -msgstr "" +msgstr "গতমাস" #: js/js.js:713 msgid "{months} months ago" -msgstr "" +msgstr "{months} মাস পূর্বে" #: js/js.js:714 msgid "months ago" -msgstr "" +msgstr "মাস পূর্বে" #: js/js.js:715 msgid "last year" -msgstr "" +msgstr "গত বছর" #: js/js.js:716 msgid "years ago" -msgstr "" +msgstr "বছর পূর্বে" #: js/oc-dialogs.js:126 msgid "Choose" -msgstr "" +msgstr "নির্বাচন" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" -msgstr "" +msgstr "বাতিল" #: js/oc-dialogs.js:162 msgid "No" -msgstr "" +msgstr "না" #: js/oc-dialogs.js:163 msgid "Yes" -msgstr "" +msgstr "হ্যাঁ" #: js/oc-dialogs.js:180 msgid "Ok" -msgstr "" +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 "" +msgstr "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 #: js/share.js:566 msgid "Error" -msgstr "" +msgstr "সমস্যা" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "অ্যাপের নামটি সুনির্দিষ্ট নয়।" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "আবশ্যিক {file} টি সংস্থাপিত নেই !" #: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "" +msgstr "ভাগাভাগি করার সময় সমস্যা দেখা দিয়েছে" #: js/share.js:135 msgid "Error while unsharing" -msgstr "" +msgstr "ভাগাভাগি বাতিল করার সময় সমস্যা দেখা দিয়েছে" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "অনুমতি পরিবর্তন করার সময় সমস্যা দেখা দিয়েছে" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" @@ -196,48 +197,48 @@ msgstr "" #: js/share.js:158 msgid "Share with" -msgstr "" +msgstr "যাদের সাথে ভাগাভাগি করবে" #: js/share.js:163 msgid "Share with link" -msgstr "" +msgstr "লিংক সহযোগে ভাগাভাগি" #: js/share.js:166 msgid "Password protect" -msgstr "" +msgstr "কূটশব্দদ্বারা সুরক্ষিত" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" -msgstr "" +msgstr "কূটশব্দ" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "পাঠাও" #: js/share.js:177 msgid "Set expiration date" -msgstr "" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন" #: js/share.js:178 msgid "Expiration date" -msgstr "" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" #: js/share.js:210 msgid "Share via email:" -msgstr "" +msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করঃ" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "পূনরায় ভাগাভাগি করার অনুমতি নেই" #: js/share.js:275 msgid "Shared in {item} with {user}" @@ -245,136 +246,136 @@ msgstr "" #: js/share.js:296 msgid "Unshare" -msgstr "" +msgstr "ভাগাভাগি বাতিল" #: js/share.js:308 msgid "can edit" -msgstr "" +msgstr "সম্পাদনা করতে পারবে" #: js/share.js:310 msgid "access control" -msgstr "" +msgstr "অধিগম্যতার নিয়ন্ত্রণ" #: js/share.js:313 msgid "create" -msgstr "" +msgstr "তৈরি কর" #: js/share.js:316 msgid "update" -msgstr "" +msgstr "পরিবর্ধন কর" #: js/share.js:319 msgid "delete" -msgstr "" +msgstr "মুছে ফেল" #: js/share.js:322 msgid "share" -msgstr "" +msgstr "ভাগাভাগি কর" #: js/share.js:356 js/share.js:541 msgid "Password protected" -msgstr "" +msgstr "কূটশব্দদ্বারা সুরক্ষিত" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা" #: js/share.js:566 msgid "Error setting expiration date" -msgstr "" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা" #: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "পাঠানো হচ্ছে......" #: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "ই-মেইল পাঠানো হয়েছে" #: lostpassword/controller.php:47 msgid "ownCloud password reset" -msgstr "" +msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "কূটশব্দ পূনঃনির্ধারণ করতে নিম্নোক্ত লিংকে ক্লিক করুন:{link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "" +msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি লিংক ই-মেইলের মাধ্যমে পাঠানো হয়েছে।" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "অনুরোধ ব্যর্থ !" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 #: templates/login.php:28 msgid "Username" -msgstr "" +msgstr "ব্যবহারকারি" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "" +msgstr "পূনঃনির্ধারণের জন্য অনুরোধ" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "প্রবেশ পাতায়" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "নতুন কূটশব্দ" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "কূটশব্দ পূনঃনির্ধারণ" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "ব্যক্তিগত" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "ব্যবহারকারিবৃন্দ" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "অ্যাপস" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "প্রশাসক" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "সহায়িকা" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "অধিগমনের অনুমতি নেই" #: templates/404.php:12 msgid "Cloud not found" -msgstr "" +msgstr "ক্লাউড খুঁজে পাওয়া গেল না" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "" +msgstr "ক্যাটেগরি সম্পাদনা" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "" +msgstr "যোগ কর" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "নিরাপত্তাজনিত সতর্কতা" #: templates/installation.php:24 msgid "" @@ -399,132 +400,132 @@ msgstr "" #: templates/installation.php:36 msgid "Create an admin account" -msgstr "" +msgstr "প্রশাসক একাউন্ট তৈরি কর" #: templates/installation.php:50 msgid "Advanced" -msgstr "" +msgstr "সুচারু" #: templates/installation.php:52 msgid "Data folder" -msgstr "" +msgstr "ডাটা ফোল্ডার" #: templates/installation.php:59 msgid "Configure the database" -msgstr "" +msgstr "ডাটাবেজ কনফিগার কর" #: templates/installation.php:64 templates/installation.php:75 #: templates/installation.php:85 templates/installation.php:95 msgid "will be used" -msgstr "" +msgstr "ব্যবহৃত হবে" #: templates/installation.php:107 msgid "Database user" -msgstr "" +msgstr "ডাটাবেজ ব্যবহারকারি" #: templates/installation.php:111 msgid "Database password" -msgstr "" +msgstr "ডাটাবেজ কূটশব্দ" #: templates/installation.php:115 msgid "Database name" -msgstr "" +msgstr "ডাটাবেজের নাম" #: templates/installation.php:123 msgid "Database tablespace" -msgstr "" +msgstr "ডাটাবেজ টেবিলস্পেস" #: templates/installation.php:129 msgid "Database host" -msgstr "" +msgstr "ডাটাবেজ হোস্ট" #: templates/installation.php:134 msgid "Finish setup" -msgstr "" +msgstr "সেট-আপ সুসম্পন্ন কর" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "রবিবার" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "সোমবার" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "মঙ্গলবার" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "বুধবার" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "বৃহষ্পতিবার" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "শুক্রবার" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "শনিবার" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "January" -msgstr "" +msgstr "জানুয়ারি" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "February" -msgstr "" +msgstr "ফেব্রুয়ারি" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "March" -msgstr "" +msgstr "মার্চ" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "April" -msgstr "" +msgstr "এপ্রিল" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "May" -msgstr "" +msgstr "মে" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "June" -msgstr "" +msgstr "জুন" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "July" -msgstr "" +msgstr "জুলাই" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "August" -msgstr "" +msgstr "অগাস্ট" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "September" -msgstr "" +msgstr "সেপ্টেম্বর" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "October" -msgstr "" +msgstr "অক্টোবর" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "November" -msgstr "" +msgstr "নভেম্বর" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "December" -msgstr "" +msgstr "ডিসেম্বর" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "" +msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়" #: templates/layout.user.php:45 msgid "Log out" -msgstr "" +msgstr "প্রস্থান" #: templates/login.php:10 msgid "Automatic logon rejected!" @@ -542,31 +543,31 @@ msgstr "" #: templates/login.php:19 msgid "Lost your password?" -msgstr "" +msgstr "আপনার কূটশব্দটি হারিয়েছেন ?" #: templates/login.php:39 msgid "remember" -msgstr "" +msgstr "মনে রাখ" #: templates/login.php:41 msgid "Log in" -msgstr "" +msgstr "প্রবেশ" #: templates/logout.php:1 msgid "You are logged out." -msgstr "" +msgstr "আপনি প্রস্থান করেছেন" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "" +msgstr "পূর্ববর্তী" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "" +msgstr "পরবর্তী" #: templates/verify.php:5 msgid "Security Warning!" -msgstr "" +msgstr "নিরাপত্তাবিষয়ক সতর্কবাণী" #: templates/verify.php:6 msgid "" @@ -576,4 +577,4 @@ msgstr "" #: templates/verify.php:16 msgid "Verify" -msgstr "" +msgstr "যাচাই কর" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 9b718fe76c4..8982ada4875 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Shubhra Paul , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2013-01-02 10:06+0000\n" +"Last-Translator: Shubhra Paul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে" #: ajax/upload.php:21 msgid "" @@ -34,71 +35,71 @@ msgstr "" #: ajax/upload.php:25 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "আপলোড করা ফাইলটি আংশিক আপলোড হয়েছে" #: ajax/upload.php:26 msgid "No file was uploaded" -msgstr "" +msgstr "কোন ফাইল আপলোড করা হয় নি" #: ajax/upload.php:27 msgid "Missing a temporary folder" -msgstr "" +msgstr "অস্থায়ী ফোল্ডারটি খোয়া গিয়েছে " #: ajax/upload.php:28 msgid "Failed to write to disk" -msgstr "" +msgstr "ডিস্কে লিখতে পারা গেল না" #: appinfo/app.php:10 msgid "Files" -msgstr "" +msgstr "ফাইল" #: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" -msgstr "" +msgstr "ভাগাভাগি বাতিল" #: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" -msgstr "" +msgstr "মুছে ফেল" #: js/fileactions.js:181 msgid "Rename" -msgstr "" +msgstr "পূনঃনামকরণ" #: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} টি বিদ্যমান" #: js/filelist.js:199 js/filelist.js:201 msgid "replace" -msgstr "" +msgstr "প্রতিস্থাপন" #: js/filelist.js:199 msgid "suggest name" -msgstr "" +msgstr "নাম সুপারিশ কর" #: js/filelist.js:199 js/filelist.js:201 msgid "cancel" -msgstr "" +msgstr "বাতিল" #: js/filelist.js:248 msgid "replaced {new_name}" -msgstr "" +msgstr "{new_name} প্রতিস্থাপন করা হয়েছে" #: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" -msgstr "" +msgstr "ক্রিয়া প্রত্যাহার" #: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" #: js/filelist.js:282 msgid "unshared {files}" -msgstr "" +msgstr "{files} ভাগাভাগি বাতিল কর" #: js/filelist.js:284 msgid "deleted {files}" -msgstr "" +msgstr "{files} মুছে ফেলা হয়েছে" #: js/files.js:33 msgid "" @@ -116,7 +117,7 @@ msgstr "" #: js/files.js:212 msgid "Upload Error" -msgstr "" +msgstr "আপলোড করতে সমস্যা" #: js/files.js:229 msgid "Close" @@ -124,11 +125,11 @@ msgstr "" #: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" -msgstr "" +msgstr "মুলতুবি" #: js/files.js:268 msgid "1 file uploading" -msgstr "" +msgstr "১ টি ফাইল আপলোড করা হচ্ছে" #: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" @@ -136,7 +137,7 @@ msgstr "" #: js/files.js:343 js/files.js:376 msgid "Upload cancelled." -msgstr "" +msgstr "আপলোড বাতিল করা হয়েছে ।" #: js/files.js:445 msgid "" @@ -153,19 +154,19 @@ msgstr "" #: js/files.js:707 msgid "error while scanning" -msgstr "" +msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে" #: js/files.js:780 templates/index.php:66 msgid "Name" -msgstr "" +msgstr "নাম" #: js/files.js:781 templates/index.php:77 msgid "Size" -msgstr "" +msgstr "আকার" #: js/files.js:782 templates/index.php:79 msgid "Modified" -msgstr "" +msgstr "পরিবর্তিত" #: js/files.js:801 msgid "1 folder" @@ -185,47 +186,47 @@ msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "ফাইল হ্যান্ডলিং" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "আপলোডের সর্বোচ্চ আকার" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " -msgstr "" +msgstr "সম্ভাব্য সর্বোচ্চঃ" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার ক্ষেত্রে আবশ্যক।" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "" +msgstr "জিপ ডাউনলোড সক্রিয় কর" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" -msgstr "" +msgstr "০ এর অর্থ হলো অসীম" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "জিপ ফাইলের জন্য সর্বোচ্চ ইনপুট" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "সংরক্ষণ কর" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "নতুন" #: templates/index.php:10 msgid "Text file" -msgstr "" +msgstr "টেক্সট ফাইল" #: templates/index.php:12 msgid "Folder" -msgstr "" +msgstr "ফোল্ডার" #: templates/index.php:14 msgid "From link" @@ -233,23 +234,23 @@ msgstr "" #: templates/index.php:35 msgid "Upload" -msgstr "" +msgstr "আপলোড" #: templates/index.php:43 msgid "Cancel upload" -msgstr "" +msgstr "আপলোড বাতিল কর" #: templates/index.php:58 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !" #: templates/index.php:72 msgid "Download" -msgstr "" +msgstr "ডাউনলোড" #: templates/index.php:104 msgid "Upload too large" -msgstr "" +msgstr "আপলোডের আকার অনেক বড়" #: templates/index.php:106 msgid "" @@ -259,8 +260,8 @@ msgstr "" #: templates/index.php:111 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" #: templates/index.php:114 msgid "Current scanning" -msgstr "" +msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 6b3eb164280..601f3807ce2 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" "PO-Revision-Date: 2012-08-12 22:34+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" @@ -64,7 +64,7 @@ msgstr "" #: templates/settings.php:9 msgid "Backend" -msgstr "" +msgstr "প্রশাসক" #: templates/settings.php:10 msgid "Configuration" @@ -92,16 +92,16 @@ msgstr "" #: templates/settings.php:87 msgid "Groups" -msgstr "" +msgstr "গোষ্ঠী" #: templates/settings.php:95 msgid "Users" -msgstr "" +msgstr "ব্যবহারকারিবৃন্দ" #: templates/settings.php:108 templates/settings.php:109 #: templates/settings.php:144 templates/settings.php:145 msgid "Delete" -msgstr "" +msgstr "মুছে ফেল" #: templates/settings.php:124 msgid "Enable User External Storage" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 28824778601..69c55d62484 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" "PO-Revision-Date: 2012-08-12 22:35+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" @@ -19,11 +19,11 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "কূটশব্দ" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "পাঠাও" #: templates/public.php:17 #, php-format @@ -37,7 +37,7 @@ msgstr "" #: templates/public.php:22 templates/public.php:38 msgid "Download" -msgstr "" +msgstr "ডাউনলোড" #: templates/public.php:37 msgid "No preview available for" @@ -45,4 +45,4 @@ msgstr "" #: templates/public.php:43 msgid "web services under your control" -msgstr "" +msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 83da5456a7b..9f543cad59e 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" "PO-Revision-Date: 2012-08-12 22:37+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" @@ -39,4 +39,4 @@ msgstr "" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "সক্রিয়" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 7305e997402..184ae9bb05d 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" "PO-Revision-Date: 2012-07-27 22:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" @@ -19,27 +19,27 @@ msgstr "" #: app.php:287 msgid "Help" -msgstr "" +msgstr "সহায়িকা" #: app.php:294 msgid "Personal" -msgstr "" +msgstr "ব্যক্তিগত" #: app.php:299 msgid "Settings" -msgstr "" +msgstr "নিয়ামকসমূহ" #: app.php:304 msgid "Users" -msgstr "" +msgstr "ব্যবহারকারিবৃন্দ" #: app.php:311 msgid "Apps" -msgstr "" +msgstr "অ্যাপস" #: app.php:313 msgid "Admin" -msgstr "" +msgstr "প্রশাসক" #: files.php:365 msgid "ZIP download is turned off." @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে" #: json.php:51 msgid "Token expired. Please reload page." @@ -71,7 +71,7 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "ফাইল" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" @@ -83,11 +83,11 @@ msgstr "" #: template.php:103 msgid "seconds ago" -msgstr "" +msgstr "সেকেন্ড পূর্বে" #: template.php:104 msgid "1 minute ago" -msgstr "" +msgstr "1 মিনিট পূর্বে" #: template.php:105 #, php-format @@ -96,7 +96,7 @@ msgstr "" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "1 ঘন্টা পূর্বে" #: template.php:107 #, php-format @@ -105,11 +105,11 @@ msgstr "" #: template.php:108 msgid "today" -msgstr "" +msgstr "আজ" #: template.php:109 msgid "yesterday" -msgstr "" +msgstr "গতকাল" #: template.php:110 #, php-format @@ -118,7 +118,7 @@ msgstr "" #: template.php:111 msgid "last month" -msgstr "" +msgstr "গতমাস" #: template.php:112 #, php-format @@ -127,11 +127,11 @@ msgstr "" #: template.php:113 msgid "last year" -msgstr "" +msgstr "গত বছর" #: template.php:114 msgid "years ago" -msgstr "" +msgstr "বছর পূর্বে" #: updater.php:75 #, php-format diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 414c11fbd01..de192ed72c9 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Shubhra Paul , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2013-01-02 09:43+0000\n" +"Last-Translator: Shubhra Paul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +20,51 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "" +msgstr "অ্যাপস্টোর থেকে তালিকা লোড করা সম্ভব হলো না" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "গোষ্ঠীটি বিদ্যমান" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "গোষ্ঠী যোগ করতে পারা গেল না" #: ajax/enableapp.php:12 msgid "Could not enable app. " -msgstr "" +msgstr "অ্যাপ সক্রিয় করা সম্ভব হলো না" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "ই-মেইল সংরক্ষণ করা হয়েছে" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "ই-মেইলটি সঠিক নয়" #: ajax/openid.php:13 msgid "OpenID Changed" -msgstr "" +msgstr "OpenID পরিবর্তন করা হয়েছে" #: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "অননুমোদিত অনুরোধ" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "গোষ্ঠী মুছে ফেলা সম্ভব হলো না" #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "" +msgstr "ব্যবহারকারি মুছে ফেলা সম্ভব হলো না" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "" +msgstr "ভাষা পরিবর্তন করা হয়েছে" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -81,39 +82,39 @@ msgstr "" #: js/apps.js:28 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "নিষ্ক্রিয়" #: js/apps.js:28 js/apps.js:55 msgid "Enable" -msgstr "" +msgstr "সক্রিয়" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "সংরক্ষণ করা হচ্ছে...." #: personal.php:42 personal.php:43 msgid "__language_name__" -msgstr "" +msgstr "_ভাষার_নাম_" #: templates/apps.php:10 msgid "Add your App" -msgstr "" +msgstr "আপনার অ্যাপটি যোগ করুন" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "আরও অ্যাপ" #: templates/apps.php:27 msgid "Select an App" -msgstr "" +msgstr "অ্যাপ নির্বাচন করুন" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "অ্যাপ্লিকেসন পাতাটি দেখুন এখানে apps.owncloud.com" #: templates/apps.php:32 msgid "-licensed by " -msgstr "" +msgstr "-লাইসেন্স করিয়েছেন " #: templates/help.php:3 msgid "User Documentation" @@ -129,15 +130,15 @@ msgstr "" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "ফোরাম" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "বাগট্র্যাকার" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "বাণিজ্যিক সাপোর্ট" #: templates/personal.php:8 #, php-format @@ -146,11 +147,11 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "ক্লায়েন্ট" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "ডেস্কটপ ক্লায়েন্ট ডাউনলোড করুন" #: templates/personal.php:14 msgid "Download Android Client" @@ -162,39 +163,39 @@ msgstr "" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" -msgstr "" +msgstr "কূটশব্দ" #: templates/personal.php:22 msgid "Your password was changed" -msgstr "" +msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে" #: templates/personal.php:23 msgid "Unable to change your password" -msgstr "" +msgstr "কূটশব্দ পরিবর্তন করা সম্ভব হলো না" #: templates/personal.php:24 msgid "Current password" -msgstr "" +msgstr "বর্তমান কূটশব্দ" #: templates/personal.php:25 msgid "New password" -msgstr "" +msgstr "নতুন কূটশব্দ" #: templates/personal.php:26 msgid "show" -msgstr "" +msgstr "প্রদর্শন" #: templates/personal.php:27 msgid "Change password" -msgstr "" +msgstr "কূটশব্দ পরিবর্তন কর" #: templates/personal.php:33 msgid "Email" -msgstr "" +msgstr "ই-মেইল" #: templates/personal.php:34 msgid "Your email address" -msgstr "" +msgstr "আপনার ই-মেইল ঠিকানা" #: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" @@ -202,11 +203,11 @@ msgstr "" #: templates/personal.php:41 templates/personal.php:42 msgid "Language" -msgstr "" +msgstr "ভাষা" #: templates/personal.php:47 msgid "Help translate" -msgstr "" +msgstr "অনুবাদ করতে সাহায্য করুন" #: templates/personal.php:52 msgid "WebDAV" @@ -228,19 +229,19 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "তৈরি করেছেন ownCloud community, যার উৎস কোড AGPLএর অধীনে লাইেসন্সকৃত." #: templates/users.php:21 templates/users.php:81 msgid "Name" -msgstr "" +msgstr "নাম" #: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" -msgstr "" +msgstr "গোষ্ঠী" #: templates/users.php:32 msgid "Create" -msgstr "" +msgstr "তৈরি কর" #: templates/users.php:35 msgid "Default Storage" @@ -252,11 +253,11 @@ msgstr "" #: templates/users.php:60 templates/users.php:153 msgid "Other" -msgstr "" +msgstr "অন্যান্য" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" -msgstr "" +msgstr "গোষ্ঠী প্রশাসন" #: templates/users.php:87 msgid "Storage" @@ -268,4 +269,4 @@ msgstr "" #: templates/users.php:161 msgid "Delete" -msgstr "" +msgstr "মুছে ফেল" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 75066d45b13..509354b9d66 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" "PO-Revision-Date: 2012-08-12 22:45+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" @@ -60,7 +60,7 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "কূটশব্দ" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." @@ -180,4 +180,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "সহায়িকা" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index a4196d62a07..3c2c03dfdaf 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -10,16 +10,16 @@ # Ole Holm Frandsen , 2012. # Pascal d'Hermilly , 2011. # , 2012. -# , 2012. +# , 2012-2013. # Thomas Tanghus <>, 2012. # Thomas Tanghus , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2013-01-02 21:06+0000\n" +"Last-Translator: ressel \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" @@ -254,11 +254,11 @@ msgstr "Ny" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Standard opbevaring" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ubegrænset" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -270,11 +270,11 @@ msgstr "Gruppe Administrator" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Opbevaring" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Standard" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/hu/core.po b/l10n/hu/core.po new file mode 100644 index 00000000000..03c54c112f2 --- /dev/null +++ b/l10n/hu/core.po @@ -0,0 +1,579 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:84 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:86 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:88 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:90 +#, 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 +msgid "This category already exists: " +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/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 +msgid "Settings" +msgstr "" + +#: js/js.js:704 +msgid "seconds ago" +msgstr "" + +#: js/js.js:705 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:706 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:707 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:708 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:709 +msgid "today" +msgstr "" + +#: js/js.js:710 +msgid "yesterday" +msgstr "" + +#: js/js.js:711 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:712 +msgid "last month" +msgstr "" + +#: js/js.js:713 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:714 +msgid "months ago" +msgstr "" + +#: js/js.js:715 +msgid "last year" +msgstr "" + +#: js/js.js:716 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:126 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:162 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:163 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:180 +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:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 +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:124 js/share.js:594 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:135 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:142 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:151 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:153 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:158 +msgid "Share with" +msgstr "" + +#: js/share.js:163 +msgid "Share with link" +msgstr "" + +#: js/share.js:166 +msgid "Password protect" +msgstr "" + +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 +#: templates/verify.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:172 +msgid "Email link to person" +msgstr "" + +#: js/share.js:173 +msgid "Send" +msgstr "" + +#: js/share.js:177 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:178 +msgid "Expiration date" +msgstr "" + +#: js/share.js:210 +msgid "Share via email:" +msgstr "" + +#: js/share.js:212 +msgid "No people found" +msgstr "" + +#: js/share.js:239 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:275 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:296 +msgid "Unshare" +msgstr "" + +#: js/share.js:308 +msgid "can edit" +msgstr "" + +#: js/share.js:310 +msgid "access control" +msgstr "" + +#: js/share.js:313 +msgid "create" +msgstr "" + +#: js/share.js:316 +msgid "update" +msgstr "" + +#: js/share.js:319 +msgid "delete" +msgstr "" + +#: js/share.js:322 +msgid "share" +msgstr "" + +#: js/share.js:356 js/share.js:541 +msgid "Password protected" +msgstr "" + +#: js/share.js:554 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:566 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:581 +msgid "Sending ..." +msgstr "" + +#: js/share.js:592 +msgid "Email sent" +msgstr "" + +#: lostpassword/controller.php:47 +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:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +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:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +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:32 +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/installation.php:36 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:50 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:52 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:59 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 +msgid "will be used" +msgstr "" + +#: templates/installation.php:107 +msgid "Database user" +msgstr "" + +#: templates/installation.php:111 +msgid "Database password" +msgstr "" + +#: templates/installation.php:115 +msgid "Database name" +msgstr "" + +#: templates/installation.php:123 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:129 +msgid "Database host" +msgstr "" + +#: templates/installation.php:134 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Sunday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Monday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Tuesday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Wednesday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Thursday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Friday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Saturday" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "January" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "February" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "March" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "April" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "May" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "June" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "July" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "August" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "September" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "October" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "November" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "December" +msgstr "" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:45 +msgid "Log out" +msgstr "" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" + +#: templates/login.php:41 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password.
For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/hu/files.po b/l10n/hu/files.po new file mode 100644 index 00000000000..e5db30deb09 --- /dev/null +++ b/l10n/hu/files.po @@ -0,0 +1,266 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/upload.php:20 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:23 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:25 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:26 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:27 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:28 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:10 +msgid "Files" +msgstr "" + +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:181 +msgid "Rename" +msgstr "" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "replace" +msgstr "" + +#: js/filelist.js:199 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "cancel" +msgstr "" + +#: js/filelist.js:248 +msgid "replaced {new_name}" +msgstr "" + +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +msgid "undo" +msgstr "" + +#: js/filelist.js:250 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:282 +msgid "unshared {files}" +msgstr "" + +#: js/filelist.js:284 +msgid "deleted {files}" +msgstr "" + +#: js/files.js:33 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:174 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:212 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:212 +msgid "Upload Error" +msgstr "" + +#: js/files.js:229 +msgid "Close" +msgstr "" + +#: js/files.js:248 js/files.js:362 js/files.js:392 +msgid "Pending" +msgstr "" + +#: js/files.js:268 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:271 js/files.js:325 js/files.js:340 +msgid "{count} files uploading" +msgstr "" + +#: js/files.js:343 js/files.js:376 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:445 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:515 +msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +msgstr "" + +#: js/files.js:699 +msgid "{count} files scanned" +msgstr "" + +#: js/files.js:707 +msgid "error while scanning" +msgstr "" + +#: js/files.js:780 templates/index.php:66 +msgid "Name" +msgstr "" + +#: js/files.js:781 templates/index.php:77 +msgid "Size" +msgstr "" + +#: js/files.js:782 templates/index.php:79 +msgid "Modified" +msgstr "" + +#: js/files.js:801 +msgid "1 folder" +msgstr "" + +#: js/files.js:803 +msgid "{count} folders" +msgstr "" + +#: js/files.js:811 +msgid "1 file" +msgstr "" + +#: js/files.js:813 +msgid "{count} files" +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 "" + +#: 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:35 +msgid "Upload" +msgstr "" + +#: templates/index.php:43 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:58 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:72 +msgid "Download" +msgstr "" + +#: templates/index.php:104 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:106 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:111 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:114 +msgid "Current scanning" +msgstr "" diff --git a/l10n/hu/files_encryption.po b/l10n/hu/files_encryption.po new file mode 100644 index 00000000000..26913fea990 --- /dev/null +++ b/l10n/hu/files_encryption.po @@ -0,0 +1,34 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "" + +#: templates/settings.php:7 +msgid "None" +msgstr "" + +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" +msgstr "" diff --git a/l10n/hu/files_external.po b/l10n/hu/files_external.po new file mode 100644 index 00000000000..5ee957401ae --- /dev/null +++ b/l10n/hu/files_external.po @@ -0,0 +1,120 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:434 +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:435 +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 "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:22 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:9 +msgid "Backend" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:27 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:85 +msgid "None set" +msgstr "" + +#: templates/settings.php:86 +msgid "All Users" +msgstr "" + +#: templates/settings.php:87 +msgid "Groups" +msgstr "" + +#: templates/settings.php:95 +msgid "Users" +msgstr "" + +#: templates/settings.php:108 templates/settings.php:109 +#: templates/settings.php:144 templates/settings.php:145 +msgid "Delete" +msgstr "" + +#: templates/settings.php:124 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:125 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:136 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:153 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/hu/files_sharing.po b/l10n/hu/files_sharing.po new file mode 100644 index 00000000000..07688f2047c --- /dev/null +++ b/l10n/hu/files_sharing.po @@ -0,0 +1,48 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:19 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:22 templates/public.php:38 +msgid "Download" +msgstr "" + +#: templates/public.php:37 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:43 +msgid "web services under your control" +msgstr "" diff --git a/l10n/hu/files_versions.po b/l10n/hu/files_versions.po new file mode 100644 index 00000000000..8fb51cf6202 --- /dev/null +++ b/l10n/hu/files_versions.po @@ -0,0 +1,42 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/settings-personal.js:31 templates/settings-personal.php:7 +msgid "Expire all versions" +msgstr "" + +#: js/versions.js:16 +msgid "History" +msgstr "" + +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:10 +msgid "This will delete all existing backup versions of your files" +msgstr "" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/hu/lib.po b/l10n/hu/lib.po new file mode 100644 index 00000000000..0dc080f7db0 --- /dev/null +++ b/l10n/hu/lib.po @@ -0,0 +1,152 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:287 +msgid "Help" +msgstr "" + +#: app.php:294 +msgid "Personal" +msgstr "" + +#: app.php:299 +msgid "Settings" +msgstr "" + +#: app.php:304 +msgid "Users" +msgstr "" + +#: app.php:311 +msgid "Apps" +msgstr "" + +#: app.php:313 +msgid "Admin" +msgstr "" + +#: files.php:365 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:366 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:366 files.php:391 +msgid "Back to Files" +msgstr "" + +#: files.php:390 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:64 json.php:77 json.php:89 +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 "" + +#: template.php:103 +msgid "seconds ago" +msgstr "" + +#: template.php:104 +msgid "1 minute ago" +msgstr "" + +#: template.php:105 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:106 +msgid "1 hour ago" +msgstr "" + +#: template.php:107 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:108 +msgid "today" +msgstr "" + +#: template.php:109 +msgid "yesterday" +msgstr "" + +#: template.php:110 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:111 +msgid "last month" +msgstr "" + +#: template.php:112 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:113 +msgid "last year" +msgstr "" + +#: template.php:114 +msgid "years ago" +msgstr "" + +#: updater.php:75 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:77 +msgid "up to date" +msgstr "" + +#: updater.php:80 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/hu/settings.po b/l10n/hu/settings.po new file mode 100644 index 00000000000..934e419f787 --- /dev/null +++ b/l10n/hu/settings.po @@ -0,0 +1,271 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:12 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/openid.php:13 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:28 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:34 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: js/apps.js:28 js/apps.js:67 +msgid "Disable" +msgstr "" + +#: js/apps.js:28 js/apps.js:55 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:42 personal.php:43 +msgid "__language_name__" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:31 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:32 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:7 +msgid "Forum" +msgstr "" + +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:12 +msgid "Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 +msgid "Password" +msgstr "" + +#: templates/personal.php:22 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:23 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:24 +msgid "Current password" +msgstr "" + +#: templates/personal.php:25 +msgid "New password" +msgstr "" + +#: templates/personal.php:26 +msgid "show" +msgstr "" + +#: templates/personal.php:27 +msgid "Change password" +msgstr "" + +#: templates/personal.php:33 +msgid "Email" +msgstr "" + +#: templates/personal.php:34 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:35 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:41 templates/personal.php:42 +msgid "Language" +msgstr "" + +#: templates/personal.php:47 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" + +#: templates/personal.php:65 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/users.php:21 templates/users.php:81 +msgid "Name" +msgstr "" + +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 +msgid "Other" +msgstr "" + +#: templates/users.php:85 templates/users.php:117 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" + +#: templates/users.php:161 +msgid "Delete" +msgstr "" diff --git a/l10n/hu/user_ldap.po b/l10n/hu/user_ldap.po new file mode 100644 index 00000000000..e2abecc29af --- /dev/null +++ b/l10n/hu/user_ldap.po @@ -0,0 +1,183 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:8 +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:11 +msgid "" +"Warning: The PHP LDAP module needs is not installed, the backend will" +" not work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Host" +msgstr "" + +#: templates/settings.php:15 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:16 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:16 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:17 +msgid "User DN" +msgstr "" + +#: templates/settings.php:17 +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:18 +msgid "Password" +msgstr "" + +#: templates/settings.php:18 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:19 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:19 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:19 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:20 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:20 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:20 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:21 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:21 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:21 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:24 +msgid "Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:26 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:27 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:28 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:28 +msgid "Do not use it for SSL connections, it will fail." +msgstr "" + +#: templates/settings.php:29 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:30 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:30 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:30 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:31 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:31 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:32 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:34 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:36 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:37 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:39 +msgid "Help" +msgstr "" diff --git a/l10n/hu/user_webdavauth.po b/l10n/hu/user_webdavauth.po new file mode 100644 index 00000000000..d6235e0472c --- /dev/null +++ b/l10n/hu/user_webdavauth.po @@ -0,0 +1,29 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 3018d56bd26..5318d06fed8 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -4,7 +4,7 @@ # # Translators: # , 2012. -# Duarte Velez Grilo , 2012. +# Duarte Velez Grilo , 2012-2013. # , 2012. # Helder Meneses , 2012. # , 2012. @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2013-01-02 14:00+0000\n" +"Last-Translator: Duarte Velez Grilo \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" @@ -249,11 +249,11 @@ msgstr "Criar" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Armazenamento Padrão" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ilimitado" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -265,11 +265,11 @@ msgstr "Grupo Administrador" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Armazenamento" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Padrão" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index cef594b830d..ebbad65c865 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\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 79fd8f71c43..2d7b4687cca 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -191,27 +191,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 46f22de7109..d81bb73f7eb 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\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 ec95612f537..33dc2ce30a4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\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 6c6ad0096eb..53424eaed43 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\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 659868c67a0..c25ceb6168c 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\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 700a7cf8518..c03c9cf3914 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\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 51c00a79705..d06767eaf18 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\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 257fcae7736..5be5f11d71d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\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 6a401044dae..25ff49007c5 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\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/bn_BD.php b/lib/l10n/bn_BD.php new file mode 100644 index 00000000000..275d3c0f05c --- /dev/null +++ b/lib/l10n/bn_BD.php @@ -0,0 +1,18 @@ + "সহায়িকা", +"Personal" => "ব্যক্তিগত", +"Settings" => "নিয়ামকসমূহ", +"Users" => "ব্যবহারকারিবৃন্দ", +"Apps" => "অ্যাপস", +"Admin" => "প্রশাসক", +"Authentication error" => "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে", +"Files" => "ফাইল", +"seconds ago" => "সেকেন্ড পূর্বে", +"1 minute ago" => "1 মিনিট পূর্বে", +"1 hour ago" => "1 ঘন্টা পূর্বে", +"today" => "আজ", +"yesterday" => "গতকাল", +"last month" => "গতমাস", +"last year" => "গত বছর", +"years ago" => "বছর পূর্বে" +); diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php new file mode 100644 index 00000000000..0b7983c6c1c --- /dev/null +++ b/settings/l10n/bn_BD.php @@ -0,0 +1,46 @@ + "অ্যাপস্টোর থেকে তালিকা লোড করা সম্ভব হলো না", +"Group already exists" => "গোষ্ঠীটি বিদ্যমান", +"Unable to add group" => "গোষ্ঠী যোগ করতে পারা গেল না", +"Could not enable app. " => "অ্যাপ সক্রিয় করা সম্ভব হলো না", +"Email saved" => "ই-মেইল সংরক্ষণ করা হয়েছে", +"Invalid email" => "ই-মেইলটি সঠিক নয়", +"OpenID Changed" => "OpenID পরিবর্তন করা হয়েছে", +"Invalid request" => "অননুমোদিত অনুরোধ", +"Unable to delete group" => "গোষ্ঠী মুছে ফেলা সম্ভব হলো না", +"Authentication error" => "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে", +"Unable to delete user" => "ব্যবহারকারি মুছে ফেলা সম্ভব হলো না", +"Language changed" => "ভাষা পরিবর্তন করা হয়েছে", +"Disable" => "নিষ্ক্রিয়", +"Enable" => "সক্রিয়", +"Saving..." => "সংরক্ষণ করা হচ্ছে....", +"__language_name__" => "_ভাষার_নাম_", +"Add your App" => "আপনার অ্যাপটি যোগ করুন", +"More Apps" => "আরও অ্যাপ", +"Select an App" => "অ্যাপ নির্বাচন করুন", +"See application page at apps.owncloud.com" => "অ্যাপ্লিকেসন পাতাটি দেখুন এখানে apps.owncloud.com", +"-licensed by " => "-লাইসেন্স করিয়েছেন ", +"Forum" => "ফোরাম", +"Bugtracker" => "বাগট্র্যাকার", +"Commercial Support" => "বাণিজ্যিক সাপোর্ট", +"Clients" => "ক্লায়েন্ট", +"Download Desktop Clients" => "ডেস্কটপ ক্লায়েন্ট ডাউনলোড করুন", +"Password" => "কূটশব্দ", +"Your password was changed" => "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে", +"Unable to change your password" => "কূটশব্দ পরিবর্তন করা সম্ভব হলো না", +"Current password" => "বর্তমান কূটশব্দ", +"New password" => "নতুন কূটশব্দ", +"show" => "প্রদর্শন", +"Change password" => "কূটশব্দ পরিবর্তন কর", +"Email" => "ই-মেইল", +"Your email address" => "আপনার ই-মেইল ঠিকানা", +"Language" => "ভাষা", +"Help translate" => "অনুবাদ করতে সাহায্য করুন", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "তৈরি করেছেন ownCloud community, যার উৎস কোড AGPLএর অধীনে লাইেসন্সকৃত.", +"Name" => "নাম", +"Groups" => "গোষ্ঠী", +"Create" => "তৈরি কর", +"Other" => "অন্যান্য", +"Group Admin" => "গোষ্ঠী প্রশাসন", +"Delete" => "মুছে ফেল" +); diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 2300b98a2bf..7800bcfb6c4 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -53,7 +53,11 @@ "Name" => "Navn", "Groups" => "Grupper", "Create" => "Ny", +"Default Storage" => "Standard opbevaring", +"Unlimited" => "Ubegrænset", "Other" => "Andet", "Group Admin" => "Gruppe Administrator", +"Storage" => "Opbevaring", +"Default" => "Standard", "Delete" => "Slet" ); diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 1cfa991464f..32764a9cf36 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -53,7 +53,11 @@ "Name" => "Nome", "Groups" => "Grupos", "Create" => "Criar", +"Default Storage" => "Armazenamento Padrão", +"Unlimited" => "Ilimitado", "Other" => "Outro", "Group Admin" => "Grupo Administrador", +"Storage" => "Armazenamento", +"Default" => "Padrão", "Delete" => "Apagar" ); -- cgit v1.2.3 From ea732e5b29939173f1a61ef97c6271a56c70cec4 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Thu, 3 Jan 2013 11:57:17 +0100 Subject: also translate 'No file was uploaded. Unknown error' --- apps/files/ajax/upload.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 0909a3f0776..4053cf5f8b0 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -8,14 +8,14 @@ OCP\JSON::setContentTypeHeader('text/plain'); OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); +$l=OC_L10N::get('files'); if (!isset($_FILES['files'])) { - OCP\JSON::error(array('data' => array( 'message' => 'No file was uploaded. Unknown error' ))); + OCP\JSON::error(array('data' => array( 'message' => $l->t( 'No file was uploaded. Unknown error' )))); exit(); } foreach ($_FILES['files']['error'] as $error) { if ($error != 0) { - $l=OC_L10N::get('files'); $errors = array( UPLOAD_ERR_OK=>$l->t('There is no error, the file uploaded with success'), UPLOAD_ERR_INI_SIZE=>$l->t('The uploaded file exceeds the upload_max_filesize directive in php.ini: ') -- cgit v1.2.3 From fc64e8ec58961068ae91375325c4f96108ab39b9 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Thu, 3 Jan 2013 13:31:23 +0100 Subject: fix error when wrong dir was specified --- apps/files/ajax/upload.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index d9960494cc8..2a2d935da6c 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -66,7 +66,7 @@ if(strpos($dir, '..') === false) { OCP\JSON::encodedPrint($result); exit(); } else { - $error='invalid dir'; + $error=$l->t( 'Invalid directory.' ); } -OCP\JSON::error(array('data' => array('error' => $error, 'file' => $fileName))); +OCP\JSON::error(array('data' => array('message' => $error ))); -- cgit v1.2.3 From 90f39cd70373f01d4d396e5bee0c67a6818aec4c Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 4 Jan 2013 13:23:31 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/fr.php | 2 +- apps/user_ldap/l10n/es_AR.php | 2 + core/l10n/fr.php | 4 +- l10n/ar/files.po | 114 ++++++++++++++++++---------------- l10n/bg_BG/files.po | 114 ++++++++++++++++++---------------- l10n/bn_BD/files.po | 32 +++++++--- l10n/ca/files.po | 116 +++++++++++++++++++---------------- l10n/cs_CZ/files.po | 116 +++++++++++++++++++---------------- l10n/da/files.po | 44 ++++++++----- l10n/de/files.po | 80 +++++++++++++----------- l10n/de_DE/files.po | 80 +++++++++++++----------- l10n/de_DE/settings.po | 6 +- l10n/de_DE/user_webdavauth.po | 6 +- l10n/el/files.po | 44 ++++++++----- l10n/eo/files.po | 116 +++++++++++++++++++---------------- l10n/es/files.po | 116 +++++++++++++++++++---------------- l10n/es_AR/files.po | 80 +++++++++++++----------- l10n/es_AR/user_ldap.po | 11 ++-- l10n/et_EE/files.po | 114 ++++++++++++++++++---------------- l10n/eu/files.po | 80 +++++++++++++----------- l10n/fa/files.po | 114 ++++++++++++++++++---------------- l10n/fi_FI/files.po | 114 ++++++++++++++++++---------------- l10n/fr/core.po | 11 ++-- l10n/fr/files.po | 119 ++++++++++++++++++++---------------- l10n/fr/settings.po | 7 ++- l10n/gl/files.po | 116 +++++++++++++++++++---------------- l10n/he/files.po | 116 +++++++++++++++++++---------------- l10n/hi/files.po | 114 ++++++++++++++++++---------------- l10n/hr/files.po | 114 ++++++++++++++++++---------------- l10n/hu/files.po | 32 +++++++--- l10n/hu_HU/files.po | 44 ++++++++----- l10n/ia/files.po | 114 ++++++++++++++++++---------------- l10n/id/files.po | 114 ++++++++++++++++++---------------- l10n/is/files.po | 44 ++++++++----- l10n/it/files.po | 116 +++++++++++++++++++---------------- l10n/ja_JP/files.po | 116 +++++++++++++++++++---------------- l10n/ja_JP/settings.po | 16 ++--- l10n/ka_GE/files.po | 114 ++++++++++++++++++---------------- l10n/ko/files.po | 80 +++++++++++++----------- l10n/ku_IQ/files.po | 114 ++++++++++++++++++---------------- l10n/lb/files.po | 114 ++++++++++++++++++---------------- l10n/lt_LT/files.po | 114 ++++++++++++++++++---------------- l10n/lv/files.po | 114 ++++++++++++++++++---------------- l10n/mk/files.po | 80 +++++++++++++----------- l10n/ms_MY/files.po | 114 ++++++++++++++++++---------------- l10n/nb_NO/files.po | 44 ++++++++----- l10n/nl/files.po | 116 +++++++++++++++++++---------------- l10n/nn_NO/files.po | 114 ++++++++++++++++++---------------- l10n/oc/files.po | 114 ++++++++++++++++++---------------- l10n/pl/files.po | 116 +++++++++++++++++++---------------- l10n/pl_PL/files.po | 114 ++++++++++++++++++---------------- l10n/pt_BR/files.po | 116 +++++++++++++++++++---------------- l10n/pt_PT/files.po | 116 +++++++++++++++++++---------------- l10n/ro/files.po | 44 ++++++++----- l10n/ru/files.po | 80 +++++++++++++----------- l10n/ru_RU/files.po | 80 +++++++++++++----------- l10n/si_LK/files.po | 114 ++++++++++++++++++---------------- l10n/sk_SK/files.po | 116 +++++++++++++++++++---------------- l10n/sl/files.po | 116 +++++++++++++++++++---------------- l10n/sq/files.po | 114 ++++++++++++++++++---------------- l10n/sr/files.po | 116 +++++++++++++++++++---------------- l10n/sr@latin/files.po | 114 ++++++++++++++++++---------------- l10n/sv/files.po | 116 +++++++++++++++++++---------------- l10n/ta_LK/files.po | 114 ++++++++++++++++++---------------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 28 ++++++--- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 44 ++++++++----- l10n/tr/files.po | 44 ++++++++----- l10n/uk/files.po | 116 +++++++++++++++++++---------------- l10n/vi/files.po | 114 ++++++++++++++++++---------------- l10n/zh_CN.GB2312/files.po | 114 ++++++++++++++++++---------------- l10n/zh_CN/files.po | 116 +++++++++++++++++++---------------- l10n/zh_HK/files.po | 114 ++++++++++++++++++---------------- l10n/zh_TW/files.po | 114 ++++++++++++++++++---------------- l10n/zu_ZA/files.po | 114 ++++++++++++++++++---------------- settings/l10n/ja_JP.php | 4 ++ 84 files changed, 3623 insertions(+), 2833 deletions(-) (limited to 'apps') diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 86d476873d0..28b063e3b46 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -14,7 +14,7 @@ "replace" => "remplacer", "suggest name" => "Suggérer un nom", "cancel" => "annuler", -"replaced {new_name}" => "{new_name} a été replacé", +"replaced {new_name}" => "{new_name} a été remplacé", "undo" => "annuler", "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "unshared {files}" => "Fichiers non partagés : {files}", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 6bd452e9d90..0b1340d4397 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Advertencia: Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Advertencia: El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo.", "Host" => "Servidor", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://", "Base DN" => "DN base", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 082bace76ce..6b1449dd4ba 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -59,7 +59,7 @@ "delete" => "supprimer", "share" => "partager", "Password protected" => "Protégé par un mot de passe", -"Error unsetting expiration date" => "Un erreur est survenue pendant la suppression de la date d'expiration", +"Error unsetting expiration date" => "Une erreur est survenue pendant la suppression de la date d'expiration", "Error setting expiration date" => "Erreur lors de la spécification de la date d'expiration", "Sending ..." => "En cours d'envoi ...", "Email sent" => "Email envoyé", @@ -83,7 +83,7 @@ "Cloud not found" => "Introuvable", "Edit categories" => "Modifier les catégories", "Add" => "Ajouter", -"Security Warning" => "Avertissement de sécutité", +"Security Warning" => "Avertissement de sécurité", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Aucun générateur de nombre aléatoire sécurisé n'est disponible, veuillez activer l'extension PHP OpenSSL", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sans générateur de nombre aléatoire sécurisé, un attaquant peut être en mesure de prédire les jetons de réinitialisation du mot de passe, et ainsi prendre le contrôle de votre compte utilisateur.", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de manière à ce que le dossier data ne soit plus accessible ou bien de déplacer le dossier data en dehors du dossier racine des documents du serveur web.", diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 2f8cead51f3..5d25164f500 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -18,46 +18,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "الملفات" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "محذوف" @@ -65,39 +77,39 @@ msgstr "محذوف" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "إغلق" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "الاسم" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "حجم" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "معدل" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -192,27 +204,27 @@ msgstr "" msgid "Maximum upload size" msgstr "الحد الأقصى لحجم الملفات التي يمكن رفعها" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "حفظ" @@ -240,28 +252,28 @@ msgstr "إرفع" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "تحميل" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index aec7865e431..9ef621af1e6 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -19,46 +19,58 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Файлът е качен успешно" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Файлът е качен частично" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Фахлът не бе качен" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Липсва временната папка" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Грешка при запис на диска" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Файлове" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Изтриване" @@ -66,39 +78,39 @@ msgstr "Изтриване" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Грешка при качване" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Качването е отменено." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Име" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Размер" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Променено" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -193,27 +205,27 @@ msgstr "" msgid "Maximum upload size" msgstr "Макс. размер за качване" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 означава без ограничение" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Запис" @@ -241,28 +253,28 @@ msgstr "Качване" msgid "Cancel upload" msgstr "Отказване на качването" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Няма нищо, качете нещо!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Изтегляне" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Файлът е прекалено голям" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Файловете се претърсват, изчакайте." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 8982ada4875..9954cd477fd 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2013-01-02 10:06+0000\n" -"Last-Translator: Shubhra Paul \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,37 +18,49 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড হয়েছে" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডারটি খোয়া গিয়েছে " -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে পারা গেল না" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ফাইল" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 478d4fded6c..5d01d8e1183 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 16:57+0000\n" -"Last-Translator: Josep Tomàs \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -22,46 +22,58 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "El fitxer s'ha pujat correctament" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha pujat parcialment" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "El fitxer no s'ha pujat" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "S'ha perdut un fitxer temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fitxers" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Deixa de compartir" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Suprimeix" @@ -69,39 +81,39 @@ msgstr "Suprimeix" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "substitueix" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "s'ha substituït {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "desfés" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "no compartits {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "eliminats {files}" @@ -111,80 +123,80 @@ msgid "" "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "s'estan generant fitxers ZIP, pot trigar una estona." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Error en la pujada" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Tanca" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendents" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} fitxers en pujada" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} fitxers escannejats" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "error durant l'escaneig" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nom" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Mida" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificat" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} fitxers" @@ -196,27 +208,27 @@ msgstr "Gestió de fitxers" msgid "Maximum upload size" msgstr "Mida màxima de pujada" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "màxim possible:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necessari per fitxers múltiples i baixada de carpetes" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Activa la baixada ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 és sense límit" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Mida màxima d'entrada per fitxers ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Desa" @@ -244,28 +256,28 @@ msgstr "Puja" msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Baixa" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index ae2e4682356..ba7d3ec893f 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 05:15+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -20,46 +20,58 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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ý v formuláři HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Soubory" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Smazat" @@ -67,39 +79,39 @@ msgstr "Smazat" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "nahradit" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "nahrazeno {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "zpět" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "sdílení zrušeno pro {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "smazáno {files}" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "generuji ZIP soubor, může to nějakou dobu trvat." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Chyba odesílání" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Zavřít" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Čekající" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "odesílám {count} souborů" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:451 +#: js/files.js:445 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 vyústí ve zrušení nahrávání." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "prozkoumáno {count} souborů" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "chyba při prohledávání" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Název" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Velikost" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Změněno" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 složka" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 soubor" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} soubory" @@ -194,27 +206,27 @@ msgstr "Zacházení se soubory" msgid "Maximum upload size" msgstr "Maximální velikost pro odesílání" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "největší možná: " -#: templates/admin.php:12 +#: templates/admin.php:15 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:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Povolit ZIP-stahování" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 znamená bez omezení" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximální velikost vstupu pro ZIP soubory" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Uložit" @@ -242,28 +254,28 @@ msgstr "Odeslat" msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Odeslaný soubor je příliš velký" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/da/files.po b/l10n/da/files.po index 185ea7031e7..7dfa1a0bfb4 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 21:45+0000\n" -"Last-Translator: cronner \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -25,37 +25,49 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Der er ingen fejl, filen blev uploadet med success" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Den uploadede file blev kun delvist uploadet" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen fil blev uploadet" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" @@ -199,27 +211,27 @@ msgstr "Filhåndtering" msgid "Maximum upload size" msgstr "Maksimal upload-størrelse" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. mulige: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Nødvendigt for at kunne downloade mapper og flere filer ad gangen." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Muliggør ZIP-download" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 er ubegrænset" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse på ZIP filer" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Gem" diff --git a/l10n/de/files.po b/l10n/de/files.po index 7dc41332e04..b660d0c95ec 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-12 00:12+0100\n" -"PO-Revision-Date: 2012-12-11 09:27+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -34,37 +34,49 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Datei fehlerfrei hochgeladen." -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Temporärer Ordner fehlt." -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Dateien" @@ -127,76 +139,76 @@ msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "Schließen" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "Eine Datei wird hoch geladen" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} Dateien werden hochgeladen" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:442 +#: js/files.js:445 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/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Name" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Größe" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 Datei" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} Dateien" @@ -208,27 +220,27 @@ msgstr "Dateibehandlung" msgid "Maximum upload size" msgstr "Maximale Upload-Größe" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maximal möglich:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-Download aktivieren" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 bedeutet unbegrenzt" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximale Größe für ZIP-Dateien" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Speichern" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 035e733deb4..f88c38701e3 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -25,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-12 00:12+0100\n" -"PO-Revision-Date: 2012-12-11 09:27+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -35,37 +35,49 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Der temporäre Ordner fehlt." -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Dateien" @@ -128,76 +140,76 @@ msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "Schließen" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} Dateien wurden hochgeladen" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:442 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Name" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Größe" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 Datei" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} Dateien" @@ -209,27 +221,27 @@ msgstr "Dateibehandlung" msgid "Maximum upload size" msgstr "Maximale Upload-Größe" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maximal möglich:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-Download aktivieren" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 bedeutet unbegrenzt" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximale Größe für ZIP-Dateien" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Speichern" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index cad62cf5996..4886219fbce 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-03 16:09+0000\n" +"Last-Translator: a.tangemann \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" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index 9cb13ec43ec..aabd937409d 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 23:03+0000\n" -"Last-Translator: multimill \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-03 16:07+0000\n" +"Last-Translator: a.tangemann \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" diff --git a/l10n/el/files.po b/l10n/el/files.po index 5129f6e33ff..eaa6cb44620 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 13:50+0000\n" -"Last-Translator: Konstantinos Tzanidis \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -24,37 +24,49 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Αρχεία" @@ -198,27 +210,27 @@ msgstr "Διαχείριση αρχείων" msgid "Maximum upload size" msgstr "Μέγιστο μέγεθος αποστολής" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "μέγιστο δυνατό:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Απαραίτητο για κατέβασμα πολλαπλών αρχείων και φακέλων" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Ενεργοποίηση κατεβάσματος ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 για απεριόριστο" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Μέγιστο μέγεθος για αρχεία ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Αποθήκευση" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 98d1dba639f..bce474e5172 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 22:06+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,46 +19,58 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "La alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Neniu dosiero estas alŝutita" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Mankas tempa dosierujo" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Dosieroj" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Malkunhavigi" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Forigi" @@ -66,39 +78,39 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "anstataŭiĝis {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "malfari" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "malkunhaviĝis {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "foriĝis {files}" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Fermi" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Traktotaj" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} dosieroj alŝutatas" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} dosieroj skaniĝis" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "eraro dum skano" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nomo" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Grando" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modifita" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} dosierujoj" @@ -193,27 +205,27 @@ msgstr "Dosieradministro" msgid "Maximum upload size" msgstr "Maksimuma alŝutogrando" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maks. ebla: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necesa por elŝuto de pluraj dosieroj kaj dosierujoj." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Kapabligi ZIP-elŝuton" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 signifas senlime" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimuma enirgrando por ZIP-dosieroj" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Konservi" @@ -241,28 +253,28 @@ msgstr "Alŝuti" msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Elŝuto tro larĝa" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/es/files.po b/l10n/es/files.po index 8925d2d93df..ce1d4746f62 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 20:49+0000\n" -"Last-Translator: xsergiolpx \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -24,46 +24,58 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "No se ha producido ningún error, el archivo se ha subido con éxito" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentas subir solo se subió parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "No se ha subido ningún archivo" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "La escritura en disco ha fallado" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Archivos" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Eliminar" @@ -71,39 +83,39 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "reemplazado {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "deshacer" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "{files} descompartidos" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "{files} eliminados" @@ -113,80 +125,80 @@ msgid "" "allowed." msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "generando un fichero ZIP, puede llevar un tiempo." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "cerrrar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendiente" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "error escaneando" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nombre" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Tamaño" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 archivo" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} archivos" @@ -198,27 +210,27 @@ msgstr "Tratamiento de archivos" msgid "Maximum upload size" msgstr "Tamaño máximo de subida" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "máx. posible:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Se necesita para descargas multi-archivo y de carpetas" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar descarga en ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 es ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo para archivos ZIP de entrada" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Guardar" @@ -246,28 +258,28 @@ msgstr "Subir" msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Aquí no hay nada. ¡Sube algo!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Descargar" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:105 +#: templates/index.php:106 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 por este servidor." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor espere." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Ahora escaneando" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 551f3b477be..e6b153846a8 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-11 00:04+0100\n" -"PO-Revision-Date: 2012-12-10 00:37+0000\n" -"Last-Translator: Agustin Ferrario \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,37 +19,49 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "No se han producido errores, el archivo se ha subido con éxito" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentás subir solo se subió parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "El archivo no fue subido" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Archivos" @@ -112,76 +124,76 @@ msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no está msgid "generating ZIP-file, it may take some time." msgstr "generando un archivo ZIP, puede llevar un tiempo." -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "Cerrar" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendiente" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:442 +#: js/files.js:445 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/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud." -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "error mientras se escaneaba" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nombre" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Tamaño" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 archivo" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} archivos" @@ -193,27 +205,27 @@ msgstr "Tratamiento de archivos" msgid "Maximum upload size" msgstr "Tamaño máximo de subida" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "máx. posible:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Es necesario para descargas multi-archivo y de carpetas" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar descarga en formato ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 significa ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo para archivos ZIP de entrada" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Guardar" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 80ab2e1f1f5..4ceff26caa1 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Agustin Ferrario , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 05:53+0000\n" +"Last-Translator: Agustin Ferrario \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,13 +24,13 @@ 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 "" +msgstr "Advertencia: Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Advertencia: El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 9c1c0fadb7b..61aeebaff2e 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -19,46 +19,58 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi viga pole, fail on üles laetud" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Failid" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Kustuta" @@ -66,39 +78,39 @@ msgstr "Kustuta" msgid "Rename" msgstr "ümber" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "asenda" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "loobu" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "asendatud nimega {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "tagasi" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "jagamata {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "kustutatud {files}" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-faili loomine, see võib veidi aega võtta." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Üleslaadimise viga" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Sulge" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Ootel" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 faili üleslaadimisel" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} faili üleslaadimist" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud " -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} faili skännitud" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "viga skännimisel" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nimi" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Suurus" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Muudetud" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 fail" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} faili" @@ -193,27 +205,27 @@ msgstr "Failide käsitlemine" msgid "Maximum upload size" msgstr "Maksimaalne üleslaadimise suurus" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maks. võimalik: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Vajalik mitme faili ja kausta allalaadimiste jaoks." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Luba ZIP-ina allalaadimine" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 tähendab piiramatut" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimaalne ZIP-faili sisestatava faili suurus" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salvesta" @@ -241,28 +253,28 @@ msgstr "Lae üles" msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Lae alla" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index fc884c532ed..8e328cf5b9c 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 11:48+0000\n" -"Last-Translator: Piarres Beobide \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,37 +20,49 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ez da arazorik izan, fitxategia ongi igo da" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Aldi baterako karpeta falta da" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fitxategiak" @@ -113,76 +125,76 @@ msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daud msgid "generating ZIP-file, it may take some time." msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake" -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "Itxi" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Zain" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} fitxategi igotzen" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:442 +#: js/files.js:445 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/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka" -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} fitxategi eskaneatuta" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "errore bat egon da eskaneatzen zen bitartean" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Izena" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Tamaina" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} fitxategi" @@ -194,27 +206,27 @@ msgstr "Fitxategien kudeaketa" msgid "Maximum upload size" msgstr "Igo daitekeen gehienezko tamaina" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max, posiblea:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Beharrezkoa fitxategi-anitz eta karpeten deskargarako." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Gaitu ZIP-deskarga" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 mugarik gabe esan nahi du" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP fitxategien gehienezko tamaina" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Gorde" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 7e13f99c90f..254b9faee01 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -20,46 +20,58 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "مقدار کمی از فایل بارگذاری شده" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "هیچ فایلی بارگذاری نشده" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده است" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "فایل ها" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "پاک کردن" @@ -67,39 +79,39 @@ msgstr "پاک کردن" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "لغو" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "خطا در بار گذاری" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "بستن" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "در انتظار" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "نام" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "اندازه" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -194,27 +206,27 @@ msgstr "اداره پرونده ها" msgid "Maximum upload size" msgstr "حداکثر اندازه بارگزاری" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "حداکثرمقدارممکن:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "احتیاج پیدا خواهد شد برای چند پوشه و پرونده" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "فعال سازی بارگیری پرونده های فشرده" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 نامحدود است" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "حداکثرمقدار برای بار گزاری پرونده های فشرده" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ذخیره" @@ -242,28 +254,28 @@ msgstr "بارگذاری" msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "بارگیری" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "حجم بارگذاری بسیار زیاد است" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index e96dbeabb50..c213e0b517b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -22,46 +22,58 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Väliaikaiskansiota ei ole olemassa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Tiedostot" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Peru jakaminen" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Poista" @@ -69,39 +81,39 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "korvaa" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "peru" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "kumoa" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -111,80 +123,80 @@ msgid "" "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Sulje" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Odottaa" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nimi" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Koko" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Muutettu" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} tiedostoa" @@ -196,27 +208,27 @@ msgstr "Tiedostonhallinta" msgid "Maximum upload size" msgstr "Lähetettävän tiedoston suurin sallittu koko" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "suurin mahdollinen:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Tarvitaan useampien tiedostojen ja kansioiden latausta varten." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Ota ZIP-paketin lataaminen käytöön" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 on rajoittamaton" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP-tiedostojen enimmäiskoko" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Tallenna" @@ -244,28 +256,28 @@ msgstr "Lähetä" msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Lataa" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 6dafbd6ca14..04a866c32f8 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -4,6 +4,7 @@ # # Translators: # Christophe Lherieau , 2012. +# , 2013. # , 2012. # , 2012. # Guillaume Paumier , 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" -"PO-Revision-Date: 2012-12-28 23:01+0000\n" -"Last-Translator: ouafnico \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-03 10:24+0000\n" +"Last-Translator: dbasquin \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" @@ -287,7 +288,7 @@ msgstr "Protégé par un mot de passe" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "Un erreur est survenue pendant la suppression de la date d'expiration" +msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" #: js/share.js:566 msgid "Error setting expiration date" @@ -384,7 +385,7 @@ msgstr "Ajouter" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "Avertissement de sécutité" +msgstr "Avertissement de sécurité" #: templates/installation.php:24 msgid "" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index b0fb5e1a70e..7b938b0a8a9 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -5,6 +5,7 @@ # Translators: # Christophe Lherieau , 2012. # Cyril Glapa , 2012. +# , 2013. # Geoffrey Guerrier , 2012. # , 2012. # , 2012. @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-05 00:04+0100\n" -"PO-Revision-Date: 2012-12-04 10:24+0000\n" -"Last-Translator: Robert Di Rosa <>\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -28,46 +29,58 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été téléversé avec succès" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement téléversé" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Aucun fichier n'a été téléversé" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Il manque un répertoire temporaire" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fichiers" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Ne plus partager" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Supprimer" @@ -75,39 +88,39 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "remplacer" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "annuler" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" -msgstr "{new_name} a été replacé" +msgstr "{new_name} a été remplacé" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "annuler" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "Fichiers non partagés : {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "Fichiers supprimés : {files}" @@ -117,80 +130,80 @@ msgid "" "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet." -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Fermer" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "En cours" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 fichier en cours de téléchargement" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} fichiers téléversés" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} fichiers indexés" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "erreur lors de l'indexation" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nom" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Taille" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modifié" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 fichier" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} fichiers" @@ -202,27 +215,27 @@ msgstr "Gestion des fichiers" msgid "Maximum upload size" msgstr "Taille max. d'envoi" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "Max. possible :" -#: templates/admin.php:12 +#: templates/admin.php:15 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:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Activer le téléchargement ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 est illimité" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Taille maximale pour les fichiers ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Sauvegarder" @@ -250,28 +263,28 @@ msgstr "Envoyer" msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Téléchargement" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Fichier trop volumineux" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 2b0461bacab..be09fe8f50a 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -5,6 +5,7 @@ # Translators: # Brice , 2012. # Cyril Glapa , 2012. +# , 2013. # , 2011. # , 2012. # , 2012. @@ -21,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 11:04+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-03 10:33+0000\n" +"Last-Translator: dbasquin \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" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index d44302b22d1..5206354af89 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 21:51+0000\n" -"Last-Translator: Miguel Branco \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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,46 +19,58 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Non hai erros. O ficheiro enviouse correctamente" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado foi só parcialmente enviado" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta un cartafol temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Erro ao escribir no disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Deixar de compartir" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Eliminar" @@ -66,39 +78,39 @@ msgstr "Eliminar" msgid "Rename" msgstr "Mudar o nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "xa existe un {new_name}" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "substituír" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "substituír {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "desfacer" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} polo {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "{files} sen compartir" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "{files} eliminados" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "xerando un ficheiro ZIP, o que pode levar un anaco." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Erro na subida" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Pechar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendentes" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 ficheiro subíndose" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} ficheiros subíndose" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ficheiros escaneados" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "erro mentres analizaba" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Tamaño" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ficheiros" @@ -193,27 +205,27 @@ msgstr "Manexo de ficheiro" msgid "Maximum upload size" msgstr "Tamaño máximo de envío" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "máx. posible: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Precísase para a descarga de varios ficheiros e cartafoles." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar a descarga-ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 significa ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo de descarga para os ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Gardar" @@ -241,28 +253,28 @@ msgstr "Enviar" msgid "Cancel upload" msgstr "Cancelar a subida" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Nada por aquí. Envía algo." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Descargar" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que trata de subir superan o tamaño máximo permitido neste servidor" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarda." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/he/files.po b/l10n/he/files.po index 2d18545dbb6..2d778126463 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 06:37+0000\n" -"Last-Translator: Yaron Shahrabani \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,46 +21,58 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "לא אירעה תקלה, הקבצים הועלו בהצלחה" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ שהועלה הועלה בצורה חלקית" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "לא הועלו קבצים" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "תיקייה זמנית חסרה" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "קבצים" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "הסר שיתוף" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "מחיקה" @@ -68,39 +80,39 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "החלפה" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "הצעת שם" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "ביטול" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "{new_name} הוחלף" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "ביטול" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "בוטל שיתופם של {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "{files} נמחקו" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "יוצר קובץ ZIP, אנא המתן." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "שגיאת העלאה" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "סגירה" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "ממתין" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} קבצים נשלחים" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} קבצים נסרקו" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "אירעה שגיאה במהלך הסריקה" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "שם" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "גודל" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} קבצים" @@ -195,27 +207,27 @@ msgstr "טיפול בקבצים" msgid "Maximum upload size" msgstr "גודל העלאה מקסימלי" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "המרבי האפשרי: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "נחוץ להורדה של ריבוי קבצים או תיקיות." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "הפעלת הורדת ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 - ללא הגבלה" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "גודל הקלט המרבי לקובצי ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "שמירה" @@ -243,28 +255,28 @@ msgstr "העלאה" msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "הורדה" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 1c494c435f9..12a3b1fd159 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,58 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -239,28 +251,28 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 7a1464ff148..d47d5f18bdc 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -20,46 +20,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je poslana uspješno i bez pogrešaka" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je poslana samo djelomično" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ni jedna datoteka nije poslana" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Nedostaje privremena mapa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Prekini djeljenje" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Briši" @@ -67,39 +79,39 @@ msgstr "Briši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "predloži ime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "odustani" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "vrati" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "generiranje ZIP datoteke, ovo može potrajati." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Zatvori" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "U tijeku" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "grečka prilikom skeniranja" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Naziv" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Veličina" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -194,27 +206,27 @@ msgstr "datoteka za rukovanje" msgid "Maximum upload size" msgstr "Maksimalna veličina prijenosa" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maksimalna moguća: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Potrebno za preuzimanje više datoteke i mape" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Omogući ZIP-preuzimanje" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 je \"bez limita\"" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimalna veličina za ZIP datoteke" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Snimi" @@ -242,28 +254,28 @@ msgstr "Pošalji" msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hu/files.po b/l10n/hu/files.po index e5db30deb09..c3d83a15a02 100644 --- a/l10n/hu/files.po +++ b/l10n/hu/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,37 +17,49 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index d430e38083e..f36411cd398 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 20:37+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,37 +20,49 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nem töltődött fel semmi" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fájlok" @@ -194,27 +206,27 @@ msgstr "Fájlkezelés" msgid "Maximum upload size" msgstr "Maximális feltölthető fájlméret" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. lehetséges: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Kötegelt fájl- vagy mappaletöltéshez szükséges" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "A ZIP-letöltés engedélyezése" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 = korlátlan" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP-fájlok maximális kiindulási mérete" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Mentés" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 3f93aeb3961..7e27aa1727b 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -19,46 +19,58 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nulle file esseva incargate" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Files" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Deler" @@ -66,39 +78,39 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Clauder" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nomine" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Dimension" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificate" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -193,27 +205,27 @@ msgstr "" msgid "Maximum upload size" msgstr "Dimension maxime de incargamento" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salveguardar" @@ -241,28 +253,28 @@ msgstr "Incargar" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Discargar" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 4c752ed6c0b..d1498ef87e2 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -20,46 +20,58 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML." -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Kehilangan folder temporer" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Berkas" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "batalkan berbagi" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Hapus" @@ -67,39 +79,39 @@ msgstr "Hapus" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "mengganti" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "batal dikerjakan" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "membuat berkas ZIP, ini mungkin memakan waktu." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "tutup" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Menunggu" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nama" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Ukuran" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -194,27 +206,27 @@ msgstr "Penanganan berkas" msgid "Maximum upload size" msgstr "Ukuran unggah maksimum" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "Kemungkinan maks:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Dibutuhkan untuk multi-berkas dan unduhan folder" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktifkan unduhan ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 adalah tidak terbatas" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Ukuran masukan maksimal untuk berkas ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "simpan" @@ -242,28 +254,28 @@ msgstr "Unggah" msgid "Cancel upload" msgstr "Batal mengunggah" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Unduh" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Unggahan terlalu besar" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang anda coba unggah melebihi ukuran maksimum untuk pengunggahan berkas di server ini." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silahkan tunggu." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Sedang memindai" diff --git a/l10n/is/files.po b/l10n/is/files.po index 1036913c086..a09396d6c0e 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 15:06+0000\n" -"Last-Translator: sveinn \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,37 +18,49 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Skrár" @@ -192,27 +204,27 @@ msgstr "Meðhöndlun skrár" msgid "Maximum upload size" msgstr "Hámarks stærð innsendingar" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "hámark mögulegt: " -#: templates/admin.php:12 +#: templates/admin.php:15 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:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Virkja ZIP niðurhal." -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 er ótakmarkað" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Hámarks inntaksstærð fyrir ZIP skrár" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Vista" diff --git a/l10n/it/files.po b/l10n/it/files.po index 062fa2906fd..db3da52397d 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 01:41+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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,46 +21,58 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, file caricato con successo" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato parzialmente caricato" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Cartella temporanea mancante" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "File" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Elimina" @@ -68,39 +80,39 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "annulla" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "sostituito {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "annulla" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "non condivisi {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "eliminati {files}" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "creazione file ZIP, potrebbe richiedere del tempo." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Chiudi" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "In corso" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} file in fase di caricamentoe" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} file analizzati" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "errore durante la scansione" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Dimensione" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificato" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 file" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} file" @@ -195,27 +207,27 @@ msgstr "Gestione file" msgid "Maximum upload size" msgstr "Dimensione massima upload" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "numero mass.: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necessario per lo scaricamento di file multipli e cartelle." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Abilita scaricamento ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 è illimitato" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Dimensione massima per i file ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salva" @@ -243,28 +255,28 @@ msgstr "Carica" msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Scarica" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Il file caricato è troppo grande" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 3f253361a8a..4cffd4396fb 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 01:53+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -21,46 +21,58 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ファイルは一部分しかアップロードされませんでした" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "テンポラリフォルダが見つかりません" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ファイル" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "共有しない" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "削除" @@ -68,39 +80,39 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在しています" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "置き換え" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "推奨名称" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "{new_name} を置換" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} を {new_name} に置換" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "未共有 {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "削除 {files}" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "ZIPファイルを生成中です、しばらくお待ちください。" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ディレクトリもしくは0バイトのファイルはアップロードできません" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "アップロードエラー" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "閉じる" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "保留" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} ファイルをアップロード中" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "無効なフォルダ名です。\"Shared\" の利用は ownCloud が予約済みです。" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ファイルをスキャン" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "スキャン中のエラー" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "名前" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "サイズ" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "更新日時" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ファイル" @@ -195,27 +207,27 @@ msgstr "ファイル操作" msgid "Maximum upload size" msgstr "最大アップロードサイズ" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "最大容量: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "複数ファイルおよびフォルダのダウンロードに必要" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP形式のダウンロードを有効にする" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0を指定した場合は無制限" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIPファイルへの最大入力サイズ" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "保存" @@ -243,28 +255,28 @@ msgstr "アップロード" msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ファイルサイズが大きすぎます" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index c1f06322310..7f6ee2171c9 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -4,16 +4,16 @@ # # Translators: # Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012-2013. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 01:31+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -248,11 +248,11 @@ msgstr "作成" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "デフォルトストレージ" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "無制限" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -264,11 +264,11 @@ msgstr "グループ管理者" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "ストレージ" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "デフォルト" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 5e3078f5048..ebcf1bec0d6 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -18,46 +18,58 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ფაილები" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "გაზიარების მოხსნა" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "წაშლა" @@ -65,39 +77,39 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "შეცვლა" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "სახელის შემოთავაზება" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "უარყოფა" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "{new_name} შეცვლილია" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "გაზიარება მოხსნილი {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "წაშლილი {files}" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-ფაილის გენერირება, ამას ჭირდება გარკვეული დრო." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "შეცდომა ატვირთვისას" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "დახურვა" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} ფაილი იტვირთება" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ფაილი სკანირებულია" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "შეცდომა სკანირებისას" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "სახელი" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "ზომა" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ფაილი" @@ -192,27 +204,27 @@ msgstr "ფაილის დამუშავება" msgid "Maximum upload size" msgstr "მაქსიმუმ ატვირთის ზომა" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "მაქს. შესაძლებელი:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "საჭიროა მულტი ფაილ ან საქაღალდის ჩამოტვირთვა." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-Download–ის ჩართვა" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 is unlimited" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP ფაილების მაქსიმუმ დასაშვები ზომა" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "შენახვა" @@ -240,28 +252,28 @@ msgstr "ატვირთვა" msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 0fcb15b44b4..a2968450e5e 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-10 00:11+0100\n" -"PO-Revision-Date: 2012-12-09 05:40+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,37 +20,49 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "업로드에 성공하였습니다." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "파일이 부분적으로 업로드됨" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "업로드된 파일 없음" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "임시 폴더가 사라짐" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "파일" @@ -113,76 +125,76 @@ msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', msgid "generating ZIP-file, it may take some time." msgstr "ZIP 파일을 생성하고 있습니다. 시간이 걸릴 수도 있습니다." -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "업로드 오류" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "닫기" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "보류 중" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "파일 {count}개 업로드 중" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/files.js:442 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "폴더 이름이 올바르지 않습니다. \"Shared\" 폴더는 ownCloud에서 예약되었습니다." -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "파일 {count}개 검색됨" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "검색 중 오류 발생" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "이름" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "크기" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "수정됨" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "파일 1개" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "파일 {count}개" @@ -194,27 +206,27 @@ msgstr "파일 처리" msgid "Maximum upload size" msgstr "최대 업로드 크기" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "최대 가능:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "다중 파일 및 폴더 다운로드에 필요합니다." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP 다운로드 허용" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0은 무제한입니다" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP 파일 최대 크기" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "저장" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 749a057b1c1..a191da36582 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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,46 +17,58 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "داخستن" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ناو" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "پاشکه‌وتکردن" @@ -239,28 +251,28 @@ msgstr "بارکردن" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "داگرتن" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index d4f89d14eac..f749e860e99 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -18,46 +18,58 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Et ass keng Datei ropgelueden ginn" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Dateien" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Läschen" @@ -65,39 +77,39 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass." -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Fehler beim eroplueden" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Zoumaachen" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Numm" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Gréisst" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Geännert" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -192,27 +204,27 @@ msgstr "Fichier handling" msgid "Maximum upload size" msgstr "Maximum Upload Gréisst " -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. méiglech:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Gett gebraucht fir multi-Fichier an Dossier Downloads." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-download erlaben" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ass onlimitéiert" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximal Gréisst fir ZIP Fichieren" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Späicheren" @@ -240,28 +252,28 @@ msgstr "Eroplueden" msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Eroflueden" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index ef30d7726ce..e82e8e9846d 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -20,46 +20,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Klaidų nėra, failas įkeltas sėkmingai" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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 parametrą, kuris yra nustatytas HTML formoje" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nebuvo įkeltas nė vienas failas" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Failai" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Nebesidalinti" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Ištrinti" @@ -67,39 +79,39 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "pasiūlyti pavadinimą" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "pakeiskite {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "nebesidalinti {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "ištrinti {files}" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "kuriamas ZIP archyvas, tai gali užtrukti šiek tiek laiko." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Įkėlimo klaida" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Užverti" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Laukiantis" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} įkeliami failai" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} praskanuoti failai" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "klaida skanuojant" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Dydis" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Pakeista" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 failas" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} failai" @@ -194,27 +206,27 @@ msgstr "Failų tvarkymas" msgid "Maximum upload size" msgstr "Maksimalus įkeliamo failo dydis" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maks. galima:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Reikalinga daugybinui failų ir aplankalų atsisiuntimui." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Įjungti atsisiuntimą ZIP archyvu" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 yra neribotas" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimalus ZIP archyvo failo dydis" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Išsaugoti" @@ -242,28 +254,28 @@ msgstr "Įkelti" msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:105 +#: templates/index.php:106 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ų leidžiamą šiame serveryje" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 09760c280aa..8d7b3dbc089 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -19,46 +19,58 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Viss kārtībā, augšupielāde veiksmīga" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Neviens fails netika augšuplādēts" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Nav iespējams saglabāt" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Faili" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Pārtraukt līdzdalīšanu" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Izdzēst" @@ -66,39 +78,39 @@ msgstr "Izdzēst" msgid "Rename" msgstr "Pārdēvēt" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "Ieteiktais nosaukums" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "vienu soli atpakaļ" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Augšuplādēšanas laikā radās kļūda" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nosaukums" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Izmērs" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -193,27 +205,27 @@ msgstr "Failu pārvaldība" msgid "Maximum upload size" msgstr "Maksimālais failu augšuplādes apjoms" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maksīmālais iespējamais:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Vajadzīgs vairāku failu un mapju lejuplādei" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Iespējot ZIP lejuplādi" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ir neierobežots" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Saglabāt" @@ -241,28 +253,28 @@ msgstr "Augšuplādet" msgid "Cancel upload" msgstr "Atcelt augšuplādi" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšuplādēt" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Lejuplādēt" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Fails ir par lielu lai to augšuplādetu" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Jūsu augšuplādējamie faili pārsniedz servera pieļaujamo failu augšupielādes apjomu" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Faili šobrīd tiek caurskatīti, nedaudz jāpagaida." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Šobrīd tiek pārbaudīti" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 778f65fd741..18bfe5021e7 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 12:18+0000\n" -"Last-Translator: Georgi Stanojevski \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,37 +20,49 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Нема грешка, датотеката беше подигната успешно" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Не беше подигната датотека" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Не постои привремена папка" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Датотеки" @@ -113,76 +125,76 @@ msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' msgid "generating ZIP-file, it may take some time." msgstr "Се генерира ZIP фајлот, ќе треба извесно време." -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "Грешка при преземање" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "Затвои" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Чека" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} датотеки се подигаат" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:442 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Неправилно име на папка. Користењето на „Shared“ е резервирано за Owncloud" -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} датотеки скенирани" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "грешка при скенирање" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Име" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Големина" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Променето" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 папка" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 датотека" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} датотеки" @@ -194,27 +206,27 @@ msgstr "Ракување со датотеки" msgid "Maximum upload size" msgstr "Максимална големина за подигање" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "макс. можно:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Потребно за симнување повеќе-датотеки и папки." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Овозможи ZIP симнување " -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 е неограничено" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Максимална големина за внес на ZIP датотеки" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Сними" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 02844fd34d3..b31fabfc3eb 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -21,46 +21,58 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat, fail berjaya dimuat naik." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML " -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Sebahagian daripada fail telah dimuat naik. " -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Tiada fail yang dimuat naik" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Folder sementara hilang" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "fail" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Padam" @@ -68,39 +80,39 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "ganti" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "Batal" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "sedang menghasilkan fail ZIP, mungkin mengambil sedikit masa." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Tutup" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Dalam proses" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nama " -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Saiz" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -195,27 +207,27 @@ msgstr "Pengendalian fail" msgid "Maximum upload size" msgstr "Saiz maksimum muat naik" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maksimum:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Diperlukan untuk muatturun fail pelbagai " -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktifkan muatturun ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 adalah tanpa had" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Saiz maksimum input untuk fail ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Simpan" @@ -243,28 +255,28 @@ msgstr "Muat naik" msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Muat turun" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Muat naik terlalu besar" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 58b1183863d..56c1c676c8e 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 17:25+0000\n" -"Last-Translator: espenbye \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -26,37 +26,49 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Det er ingen feil. Filen ble lastet opp." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Filstørrelsen overskrider maksgrensen på MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Filopplastningen ble bare delvis gjennomført" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen fil ble lastet opp" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" @@ -200,27 +212,27 @@ msgstr "Filhåndtering" msgid "Maximum upload size" msgstr "Maksimum opplastingsstørrelse" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. mulige:" -#: templates/admin.php:12 +#: templates/admin.php:15 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:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktiver nedlasting av ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 er ubegrenset" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse på ZIP-filer" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Lagre" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index bb78a69078c..6ad2ac46570 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 09:15+0000\n" -"Last-Translator: Len \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -28,46 +28,58 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Geen fout opgetreden, bestand successvol geupload." -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is slechts gedeeltelijk geupload" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Geen bestand geüpload" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Een tijdelijke map mist" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Bestanden" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Stop delen" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Verwijder" @@ -75,39 +87,39 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "vervang" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "verving {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "delen gestopt {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "verwijderde {files}" @@ -117,80 +129,80 @@ msgid "" "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "aanmaken ZIP-file, dit kan enige tijd duren." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Sluit" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Wachten" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} bestanden aan het uploaden" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Folder naam niet toegestaan. Het gebruik van \"Shared\" is aan Owncloud voorbehouden" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} bestanden gescanned" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "Fout tijdens het scannen" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Naam" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 map" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 bestand" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} bestanden" @@ -202,27 +214,27 @@ msgstr "Bestand" msgid "Maximum upload size" msgstr "Maximale bestandsgrootte voor uploads" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. mogelijk: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Nodig voor meerdere bestanden en mappen downloads." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Zet ZIP-download aan" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 is ongelimiteerd" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximale grootte voor ZIP bestanden" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Opslaan" @@ -250,28 +262,28 @@ msgstr "Upload" msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Download" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Bestanden te groot" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 4fb42612d82..e9aca8b6874 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -19,46 +19,58 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Slett" @@ -66,39 +78,39 @@ msgstr "Slett" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Lukk" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Namn" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Storleik" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Endra" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -193,27 +205,27 @@ msgstr "" msgid "Maximum upload size" msgstr "Maksimal opplastingsstorleik" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Lagre" @@ -241,28 +253,28 @@ msgstr "Last opp" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Last ned" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:105 +#: templates/index.php:106 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 større enn maksgrensa til denne tenaren." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index a433382c7ce..abbd15f4a27 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -18,46 +18,58 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fichièrs" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Non parteja" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Escafa" @@ -65,39 +77,39 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "remplaça" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "anulla" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "defar" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Fichièr ZIP a se far, aquò pòt trigar un briu." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet." -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Error d'amontcargar" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Al esperar" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "error pendant l'exploracion" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nom" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Talha" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificat" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -192,27 +204,27 @@ msgstr "Manejament de fichièr" msgid "Maximum upload size" msgstr "Talha maximum d'amontcargament" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. possible: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Requesit per avalcargar gropat de fichièrs e dorsièr" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Activa l'avalcargament de ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 es pas limitat" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Talha maximum de dintrada per fichièrs ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Enregistra" @@ -240,28 +252,28 @@ msgstr "Amontcarga" msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 8c9563a58e4..4f17a070898 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 10:15+0000\n" -"Last-Translator: Thomasso \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -24,46 +24,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Przesłano plik" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Rozmiar przesłanego pliku przekracza maksymalną wartość dyrektywy upload_max_filesize, zawartą formularzu HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Plik przesłano tylko częściowo" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nie przesłano żadnego pliku" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Brak katalogu tymczasowego" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Pliki" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Nie udostępniaj" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Usuwa element" @@ -71,39 +83,39 @@ msgstr "Usuwa element" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "zastap" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "zastąpiony {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "wróć" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiony {new_name} z {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "Udostępniane wstrzymane {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "usunięto {files}" @@ -113,80 +125,80 @@ msgid "" "allowed." msgstr "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'są niedozwolone." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Generowanie pliku ZIP, może potrwać pewien czas." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Zamknij" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Oczekujące" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 plik wczytany" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} przesyłanie plików" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Błędna nazwa folderu. Nazwa \"Shared\" jest zarezerwowana dla Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} pliki skanowane" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "Wystąpił błąd podczas skanowania" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nazwa" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Rozmiar" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 folder" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 plik" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} pliki" @@ -198,27 +210,27 @@ msgstr "Zarządzanie plikami" msgid "Maximum upload size" msgstr "Maksymalny rozmiar wysyłanego pliku" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. możliwych" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Wymagany do pobierania wielu plików i folderów" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Włącz pobieranie ZIP-paczki" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 jest nielimitowane" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksymalna wielkość pliku wejściowego ZIP " -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Zapisz" @@ -246,28 +258,28 @@ msgstr "Prześlij" msgid "Cancel upload" msgstr "Przestań wysyłać" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Brak zawartości. Proszę wysłać pliki!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Pobiera element" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Wysyłany plik ma za duży rozmiar" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 2e1909d5c9f..84d6007fd24 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -17,46 +17,58 @@ msgstr "" "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/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Zapisz" @@ -239,28 +251,28 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 91ecfae55f0..6be8c7ed849 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-01 23:23+0000\n" -"Last-Translator: FredMaranhao \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -25,46 +25,58 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Não houve nenhum erro, o arquivo foi transferido com sucesso" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi transferido parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nenhum arquivo foi transferido" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Arquivos" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Descompartilhar" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Excluir" @@ -72,39 +84,39 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "substituir" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "substituído {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "desfazer" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "{files} não compartilhados" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "{files} apagados" @@ -114,80 +126,80 @@ msgid "" "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "gerando arquivo ZIP, isso pode levar um tempo." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Fechar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendente" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "Enviando {count} arquivos" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome de pasta inválido. O nome \"Shared\" é reservado pelo Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} arquivos scaneados" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "erro durante verificação" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Tamanho" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} arquivos" @@ -199,27 +211,27 @@ msgstr "Tratamento de Arquivo" msgid "Maximum upload size" msgstr "Tamanho máximo para carregar" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. possível:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necessário para multiplos arquivos e diretório de downloads." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar ZIP-download" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 para ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamanho máximo para arquivo ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salvar" @@ -247,28 +259,28 @@ msgstr "Carregar" msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Baixar" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Arquivo muito grande" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 8628e63a4de..484929c5765 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 00:41+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -22,46 +22,58 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Sem erro, ficheiro enviado com sucesso" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulário HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado só foi enviado parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Não foi enviado nenhum ficheiro" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta uma pasta temporária" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Apagar" @@ -69,39 +81,39 @@ msgstr "Apagar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "substituir" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "Sugira um nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "{new_name} substituido" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "desfazer" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "{files} não partilhado(s)" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "{files} eliminado(s)" @@ -111,80 +123,80 @@ msgid "" "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "a gerar o ficheiro ZIP, poderá demorar algum tempo." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Erro no envio" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Fechar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendente" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "A carregar {count} ficheiros" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "O envio foi cancelado." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome de pasta inválido! O uso de \"Shared\" (Partilhado) está reservado pelo OwnCloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ficheiros analisados" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "erro ao analisar" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Tamanho" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ficheiros" @@ -196,27 +208,27 @@ msgstr "Manuseamento de ficheiros" msgid "Maximum upload size" msgstr "Tamanho máximo de envio" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. possivel: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necessário para descarregamento múltiplo de ficheiros e pastas" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Permitir descarregar em ficheiro ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 é ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamanho máximo para ficheiros ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Guardar" @@ -244,28 +256,28 @@ msgstr "Enviar" msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Transferir" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Envio muito grande" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que está a tentar enviar excedem o tamanho máximo de envio permitido neste servidor." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index d61dc617703..253addeec6e 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 00:09+0000\n" -"Last-Translator: laurentiucristescu \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -22,37 +22,49 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Nicio eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: " -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Niciun fișier încărcat" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fișiere" @@ -196,27 +208,27 @@ msgstr "Manipulare fișiere" msgid "Maximum upload size" msgstr "Dimensiune maximă admisă la încărcare" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. posibil:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necesar pentru descărcarea mai multor fișiere și a dosarelor" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Activează descărcare fișiere compresate" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 e nelimitat" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Dimensiunea maximă de intrare pentru fișiere compresate" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salvare" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 100c8901c66..b972deece11 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 15:47+0000\n" -"Last-Translator: sam002 \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -27,37 +27,49 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Файл успешно загружен" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер установленный upload_max_filesize в php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Файл был загружен не полностью" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Невозможно найти временную папку" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Файлы" @@ -120,76 +132,76 @@ msgstr "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '? msgid "generating ZIP-file, it may take some time." msgstr "создание ZIP-файла, это может занять некоторое время." -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не удается загрузить файл размером 0 байт в каталог" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "Закрыть" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Ожидание" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} файлов загружается" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:442 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Не правильное имя папки. Имя \"Shared\" резервировано в Owncloud" -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} файлов просканировано" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "ошибка во время санирования" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Название" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Размер" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Изменён" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 папка" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 файл" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} файлов" @@ -201,27 +213,27 @@ msgstr "Управление файлами" msgid "Maximum upload size" msgstr "Максимальный размер загружаемого файла" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "макс. возможно: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Требуется для скачивания нескольких файлов и папок" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Включить ZIP-скачивание" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 - без ограничений" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Максимальный исходный размер для ZIP файлов" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Сохранить" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index acd6779fcd6..5b2f03f6c2a 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 07:59+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,37 +19,49 @@ msgstr "" "Language: ru_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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ошибка отсутствует, файл загружен успешно." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Размер загруженного" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Загружаемый файл был загружен частично" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Отсутствует временная папка" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Не удалось записать на диск" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Файлы" @@ -112,76 +124,76 @@ msgstr "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '? msgid "generating ZIP-file, it may take some time." msgstr "Создание ZIP-файла, это может занять некоторое время." -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "Закрыть" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Ожидающий решения" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "загрузка 1 файла" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{количество} загружено файлов" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Загрузка отменена" -#: js/files.js:442 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." -#: js/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Некорректное имя папки. Нименование \"Опубликовано\" зарезервировано ownCloud" -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{количество} файлов отсканировано" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "ошибка при сканировании" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Имя" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Размер" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Изменен" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 папка" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 файл" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{количество} файлов" @@ -193,27 +205,27 @@ msgstr "Работа с файлами" msgid "Maximum upload size" msgstr "Максимальный размер загружаемого файла" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "Максимально возможный" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Необходимо для множественной загрузки." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Включение ZIP-загрузки" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 без ограничений" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Максимальный размер входящих ZIP-файлов " -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Сохранить" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 0f0bb6776b0..d8a1cb29c9b 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -19,46 +19,58 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "නිවැරදි ව ගොනුව උඩුගත කෙරිනි" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "කිසිදු ගොනවක් උඩුගත නොවිනි" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් සොයාගත නොහැක" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ගොනු" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "නොබෙදු" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "මකන්න" @@ -66,39 +78,39 @@ msgstr "මකන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "ප්‍රතිස්ථාපනය කරන්න" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "නමක් යෝජනා කරන්න" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "අත් හරින්න" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "ගොනුවක් සෑදෙමින් පවතී. කෙටි වේලාවක් ගත විය හැක" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "උඩුගත කිරීමේ දෝශයක්" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "වසන්න" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "පරීක්ෂා කිරීමේදී දෝෂයක්" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "නම" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -193,27 +205,27 @@ msgstr "ගොනු පරිහරණය" msgid "Maximum upload size" msgstr "උඩුගත කිරීමක උපරිම ප්‍රමාණය" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "හැකි උපරිමය:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "බහු-ගොනු හා ෆොල්ඩර බාගත කිරීමට අවශ්‍යයි" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-බාගත කිරීම් සක්‍රිය කරන්න" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 යනු සීමාවක් නැති බවය" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP ගොනු සඳහා දැමිය හැකි උපරිම විශාලතවය" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "සුරකින්න" @@ -241,28 +253,28 @@ msgstr "උඩුගත කිරීම" msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "බාගත කිරීම" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index d55899f3b3e..9ae8154e9c1 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 16:18+0000\n" -"Last-Translator: martin \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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,46 +21,58 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Nahrávaný súbor presiahol MAX_FILE_SIZE direktívu, ktorá bola špecifikovaná v HTML formulári" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Nahrávaný súbor bol iba čiastočne nahraný" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Žiaden súbor nebol nahraný" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Chýbajúci dočasný priečinok" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Súbory" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Nezdielať" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Odstrániť" @@ -68,39 +80,39 @@ msgstr "Odstrániť" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "prepísaný {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "zdieľanie zrušené pre {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "zmazané {files}" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "generujem ZIP-súbor, môže to chvíľu trvať." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Chyba odosielania" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Zavrieť" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Čaká sa" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} súborov odosielaných" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Odosielanie zrušené" -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nesprávne meno adresára. Použitie slova \"Shared\" (Zdieľané) je vyhradené službou ownCloud." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} súborov prehľadaných" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "chyba počas kontroly" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Meno" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Veľkosť" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Upravené" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 súbor" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} súborov" @@ -195,27 +207,27 @@ msgstr "Nastavenie správanie k súborom" msgid "Maximum upload size" msgstr "Maximálna veľkosť odosielaného súboru" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "najväčšie možné:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Vyžadované pre sťahovanie viacerých súborov a adresárov." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Povoliť sťahovanie ZIP súborov" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 znamená neobmedzené" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Najväčšia veľkosť ZIP súborov" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Uložiť" @@ -243,28 +255,28 @@ msgstr "Odoslať" msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Stiahnuť" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Odosielaný súbor je príliš veľký" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Práve prehliadané" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index db703c7acc4..5fb0f67d9db 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-09 00:11+0100\n" -"PO-Revision-Date: 2012-12-07 23:34+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -21,46 +21,58 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena brez napak." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Naložena datoteka presega velikost, ki jo določa parameter MAX_FILE_SIZE v HTML obrazcu" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je le delno naložena" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nobena datoteka ni bila naložena" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Odstrani iz souporabe" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Izbriši" @@ -68,39 +80,39 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "prekliči" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "zamenjano je ime {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "zamenjano ime {new_name} z imenom {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "odstranjeno iz souporabe {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "izbrisano {files}" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: js/files.js:184 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Ustvarjanje datoteke ZIP. To lahko traja nekaj časa." -#: js/files.js:219 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Pošiljanje ni mogoče, saj gre za mapo, ali pa je datoteka velikosti 0 bajtov." -#: js/files.js:219 +#: js/files.js:212 msgid "Upload Error" msgstr "Napaka med nalaganjem" -#: js/files.js:236 +#: js/files.js:229 msgid "Close" msgstr "Zapri" -#: js/files.js:255 js/files.js:369 js/files.js:399 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "V čakanju ..." -#: js/files.js:275 +#: js/files.js:268 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/files.js:278 js/files.js:332 js/files.js:347 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "nalagam {count} datotek" -#: js/files.js:350 js/files.js:383 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/files.js:452 +#: js/files.js:445 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/files.js:524 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Neveljavno ime datoteke. Uporaba mape \"Share\" je rezervirana za ownCloud." -#: js/files.js:705 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} files scanned" -#: js/files.js:713 +#: js/files.js:707 msgid "error while scanning" msgstr "napaka med pregledovanjem datotek" -#: js/files.js:786 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Ime" -#: js/files.js:787 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Velikost" -#: js/files.js:788 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:815 +#: js/files.js:801 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:817 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:825 +#: js/files.js:811 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:827 +#: js/files.js:813 msgid "{count} files" msgstr "{count} datotek" @@ -195,27 +207,27 @@ msgstr "Upravljanje z datotekami" msgid "Maximum upload size" msgstr "Največja velikost za pošiljanja" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "največ mogoče:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Uporabljeno za prenos več datotek in map." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Omogoči prejemanje arhivov ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 je neskončno" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Največja vhodna velikost za datoteke ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Shrani" @@ -243,28 +255,28 @@ msgstr "Pošlji" msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Tukaj ni ničesar. Naložite kaj!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Prejmi" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Nalaganje ni mogoče, ker je preveliko" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite naložiti, presegajo največjo dovoljeno velikost na tem strežniku." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index c3bd0a63259..efe363e09ed 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -17,46 +17,58 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -239,28 +251,28 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 2eac1068a25..19a9c5e5c01 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 18:27+0000\n" -"Last-Translator: Rancher \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,46 +20,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Датотеке" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Укини дељење" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Обриши" @@ -67,39 +79,39 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "замени" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "предложи назив" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "откажи" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "замењено {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "опозови" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "укинуто дељење {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "обрисано {files}" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "правим ZIP датотеку…" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Грешка при отпремању" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Затвори" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "На чекању" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "Отпремам {count} датотеке/а" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Неисправан назив фасцикле. „Дељено“ користи Оунклауд." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "Скенирано датотека: {count}" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "грешка при скенирању" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Назив" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Величина" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Измењено" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 датотека" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} датотеке/а" @@ -194,27 +206,27 @@ msgstr "Управљање датотекама" msgid "Maximum upload size" msgstr "Највећа величина датотеке" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "највећа величина:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Неопходно за преузимање вишеделних датотека и фасцикли." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Омогући преузимање у ZIP-у" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 је неограничено" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Највећа величина ZIP датотека" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Сачувај" @@ -242,28 +254,28 @@ msgstr "Отпреми" msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Преузми" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index fbaee12094b..be81ff388b3 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -18,46 +18,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fajlovi" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Obriši" @@ -65,39 +77,39 @@ msgstr "Obriši" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Zatvori" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Ime" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Veličina" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -192,27 +204,27 @@ msgstr "" msgid "Maximum upload size" msgstr "Maksimalna veličina pošiljke" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Snimi" @@ -240,28 +252,28 @@ msgstr "Pošalji" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 7c197ea6056..4a79d0f5ae8 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 19:45+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -23,46 +23,58 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen fil blev uppladdad" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Saknar en tillfällig mapp" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Sluta dela" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Radera" @@ -70,39 +82,39 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "ersätt" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "ersatt {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "ångra" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "stoppad delning {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "raderade {files}" @@ -112,80 +124,80 @@ msgid "" "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "genererar ZIP-fil, det kan ta lite tid." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes." -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Stäng" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Väntar" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} filer laddas upp" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Ordet \"Delad\" är reserverat av ownCloud." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} filer skannade" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "fel vid skanning" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Namn" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Storlek" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Ändrad" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 fil" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} filer" @@ -197,27 +209,27 @@ msgstr "Filhantering" msgid "Maximum upload size" msgstr "Maximal storlek att ladda upp" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. möjligt:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Krävs för nerladdning av flera mappar och filer." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktivera ZIP-nerladdning" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 är oändligt" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Största tillåtna storlek för ZIP-filer" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Spara" @@ -245,28 +257,28 @@ msgstr "Ladda upp" msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index b6abb44c847..93428d36512 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -18,46 +18,58 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "கோப்புகள்" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "அழிக்க" @@ -65,39 +77,39 @@ msgstr "அழிக்க" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "மாற்றிடுக" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "பெயரை பரிந்துரைக்க" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "இரத்து செய்க" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "மாற்றப்பட்டது {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "பகிரப்படாதது {கோப்புகள்}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "நீக்கப்பட்டது {கோப்புகள்}" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr " ZIP கோப்பு உருவாக்கப்படுகின்றது, இது சில நேரம் ஆகலாம்." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "பதிவேற்றல் வழு" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "மூடுக" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "செல்லுபடியற்ற கோப்புறை பெயர். \"பகிர்வின்\" பாவனை Owncloud இனால் ஒதுக்கப்பட்டுள்ளது" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "வருடும் போதான வழு" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "பெயர்" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "அளவு" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" @@ -192,27 +204,27 @@ msgstr "கோப்பு கையாளுதல்" msgid "Maximum upload size" msgstr "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு " -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "ஆகக் கூடியது:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "பல்வேறுப்பட்ட கோப்பு மற்றும் கோப்புறைகளை பதிவிறக்க தேவையானது." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP பதிவிறக்கலை இயலுமைப்படுத்துக" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ஆனது எல்லையற்றது" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP கோப்புகளுக்கான ஆகக்கூடிய உள்ளீட்டு அளவு" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "சேமிக்க" @@ -240,28 +252,28 @@ msgstr "பதிவேற்றுக" msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index ebbad65c865..5549dc3fb6f 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\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 2d7b4687cca..4fd7d1001d3 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,37 +17,49 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index d81bb73f7eb..2769003bb43 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\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 33dc2ce30a4..40abe6c394c 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\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 53424eaed43..258a5d43363 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\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 c25ceb6168c..d0aa4f25896 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\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 c03c9cf3914..60beb89ccae 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\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 d06767eaf18..1c58f2653a0 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\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 5be5f11d71d..50b651a22da 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\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 25ff49007c5..4193ec24760 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\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 cff6308811a..089217ef310 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 10:27+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,37 +19,49 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ที่อัพโหลดยังไม่ได้ถูกอัพโหลดอย่างสมบูรณ์" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ยังไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "แฟ้มเอกสารชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ไฟล์" @@ -193,27 +205,27 @@ msgstr "การจัดกาไฟล์" msgid "Maximum upload size" msgstr "ขนาดไฟล์สูงสุดที่อัพโหลดได้" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "จำนวนสูงสุดที่สามารถทำได้: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "จำเป็นต้องใช้สำหรับการดาวน์โหลดไฟล์พร้อมกันหลายๆไฟล์หรือดาวน์โหลดทั้งโฟลเดอร์" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "อนุญาตให้ดาวน์โหลดเป็นไฟล์ ZIP ได้" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 หมายถึงไม่จำกัด" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ขนาดไฟล์ ZIP สูงสุด" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "บันทึก" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index bfd4390738c..8651b858f78 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 11:23+0000\n" -"Last-Translator: Necdet Yücel \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -22,37 +22,49 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Bir hata yok, dosya başarıyla yüklendi" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Yüklenen dosyanın sadece bir kısmı yüklendi" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Hiç dosya yüklenmedi" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Geçici bir klasör eksik" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Diske yazılamadı" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Dosyalar" @@ -196,27 +208,27 @@ msgstr "Dosya taşıma" msgid "Maximum upload size" msgstr "Maksimum yükleme boyutu" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "mümkün olan en fazla: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Çoklu dosya ve dizin indirmesi için gerekli." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP indirmeyi aktif et" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 limitsiz demektir" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP dosyaları için en fazla girdi sayısı" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Kaydet" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index c37f23560d7..43a869f127f 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 10:32+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,46 +20,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Файли" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Заборонити доступ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Видалити" @@ -67,39 +79,39 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "заміна" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "запропонуйте назву" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "відміна" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "замінено {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "відмінити" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "неопубліковано {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "видалено {files}" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Створення ZIP-файлу, це може зайняти певний час." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Помилка завантаження" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Закрити" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Очікування" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} файлів завантажується" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Невірне ім'я каталогу. Використання \"Shared\" зарезервовано Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} файлів проскановано" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "помилка при скануванні" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Ім'я" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Розмір" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Змінено" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 папка" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 файл" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} файлів" @@ -194,27 +206,27 @@ msgstr "Робота з файлами" msgid "Maximum upload size" msgstr "Максимальний розмір відвантажень" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "макс.можливе:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Необхідно для мульти-файлового та каталогового завантаження." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Активувати ZIP-завантаження" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 є безліміт" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Максимальний розмір завантажуємого ZIP файлу" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Зберегти" @@ -242,28 +254,28 @@ msgstr "Відвантажити" msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Завантажити" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 2427e237dee..94bc4309220 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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,46 +21,58 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 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:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Kích thước những tập tin tải lên vượt quá MAX_FILE_SIZE đã được quy định" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Tập tin tải lên mới chỉ tải lên được một phần" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Không có tập tin nào được tải lên" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Không thể ghi " +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Tập tin" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Không chia sẽ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Xóa" @@ -68,39 +80,39 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "thay thế" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "hủy" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "đã thay thế {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "hủy chia sẽ {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "đã xóa {files}" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Tạo tập tin ZIP, điều này có thể làm mất một chút thời gian" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Đóng" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Chờ" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} tập tin đang tải lên" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:451 +#: js/files.js:445 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/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Tên thư mục không hợp lệ. Sử dụng \"Chia sẻ\" được dành riêng bởi Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} tập tin đã được quét" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "lỗi trong khi quét" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Tên" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} tập tin" @@ -195,27 +207,27 @@ msgstr "Xử lý tập tin" msgid "Maximum upload size" msgstr "Kích thước tối đa " -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "tối đa cho phép:" -#: templates/admin.php:12 +#: templates/admin.php:15 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:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Cho phép ZIP-download" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 là không giới hạn" -#: templates/admin.php:19 +#: templates/admin.php:22 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:23 +#: templates/admin.php:26 msgid "Save" msgstr "Lưu" @@ -243,28 +255,28 @@ msgstr "Tải lên" msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:57 +#: templates/index.php:58 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:71 +#: templates/index.php:72 msgid "Download" msgstr "Tải xuống" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:105 +#: templates/index.php:106 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:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 7c74914a97f..6647cd7ae1b 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,58 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "没有任何错误,文件上传成功了" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "文件只有部分被上传" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "没有上传完成的文件" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "丢失了一个临时文件夹" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "写磁盘失败" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "文件" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "取消共享" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "删除" @@ -66,39 +78,39 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "替换" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "推荐名称" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "取消" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "已替换 {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "撤销" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "已用 {old_name} 替换 {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "未分享的 {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "已删除的 {files}" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "正在生成ZIP文件,这可能需要点时间" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大小为0" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "关闭" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pending" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} 个文件正在上传" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传。关闭页面会取消上传。" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} 个文件已扫描" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "扫描出错" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "名字" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "大小" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "修改日期" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 个文件" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} 个文件" @@ -193,27 +205,27 @@ msgstr "文件处理中" msgid "Maximum upload size" msgstr "最大上传大小" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "最大可能" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "需要多文件和文件夹下载." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "支持ZIP下载" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0是无限的" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "最大的ZIP文件输入大小" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "保存" @@ -241,28 +253,28 @@ msgstr "上传" msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "这里没有东西.上传点什么!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "下载" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "上传的文件太大了" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "你正在试图上传的文件超过了此服务器支持的最大的文件大小." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "正在扫描文件,请稍候." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "正在扫描" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 0493f0631c1..535ed925f02 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 00:57+0000\n" -"Last-Translator: hanfeng \n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,46 +22,58 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "没有发生错误,文件上传成功。" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "只上传了文件的一部分" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "文件没有上传" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "写入磁盘失败" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "文件" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "取消分享" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "删除" @@ -69,39 +81,39 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "替换" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "建议名称" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "取消" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "替换 {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "撤销" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "取消了共享 {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "删除了 {files}" @@ -111,80 +123,80 @@ msgid "" "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "正在生成 ZIP 文件,可能需要一些时间" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "关闭" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "操作等待中" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} 个文件上传中" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "无效的文件夹名称。”Shared“ 是 Owncloud 保留字符。" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} 个文件已扫描。" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "扫描时出错" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "名称" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "大小" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "修改日期" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 个文件" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} 个文件" @@ -196,27 +208,27 @@ msgstr "文件处理" msgid "Maximum upload size" msgstr "最大上传大小" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "最大允许: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "多文件和文件夹下载需要此项。" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "启用 ZIP 下载" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 为无限制" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP 文件的最大输入大小" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "保存" @@ -244,28 +256,28 @@ msgstr "上传" msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "下载" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index c45ea5afdd4..7bd0e19490f 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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,46 +17,58 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -239,28 +251,28 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 4e18f079575..0e7eccd07d9 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+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" @@ -21,46 +21,58 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "無錯誤,檔案上傳成功" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "只有部分檔案被上傳" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "無已上傳檔案" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "遺失暫存資料夾" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "檔案" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "取消共享" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "刪除" @@ -68,39 +80,39 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "取代" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "取消" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "已取代 {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "復原" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "產生壓縮檔, 它可能需要一段時間." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "上傳發生錯誤" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "關閉" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} 個檔案正在上傳" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中. 離開此頁面將會取消上傳." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "無效的資料夾名稱. \"Shared\" 名稱已被 Owncloud 所保留使用" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "掃描時發生錯誤" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "名稱" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "大小" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "修改" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} 個檔案" @@ -195,27 +207,27 @@ msgstr "檔案處理" msgid "Maximum upload size" msgstr "最大上傳容量" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "最大允許: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "針對多檔案和目錄下載是必填的" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "啟用 Zip 下載" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0代表沒有限制" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "針對ZIP檔案最大輸入大小" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "儲存" @@ -243,28 +255,28 @@ msgstr "上傳" msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "沒有任何東西。請上傳內容!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "下載" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "你試圖上傳的檔案已超過伺服器的最大容量限制。 " -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "目前掃描" diff --git a/l10n/zu_ZA/files.po b/l10n/zu_ZA/files.po index 078ee8781ef..86f620523c9 100644 --- a/l10n/zu_ZA/files.po +++ b/l10n/zu_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,58 @@ msgstr "" "Language: zu_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -239,28 +251,28 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 29c38827566..4b1efe35f67 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -53,7 +53,11 @@ "Name" => "名前", "Groups" => "グループ", "Create" => "作成", +"Default Storage" => "デフォルトストレージ", +"Unlimited" => "無制限", "Other" => "その他", "Group Admin" => "グループ管理者", +"Storage" => "ストレージ", +"Default" => "デフォルト", "Delete" => "削除" ); -- cgit v1.2.3 From de496ed16dfff4905f1b1eddc9748c55d4ce2f7f Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Fri, 4 Jan 2013 13:47:47 +0100 Subject: remove initial iframe, is added automatically by jquery upload mechanism --- apps/files/templates/index.php | 2 -- 1 file changed, 2 deletions(-) (limited to 'apps') diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index edf048c7e13..3bcb865ccdb 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -33,8 +33,6 @@ - -
-- cgit v1.2.3 From 9cd7bb2c8d7b7207a3c67e09158641b0c33e631d Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Fri, 4 Jan 2013 13:48:29 +0100 Subject: reverse z-index of a and input to make upload work again in ie8/9 --- apps/files/css/files.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/files/css/files.css b/apps/files/css/files.css index f292c5c8c3f..36a1e5c954b 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -28,7 +28,7 @@ } #upload a { position:relative; display:block; width:100%; height:27px; - cursor:pointer; z-index:1000; + cursor:pointer; z-index:10; background-image:url('%webroot%/core/img/actions/upload.svg'); background-repeat:no-repeat; background-position:7px 6px; @@ -39,7 +39,7 @@ left:0; top:0; width:28px; height:27px; padding:0; font-size:1em; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; - z-index:-1; position:relative; cursor:pointer; overflow:hidden; + z-index:20; position:relative; cursor:pointer; overflow:hidden; } #uploadprogresswrapper { position:absolute; right:13.5em; top:0em; } -- cgit v1.2.3 From 934d9dcc42e2d7281e04c6acecdd53ae2a03b25f Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 5 Jan 2013 00:03:58 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 3 ++ apps/files/l10n/cs_CZ.php | 1 + apps/files/l10n/da.php | 1 + apps/files/l10n/de.php | 3 ++ apps/files/l10n/de_DE.php | 3 ++ apps/files/l10n/el.php | 1 + apps/files/l10n/eo.php | 1 + apps/files/l10n/es.php | 3 ++ apps/files/l10n/es_AR.php | 3 ++ apps/files/l10n/et_EE.php | 1 + apps/files/l10n/eu.php | 1 + apps/files/l10n/fa.php | 1 + apps/files/l10n/fi_FI.php | 3 ++ apps/files/l10n/fr.php | 1 + apps/files/l10n/gl.php | 1 + apps/files/l10n/he.php | 1 + apps/files/l10n/hu_HU.php | 1 + apps/files/l10n/it.php | 3 ++ apps/files/l10n/ja_JP.php | 1 + apps/files/l10n/ko.php | 1 + apps/files/l10n/mk.php | 1 + apps/files/l10n/ms_MY.php | 1 + apps/files/l10n/nb_NO.php | 1 + apps/files/l10n/nl.php | 1 + apps/files/l10n/pl.php | 1 + apps/files/l10n/pt_BR.php | 1 + apps/files/l10n/pt_PT.php | 3 ++ apps/files/l10n/ro.php | 1 + apps/files/l10n/ru.php | 1 + apps/files/l10n/ru_RU.php | 1 + apps/files/l10n/si_LK.php | 1 + apps/files/l10n/sk_SK.php | 1 + apps/files/l10n/sl.php | 1 + apps/files/l10n/sv.php | 1 + apps/files/l10n/ta_LK.php | 1 + apps/files/l10n/th_TH.php | 1 + apps/files/l10n/tr.php | 1 + apps/files/l10n/uk.php | 1 + apps/files/l10n/vi.php | 1 + apps/files/l10n/zh_CN.GB2312.php | 1 + apps/files/l10n/zh_CN.php | 1 + apps/files/l10n/zh_TW.php | 1 + core/l10n/es_AR.php | 8 ++++ l10n/ca/files.po | 13 +++--- l10n/cs_CZ/files.po | 6 +-- l10n/da/files.po | 6 +-- l10n/de/files.po | 13 +++--- l10n/de_DE/files.po | 14 +++---- l10n/el/files.po | 6 +-- l10n/eo/files.po | 6 +-- l10n/es/files.po | 13 +++--- l10n/es_AR/core.po | 80 ++++++++++++++++++------------------- l10n/es_AR/files.po | 14 +++---- l10n/et_EE/files.po | 6 +-- l10n/eu/files.po | 6 +-- l10n/fa/files.po | 6 +-- l10n/fi_FI/files.po | 14 +++---- l10n/fr/files.po | 6 +-- l10n/gl/files.po | 6 +-- l10n/he/files.po | 6 +-- l10n/hu_HU/files.po | 6 +-- l10n/it/files.po | 14 +++---- l10n/ja_JP/files.po | 6 +-- l10n/ko/files.po | 6 +-- l10n/mk/files.po | 6 +-- l10n/ms_MY/files.po | 6 +-- l10n/nb_NO/files.po | 6 +-- l10n/nl/files.po | 6 +-- l10n/pl/files.po | 6 +-- l10n/pt_BR/files.po | 6 +-- l10n/pt_PT/files.po | 14 +++---- l10n/ro/files.po | 6 +-- l10n/ru/files.po | 6 +-- l10n/ru_RU/files.po | 6 +-- l10n/si_LK/files.po | 6 +-- l10n/sk_SK/files.po | 6 +-- l10n/sl/files.po | 6 +-- l10n/sv/files.po | 6 +-- l10n/ta_LK/files.po | 6 +-- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 6 +-- l10n/tr/files.po | 6 +-- l10n/uk/files.po | 6 +-- l10n/vi/files.po | 6 +-- l10n/zh_CN.GB2312/files.po | 6 +-- l10n/zh_CN/files.po | 6 +-- l10n/zh_TW/files.po | 6 +-- 96 files changed, 274 insertions(+), 205 deletions(-) (limited to 'apps') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 0866d97bd74..981b8ec7ec9 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -1,4 +1,5 @@ "No s'ha carregat cap fitxer. Error desconegut", "There is no error, the file uploaded with success" => "El fitxer s'ha pujat correctament", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML", @@ -6,6 +7,8 @@ "No file was uploaded" => "El fitxer no s'ha pujat", "Missing a temporary folder" => "S'ha perdut un fitxer temporal", "Failed to write to disk" => "Ha fallat en escriure al disc", +"Not enough space available" => "No hi ha prou espai disponible", +"Invalid directory." => "Directori no vàlid.", "Files" => "Fitxers", "Unshare" => "Deixa de compartir", "Delete" => "Suprimeix", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 12eb79a1a10..958cb930e7d 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,4 +1,5 @@ "Soubor nebyl odeslán. Neznámá chyba", "There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 05404d27af7..e2fd0c8c18f 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -1,4 +1,5 @@ "Ingen fil blev uploadet. Ukendt fejl.", "There is no error, the file uploaded with success" => "Der er ingen fejl, filen blev uploadet med success", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 8073ee28da5..5f4778eb867 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -1,4 +1,5 @@ "Keine Datei hochgeladen. Unbekannter Fehler", "There is no error, the file uploaded with success" => "Datei fehlerfrei hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde", @@ -6,6 +7,8 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Temporärer Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", +"Not enough space available" => "Nicht genug Speicherplatz verfügbar", +"Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", "Delete" => "Löschen", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 6a9730e94b0..3ba32229070 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -1,4 +1,5 @@ "Keine Datei hochgeladen. Unbekannter Fehler", "There is no error, the file uploaded with success" => "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde", @@ -6,6 +7,8 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Der temporäre Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", +"Not enough space available" => "Nicht genug Speicher verfügbar", +"Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", "Delete" => "Löschen", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index fce7a07c948..60be0bc7aac 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -1,4 +1,5 @@ "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα", "There is no error, the file uploaded with success" => "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index bdde6d0fece..c371334933d 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -1,4 +1,5 @@ "Neniu dosiero alŝutiĝis. Nekonata eraro.", "There is no error, the file uploaded with success" => "Ne estas eraro, la dosiero alŝutiĝis sukcese", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 40b9ea9f23f..2b9bdeeece9 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -1,4 +1,5 @@ "Fallo no se subió el fichero", "There is no error, the file uploaded with success" => "No se ha producido ningún error, el archivo se ha subido con éxito", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML", @@ -6,6 +7,8 @@ "No file was uploaded" => "No se ha subido ningún archivo", "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "La escritura en disco ha fallado", +"Not enough space available" => "No hay suficiente espacio disponible", +"Invalid directory." => "Directorio invalido.", "Files" => "Archivos", "Unshare" => "Dejar de compartir", "Delete" => "Eliminar", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index e514d8de59a..9375954c02e 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -1,4 +1,5 @@ "El archivo no fue subido. Error desconocido", "There is no error, the file uploaded with success" => "No se han producido errores, el archivo se ha subido con éxito", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML", @@ -6,6 +7,8 @@ "No file was uploaded" => "El archivo no fue subido", "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "Error al escribir en el disco", +"Not enough space available" => "No hay suficiente espacio disponible", +"Invalid directory." => "Directorio invalido.", "Files" => "Archivos", "Unshare" => "Dejar de compartir", "Delete" => "Borrar", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 0fddbfdca46..0dfc7b5bcd5 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -1,4 +1,5 @@ "Ühtegi faili ei laetud üles. Tundmatu viga", "There is no error, the file uploaded with success" => "Ühtegi viga pole, fail on üles laetud", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse", "The uploaded file was only partially uploaded" => "Fail laeti üles ainult osaliselt", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 0b223b93d8c..e141fa65726 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -1,4 +1,5 @@ "Ez da fitxategirik igo. Errore ezezaguna", "There is no error, the file uploaded with success" => "Ez da arazorik izan, fitxategia ongi igo da", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 8284593e886..062df6a56b3 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -1,4 +1,5 @@ "هیچ فایلی آپلود نشد.خطای ناشناس", "There is no error, the file uploaded with success" => "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE", "The uploaded file was only partially uploaded" => "مقدار کمی از فایل بارگذاری شده", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 772dabbb392..00f8ded5163 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -1,10 +1,13 @@ "Tiedostoa ei lähetetty. Tuntematon virhe", "There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan", "The uploaded file was only partially uploaded" => "Tiedoston lähetys onnistui vain osittain", "No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty", "Missing a temporary folder" => "Väliaikaiskansiota ei ole olemassa", "Failed to write to disk" => "Levylle kirjoitus epäonnistui", +"Not enough space available" => "Tilaa ei ole riittävästi", +"Invalid directory." => "Virheellinen kansio.", "Files" => "Tiedostot", "Unshare" => "Peru jakaminen", "Delete" => "Poista", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 28b063e3b46..8ffb0d351f7 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -1,4 +1,5 @@ "Aucun fichier n'a été chargé. Erreur inconnue", "There is no error, the file uploaded with success" => "Aucune erreur, le fichier a été téléversé avec succès", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 5c50e3764cf..0071b5b7dd2 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,4 +1,5 @@ "Non se subiu ningún ficheiro. Erro descoñecido.", "There is no error, the file uploaded with success" => "Non hai erros. O ficheiro enviouse correctamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 4c73493211d..971933f2310 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -1,4 +1,5 @@ "לא הועלה קובץ. טעות בלתי מזוהה.", "There is no error, the file uploaded with success" => "לא אירעה תקלה, הקבצים הועלו בהצלחה", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index f797c67b986..cb06fe087e6 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -1,4 +1,5 @@ "Nem történt feltöltés. Ismeretlen hiba", "There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra.", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 90b34171220..6c7ca59774e 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -1,4 +1,5 @@ "Nessun file è stato inviato. Errore sconosciuto", "There is no error, the file uploaded with success" => "Non ci sono errori, file caricato con successo", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Il file caricato supera la direttiva upload_max_filesize in php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML", @@ -6,6 +7,8 @@ "No file was uploaded" => "Nessun file è stato caricato", "Missing a temporary folder" => "Cartella temporanea mancante", "Failed to write to disk" => "Scrittura su disco non riuscita", +"Not enough space available" => "Spazio disponibile insufficiente", +"Invalid directory." => "Cartella non valida.", "Files" => "File", "Unshare" => "Rimuovi condivisione", "Delete" => "Elimina", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 7b8c3ca4778..29f4fd4eafa 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -1,4 +1,5 @@ "ファイルは何もアップロードされていません。不明なエラー", "There is no error, the file uploaded with success" => "エラーはありません。ファイルのアップロードは成功しました", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "アップロードされたファイルはHTMLのフォームに設定されたMAX_FILE_SIZEに設定されたサイズを超えています", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 4b5d57dff92..d0a6d57538a 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -1,4 +1,5 @@ "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다", "There is no error, the file uploaded with success" => "업로드에 성공하였습니다.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "업로드한 파일이 HTML 문서에 지정한 MAX_FILE_SIZE보다 더 큼", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 1d22746156e..9eb11360fed 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -1,4 +1,5 @@ "Ниту еден фајл не се вчита. Непозната грешка", "There is no error, the file uploaded with success" => "Нема грешка, датотеката беше подигната успешно", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Подигнатата датотеката ја надминува MAX_FILE_SIZE директивата која беше поставена во HTML формата", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index d7756698d0c..7fa87840842 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -1,4 +1,5 @@ "Tiada fail dimuatnaik. Ralat tidak diketahui.", "There is no error, the file uploaded with success" => "Tiada ralat, fail berjaya dimuat naik.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML ", "The uploaded file was only partially uploaded" => "Sebahagian daripada fail telah dimuat naik. ", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index db54660ab1e..f97228ecd1b 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -1,4 +1,5 @@ "Ingen filer ble lastet opp. Ukjent feil.", "There is no error, the file uploaded with success" => "Det er ingen feil. Filen ble lastet opp.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Filstørrelsen overskrider maksgrensen på MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet", "The uploaded file was only partially uploaded" => "Filopplastningen ble bare delvis gjennomført", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 093a5430d53..998caabf9f5 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -1,4 +1,5 @@ "Er was geen bestand geladen. Onbekende fout", "There is no error, the file uploaded with success" => "Geen fout opgetreden, bestand successvol geupload.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 8051eae8c42..e485fdc6c3e 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -1,4 +1,5 @@ "Plik nie został załadowany. Nieznany błąd", "There is no error, the file uploaded with success" => "Przesłano plik", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Rozmiar przesłanego pliku przekracza maksymalną wartość dyrektywy upload_max_filesize, zawartą formularzu HTML", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 97e5c94fb31..5f266bd7cd4 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -1,4 +1,5 @@ "Nenhum arquivo foi transferido. Erro desconhecido", "There is no error, the file uploaded with success" => "Não houve nenhum erro, o arquivo foi transferido com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 8c90fd47714..36c9d6e62aa 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,4 +1,5 @@ "Nenhum ficheiro foi carregado. Erro desconhecido", "There is no error, the file uploaded with success" => "Sem erro, ficheiro enviado com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulário HTML", @@ -6,6 +7,8 @@ "No file was uploaded" => "Não foi enviado nenhum ficheiro", "Missing a temporary folder" => "Falta uma pasta temporária", "Failed to write to disk" => "Falhou a escrita no disco", +"Not enough space available" => "Espaço em disco insuficiente!", +"Invalid directory." => "Directório Inválido", "Files" => "Ficheiros", "Unshare" => "Deixar de partilhar", "Delete" => "Apagar", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 7244a6677a3..b09c8f39c8b 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -1,4 +1,5 @@ "Nici un fișier nu a fost încărcat. Eroare necunoscută", "There is no error, the file uploaded with success" => "Nicio eroare, fișierul a fost încărcat cu succes", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 4b6d0a8b151..403bd5c0982 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -1,4 +1,5 @@ "Файл не был загружен. Неизвестная ошибка", "There is no error, the file uploaded with success" => "Файл успешно загружен", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Файл превышает размер установленный upload_max_filesize в php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index bb701aac002..d7d3d37613a 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -1,4 +1,5 @@ "Файл не был загружен. Неизвестная ошибка", "There is no error, the file uploaded with success" => "Ошибка отсутствует, файл загружен успешно.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загруженного", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index e256075896f..be33077f811 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -1,4 +1,5 @@ "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්", "There is no error, the file uploaded with success" => "නිවැරදි ව ගොනුව උඩුගත කෙරිනි", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය", "The uploaded file was only partially uploaded" => "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 21d9710f6ba..1043e7ae9d9 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -1,4 +1,5 @@ "Žiaden súbor nebol odoslaný. Neznáma chyba", "There is no error, the file uploaded with success" => "Nenastala žiadna chyba, súbor bol úspešne nahraný", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Nahrávaný súbor presiahol MAX_FILE_SIZE direktívu, ktorá bola špecifikovaná v HTML formulári", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index c5ee6c422d5..f07751073c4 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -1,4 +1,5 @@ "Nobena datoteka ni naložena. Neznana napaka.", "There is no error, the file uploaded with success" => "Datoteka je uspešno naložena brez napak.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Naložena datoteka presega velikost, ki jo določa parameter MAX_FILE_SIZE v HTML obrazcu", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index bcc849242ac..7cef4e19c46 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -1,4 +1,5 @@ "Ingen fil uppladdad. Okänt fel", "There is no error, the file uploaded with success" => "Inga fel uppstod. Filen laddades upp utan problem", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 9399089bc78..b68ad8f02c6 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -1,4 +1,5 @@ "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு", "There is no error, the file uploaded with success" => "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது", "The uploaded file was only partially uploaded" => "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index bad817ab006..f6b3b1c56f1 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -1,4 +1,5 @@ "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ", "There is no error, the file uploaded with success" => "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 7cd3a82cd71..80182d8ec80 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,4 +1,5 @@ "Dosya yüklenmedi. Bilinmeyen hata", "There is no error, the file uploaded with success" => "Bir hata yok, dosya başarıyla yüklendi", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 00491bcc2d6..4daa2d628c7 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -1,4 +1,5 @@ "Не завантажено жодного файлу. Невідома помилка", "There is no error, the file uploaded with success" => "Файл успішно вивантажено без помилок.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 4f58e623178..b14186d9615 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -1,4 +1,5 @@ "Không có tập tin nào được tải lên. Lỗi không xác định", "There is no error, the file uploaded with success" => "Không có lỗi, các tập tin đã được tải lên thành công", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Kích thước những tập tin tải lên vượt quá MAX_FILE_SIZE đã được quy định", "The uploaded file was only partially uploaded" => "Tập tin tải lên mới chỉ tải lên được một phần", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index ccf0efff050..cad4b95c6aa 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ "没有上传文件。未知错误", "There is no error, the file uploaded with success" => "没有任何错误,文件上传成功了", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了HTML表单指定的MAX_FILE_SIZE", "The uploaded file was only partially uploaded" => "文件只有部分被上传", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 8db652f003e..1188c252922 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -1,4 +1,5 @@ "没有文件被上传。未知错误", "There is no error, the file uploaded with success" => "没有发生错误,文件上传成功。", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上传文件大小已超过php.ini中upload_max_filesize所规定的值", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 5333209eff7..7b55b547148 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,4 +1,5 @@ "沒有檔案被上傳. 未知的錯誤.", "There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制", "The uploaded file was only partially uploaded" => "只有部分檔案被上傳", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 2da7951b064..830281dabbe 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -1,4 +1,8 @@ "El usurario %s compartió un archivo con vos.", +"User %s shared a folder with you" => "El usurario %s compartió una carpeta con vos.", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s", "Category type not provided." => "Tipo de categoría no provisto. ", "No category to add?" => "¿Ninguna categoría para añadir?", "This category already exists: " => "Esta categoría ya existe: ", @@ -39,6 +43,8 @@ "Share with link" => "Compartir con link", "Password protect" => "Proteger con contraseña ", "Password" => "Contraseña", +"Email link to person" => "Enviar el link por e-mail.", +"Send" => "Enviar", "Set expiration date" => "Asignar fecha de vencimiento", "Expiration date" => "Fecha de vencimiento", "Share via email:" => "compartido a través de e-mail:", @@ -55,6 +61,8 @@ "Password protected" => "Protegido por contraseña", "Error unsetting expiration date" => "Error al remover la fecha de caducidad", "Error setting expiration date" => "Error al asignar fecha de vencimiento", +"Sending ..." => "Enviando...", +"Email sent" => "Email enviado", "ownCloud password reset" => "Restablecer contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}", "You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña", diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 5d01d8e1183..c3c57eb4cd1 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -8,13 +8,14 @@ # , 2012. # Josep Tomàs , 2012. # , 2011-2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 14:32+0000\n" +"Last-Translator: aseques \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" @@ -24,7 +25,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "No s'ha carregat cap fitxer. Error desconegut" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -59,11 +60,11 @@ msgstr "Ha fallat en escriure al disc" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "No hi ha prou espai disponible" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Directori no vàlid." #: appinfo/app.php:10 msgid "Files" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index ba7d3ec893f..9732a89e24c 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -22,7 +22,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Soubor nebyl odeslán. Neznámá chyba" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/da/files.po b/l10n/da/files.po index 7dfa1a0bfb4..0678675170f 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -27,7 +27,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ingen fil blev uploadet. Ukendt fejl." #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/de/files.po b/l10n/de/files.po index b660d0c95ec..03474bf54bf 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -20,13 +20,14 @@ # , 2012. # Thomas Müller <>, 2012. # , 2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 21:11+0000\n" +"Last-Translator: Linutux \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" @@ -36,7 +37,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Keine Datei hochgeladen. Unbekannter Fehler" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -71,11 +72,11 @@ msgstr "Fehler beim Schreiben auf die Festplatte" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Nicht genug Speicherplatz verfügbar" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Ungültiges Verzeichnis." #: appinfo/app.php:10 msgid "Files" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index f88c38701e3..ff895f0d9c5 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -4,7 +4,7 @@ # # Translators: # , 2012. -# , 2012. +# , 2012-2013. # , 2012. # I Robot , 2012. # I Robot , 2012. @@ -25,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 21:31+0000\n" +"Last-Translator: a.tangemann \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" @@ -37,7 +37,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Keine Datei hochgeladen. Unbekannter Fehler" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -72,11 +72,11 @@ msgstr "Fehler beim Schreiben auf die Festplatte" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Nicht genug Speicher verfügbar" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Ungültiges Verzeichnis." #: appinfo/app.php:10 msgid "Files" diff --git a/l10n/el/files.po b/l10n/el/files.po index eaa6cb44620..bfb66198a04 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -26,7 +26,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index bce474e5172..d91d11781c7 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -21,7 +21,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/es/files.po b/l10n/es/files.po index ce1d4746f62..beefcf059f4 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -4,6 +4,7 @@ # # Translators: # Agustin Ferrario <>, 2012. +# Agustin Ferrario , 2013. # , 2012. # Javier Llorente , 2012. # , 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 13:10+0000\n" +"Last-Translator: Agustin Ferrario \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" @@ -26,7 +27,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Fallo no se subió el fichero" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -61,11 +62,11 @@ msgstr "La escritura en disco ha fallado" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "No hay suficiente espacio disponible" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Directorio invalido." #: appinfo/app.php:10 msgid "Files" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index f00739d659a..16b141f0822 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 15:11+0000\n" +"Last-Translator: Agustin Ferrario \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,26 +22,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "El usurario %s compartió un archivo con vos." #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "El usurario %s compartió una carpeta con vos." #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "El tipo de objeto no esta especificado. " #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Error" @@ -176,7 +176,7 @@ msgstr "El nombre de la aplicación no esta especificado." msgid "The required file {file} is not installed!" msgstr "¡El archivo requerido {file} no está instalado!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Error al compartir" @@ -204,22 +204,22 @@ msgstr "Compartir con" msgid "Share with link" msgstr "Compartir con link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteger con contraseña " -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Contraseña" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Enviar el link por e-mail." #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Enviar" #: js/share.js:177 msgid "Set expiration date" @@ -273,25 +273,25 @@ msgstr "borrar" msgid "share" msgstr "compartir" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de caducidad" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Enviando..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Email enviado" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -313,8 +313,8 @@ msgstr "Reiniciar envío de email." msgid "Request failed!" msgstr "Error en el pedido!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nombre de usuario" @@ -403,44 +403,44 @@ msgstr "Tu directorio de datos y tus archivos son probablemente accesibles desde msgid "Create an admin account" msgstr "Crear una cuenta de administrador" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Completar la instalación" @@ -528,29 +528,29 @@ msgstr "servicios web sobre los que tenés control" msgid "Log out" msgstr "Cerrar la sesión" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "¡El inicio de sesión automático fue rechazado!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "¿Perdiste tu contraseña?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "recordame" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index e6b153846a8..8743c1e27a1 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012. +# Agustin Ferrario , 2012-2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 13:11+0000\n" +"Last-Translator: Agustin Ferrario \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "El archivo no fue subido. Error desconocido" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -56,11 +56,11 @@ msgstr "Error al escribir en el disco" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "No hay suficiente espacio disponible" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Directorio invalido." #: appinfo/app.php:10 msgid "Files" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 61aeebaff2e..0bf6d42f8fa 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -21,7 +21,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 8e328cf5b9c..39f84f32b35 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -22,7 +22,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ez da fitxategirik igo. Errore ezezaguna" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 254b9faee01..2a5d7c6c147 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -22,7 +22,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index c213e0b517b..9220162130c 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -4,7 +4,7 @@ # # Translators: # Jesse Jaara , 2012. -# Jiri Grönroos , 2012. +# Jiri Grönroos , 2012-2013. # Johannes Korpela <>, 2012. # , 2012. # , 2012. @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 17:44+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" @@ -24,7 +24,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -59,11 +59,11 @@ msgstr "Levylle kirjoitus epäonnistui" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Tilaa ei ole riittävästi" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Virheellinen kansio." #: appinfo/app.php:10 msgid "Files" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 7b938b0a8a9..e08609ef35b 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -31,7 +31,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Aucun fichier n'a été chargé. Erreur inconnue" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 5206354af89..9d4acd36d9a 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+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" @@ -21,7 +21,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Non se subiu ningún ficheiro. Erro descoñecido." #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/he/files.po b/l10n/he/files.po index 2d778126463..5a1ed8223cf 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -23,7 +23,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "לא הועלה קובץ. טעות בלתי מזוהה." #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index f36411cd398..ab2c04997d0 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -22,7 +22,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Nem történt feltöltés. Ismeretlen hiba" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/it/files.po b/l10n/it/files.po index db3da52397d..4dbd873f5db 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -6,14 +6,14 @@ # , 2011. # Francesco Apruzzese , 2011. # , 2012. -# Vincenzo Reale , 2012. +# Vincenzo Reale , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 18:21+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" @@ -23,7 +23,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Nessun file è stato inviato. Errore sconosciuto" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -58,11 +58,11 @@ msgstr "Scrittura su disco non riuscita" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Spazio disponibile insufficiente" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Cartella non valida." #: appinfo/app.php:10 msgid "Files" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 4cffd4396fb..39ebcb8c951 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -23,7 +23,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "ファイルは何もアップロードされていません。不明なエラー" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index a2968450e5e..6eac0f74ad1 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -22,7 +22,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 18bfe5021e7..861290c50de 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -22,7 +22,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ниту еден фајл не се вчита. Непозната грешка" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index b31fabfc3eb..772c7c7ac4b 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+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" @@ -23,7 +23,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 56c1c676c8e..efc1669f396 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -28,7 +28,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ingen filer ble lastet opp. Ukjent feil." #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 6ad2ac46570..f4f6a49c8ae 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+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" @@ -30,7 +30,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Er was geen bestand geladen. Onbekende fout" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 4f17a070898..66e7875a122 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Plik nie został załadowany. Nieznany błąd" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 6be8c7ed849..8df95d7daf9 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+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" @@ -27,7 +27,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Nenhum arquivo foi transferido. Erro desconhecido" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 484929c5765..df8a73ee300 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. # Duarte Velez Grilo , 2012. # , 2012. # Helder Meneses , 2012. @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 15:33+0000\n" +"Last-Translator: Mouxy \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" @@ -24,7 +24,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -59,11 +59,11 @@ msgstr "Falhou a escrita no disco" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Espaço em disco insuficiente!" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Directório Inválido" #: appinfo/app.php:10 msgid "Files" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 253addeec6e..a3dee090ef5 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -24,7 +24,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index b972deece11..7081267e64e 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -29,7 +29,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Файл не был загружен. Неизвестная ошибка" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 5b2f03f6c2a..f8f0840c933 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Файл не был загружен. Неизвестная ошибка" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index d8a1cb29c9b..ce3d8e19e61 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -21,7 +21,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 9ae8154e9c1..6e4cd382709 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -23,7 +23,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 5fb0f67d9db..5958b770296 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+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" @@ -23,7 +23,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Nobena datoteka ni naložena. Neznana napaka." #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 4a79d0f5ae8..ae07b2b0daa 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -25,7 +25,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ingen fil uppladdad. Okänt fel" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 93428d36512..86eaae3dd59 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -20,7 +20,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5549dc3fb6f..6be8fc8018a 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\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 4fd7d1001d3..75c8980fa85 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\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 2769003bb43..e43c1143691 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\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 40abe6c394c..9036d8d3091 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\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 258a5d43363..a260296a66a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\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 d0aa4f25896..78905414136 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\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 60beb89ccae..7da716a8aab 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\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 1c58f2653a0..f933cb03821 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\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 50b651a22da..fc4eb6385e7 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\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 4193ec24760..6189b17c9a8 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\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 089217ef310..4ba029facfd 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -21,7 +21,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 8651b858f78..0346536aa7e 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+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" @@ -24,7 +24,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Dosya yüklenmedi. Bilinmeyen hata" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 43a869f127f..4e662e7cffa 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -22,7 +22,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Не завантажено жодного файлу. Невідома помилка" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 94bc4309220..072b6a52b75 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -23,7 +23,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 6647cd7ae1b..7bb14a3205e 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "没有上传文件。未知错误" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 535ed925f02..6a22db26f15 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -24,7 +24,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "没有文件被上传。未知错误" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 0e7eccd07d9..53c704dd1ac 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12: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" @@ -23,7 +23,7 @@ msgstr "" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "沒有檔案被上傳. 未知的錯誤." #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" -- cgit v1.2.3 From a5dcbc3d8acfcf2845db281ef73df466508734c5 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 5 Jan 2013 03:30:05 +0100 Subject: Files: prevent people from renaming files to '.' --- apps/files/ajax/rename.php | 2 +- apps/files/js/filelist.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index 45448279fa1..cb0bec399d1 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -12,7 +12,7 @@ $file = stripslashes($_GET["file"]); $newname = stripslashes($_GET["newname"]); // Delete -if( OC_Files::move( $dir, $file, $dir, $newname )) { +if( $newname !== '.' and OC_Files::move( $dir, $file, $dir, $newname )) { OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname ))); } else{ diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 96dd0323d29..cc47ec2612e 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -149,7 +149,7 @@ var FileList={ event.stopPropagation(); event.preventDefault(); var newname=input.val(); - if (Files.containsInvalidCharacters(newname)) { + if (Files.containsInvalidCharacters(newname) || newname === '.') { return false; } if (newname != name) { -- cgit v1.2.3 From b4191b7da53f4aaf7e0a80c6513db3499a76aeda Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Sun, 6 Jan 2013 12:52:00 +0100 Subject: rename containsInvalidCharacters() to isFileNameValid() - NOTE: semantic has changed! adding file name checks and notifications to isFileNameValid() for . and empty file name --- apps/files/js/filelist.js | 2 +- apps/files/js/files.js | 20 ++++++++++++++++---- 2 files changed, 17 insertions(+), 5 deletions(-) (limited to 'apps') diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index cc47ec2612e..22d701d8ff9 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -149,7 +149,7 @@ var FileList={ event.stopPropagation(); event.preventDefault(); var newname=input.val(); - if (Files.containsInvalidCharacters(newname) || newname === '.') { + if (!Files.isFileNameValid(newname)) { return false; } if (newname != name) { diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 6a37d9e7f53..ba2495eb728 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -26,17 +26,29 @@ Files={ }); procesSelection(); }, - containsInvalidCharacters:function (name) { + isFileNameValid:function (name) { + if (name === '.') { + $('#notification').text(t('files', "'.' is an invalid file name.")); + $('#notification').fadeIn(); + return false; + } + if (name.length == 0) { + $('#notification').text(t('files', "File name cannot be empty.")); + $('#notification').fadeIn(); + return false; + } + + // check for invalid characters var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*']; for (var i = 0; i < invalid_characters.length; i++) { if (name.indexOf(invalid_characters[i]) != -1) { $('#notification').text(t('files', "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.")); $('#notification').fadeIn(); - return true; + return false; } } $('#notification').fadeOut(); - return false; + return true; } }; $(document).ready(function() { @@ -509,7 +521,7 @@ $(document).ready(function() { $(this).append(input); input.focus(); input.change(function(){ - if (type != 'web' && Files.containsInvalidCharacters($(this).val())) { + if (type != 'web' && !Files.isFileNameValid($(this).val())) { return; } else if( type == 'folder' && $('#dir').val() == '/' && $(this).val() == 'Shared') { $('#notification').text(t('files','Invalid folder name. Usage of "Shared" is reserved by Owncloud')); -- cgit v1.2.3 From 0b007235b99fa8d66cdb8ca917fe2f45dd8e4edc Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 7 Jan 2013 00:06:32 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/cs_CZ.php | 2 ++ apps/files/l10n/gl.php | 2 ++ apps/files/l10n/ja_JP.php | 2 ++ apps/files/l10n/sv.php | 2 ++ l10n/ar/core.po | 11 ++++-- l10n/ar/files.po | 52 ++++++++++++++++------------ l10n/bg_BG/core.po | 67 ++++++++++++++++++----------------- l10n/bg_BG/files.po | 52 ++++++++++++++++------------ l10n/bn_BD/core.po | 11 ++++-- l10n/bn_BD/files.po | 52 ++++++++++++++++------------ l10n/ca/core.po | 11 ++++-- l10n/ca/files.po | 54 ++++++++++++++++------------- l10n/cs_CZ/core.po | 69 ++++++++++++++++++++----------------- l10n/cs_CZ/files.po | 58 +++++++++++++++++-------------- l10n/da/core.po | 11 ++++-- l10n/da/files.po | 52 ++++++++++++++++------------ l10n/de/core.po | 11 ++++-- l10n/de/files.po | 54 ++++++++++++++++------------- l10n/de_DE/core.po | 11 ++++-- l10n/de_DE/files.po | 54 ++++++++++++++++------------- l10n/el/core.po | 11 ++++-- l10n/el/files.po | 52 ++++++++++++++++------------ l10n/eo/core.po | 27 +++++++++------ l10n/eo/files.po | 52 ++++++++++++++++------------ l10n/es/core.po | 45 +++++++++++++----------- l10n/es/files.po | 54 ++++++++++++++++------------- l10n/es_AR/core.po | 11 ++++-- l10n/es_AR/files.po | 54 ++++++++++++++++------------- l10n/et_EE/core.po | 67 ++++++++++++++++++----------------- l10n/et_EE/files.po | 52 ++++++++++++++++------------ l10n/eu/core.po | 69 ++++++++++++++++++++----------------- l10n/eu/files.po | 52 ++++++++++++++++------------ l10n/fa/core.po | 67 ++++++++++++++++++----------------- l10n/fa/files.po | 52 ++++++++++++++++------------ l10n/fi_FI/core.po | 45 +++++++++++++----------- l10n/fi_FI/files.po | 54 ++++++++++++++++------------- l10n/fr/core.po | 11 ++++-- l10n/fr/files.po | 52 ++++++++++++++++------------ l10n/gl/core.po | 11 ++++-- l10n/gl/files.po | 58 +++++++++++++++++-------------- l10n/he/core.po | 45 +++++++++++++----------- l10n/he/files.po | 52 ++++++++++++++++------------ l10n/hi/core.po | 67 ++++++++++++++++++----------------- l10n/hi/files.po | 52 ++++++++++++++++------------ l10n/hr/core.po | 67 ++++++++++++++++++----------------- l10n/hr/files.po | 52 ++++++++++++++++------------ l10n/hu/core.po | 11 ++++-- l10n/hu/files.po | 52 ++++++++++++++++------------ l10n/hu_HU/core.po | 11 ++++-- l10n/hu_HU/files.po | 52 ++++++++++++++++------------ l10n/ia/core.po | 67 ++++++++++++++++++----------------- l10n/ia/files.po | 52 ++++++++++++++++------------ l10n/id/core.po | 67 ++++++++++++++++++----------------- l10n/id/files.po | 52 ++++++++++++++++------------ l10n/is/core.po | 11 ++++-- l10n/is/files.po | 52 ++++++++++++++++------------ l10n/it/core.po | 45 +++++++++++++----------- l10n/it/files.po | 54 ++++++++++++++++------------- l10n/ja_JP/core.po | 45 +++++++++++++----------- l10n/ja_JP/files.po | 58 +++++++++++++++++-------------- l10n/ka_GE/core.po | 67 ++++++++++++++++++----------------- l10n/ka_GE/files.po | 52 ++++++++++++++++------------ l10n/ko/core.po | 67 ++++++++++++++++++----------------- l10n/ko/files.po | 52 ++++++++++++++++------------ l10n/ku_IQ/core.po | 67 ++++++++++++++++++----------------- l10n/ku_IQ/files.po | 52 ++++++++++++++++------------ l10n/lb/core.po | 67 ++++++++++++++++++----------------- l10n/lb/files.po | 52 ++++++++++++++++------------ l10n/lt_LT/core.po | 67 ++++++++++++++++++----------------- l10n/lt_LT/files.po | 52 ++++++++++++++++------------ l10n/lv/core.po | 67 ++++++++++++++++++----------------- l10n/lv/files.po | 52 ++++++++++++++++------------ l10n/mk/core.po | 45 +++++++++++++----------- l10n/mk/files.po | 52 ++++++++++++++++------------ l10n/ms_MY/core.po | 67 ++++++++++++++++++----------------- l10n/ms_MY/files.po | 52 ++++++++++++++++------------ l10n/nb_NO/core.po | 11 ++++-- l10n/nb_NO/files.po | 52 ++++++++++++++++------------ l10n/nl/core.po | 11 ++++-- l10n/nl/files.po | 52 ++++++++++++++++------------ l10n/nn_NO/core.po | 67 ++++++++++++++++++----------------- l10n/nn_NO/files.po | 52 ++++++++++++++++------------ l10n/oc/core.po | 67 ++++++++++++++++++----------------- l10n/oc/files.po | 52 ++++++++++++++++------------ l10n/pl/core.po | 45 +++++++++++++----------- l10n/pl/files.po | 52 ++++++++++++++++------------ l10n/pl_PL/core.po | 67 ++++++++++++++++++----------------- l10n/pl_PL/files.po | 52 ++++++++++++++++------------ l10n/pt_BR/core.po | 67 ++++++++++++++++++----------------- l10n/pt_BR/files.po | 52 ++++++++++++++++------------ l10n/pt_PT/core.po | 45 +++++++++++++----------- l10n/pt_PT/files.po | 54 ++++++++++++++++------------- l10n/ro/core.po | 11 ++++-- l10n/ro/files.po | 52 ++++++++++++++++------------ l10n/ru/core.po | 69 ++++++++++++++++++++----------------- l10n/ru/files.po | 52 ++++++++++++++++------------ l10n/ru_RU/core.po | 11 ++++-- l10n/ru_RU/files.po | 52 ++++++++++++++++------------ l10n/si_LK/core.po | 67 ++++++++++++++++++----------------- l10n/si_LK/files.po | 52 ++++++++++++++++------------ l10n/sk_SK/core.po | 67 ++++++++++++++++++----------------- l10n/sk_SK/files.po | 52 ++++++++++++++++------------ l10n/sl/core.po | 45 +++++++++++++----------- l10n/sl/files.po | 52 ++++++++++++++++------------ l10n/sq/core.po | 67 ++++++++++++++++++----------------- l10n/sq/files.po | 52 ++++++++++++++++------------ l10n/sr/core.po | 67 ++++++++++++++++++----------------- l10n/sr/files.po | 52 ++++++++++++++++------------ l10n/sr@latin/core.po | 67 ++++++++++++++++++----------------- l10n/sr@latin/files.po | 52 ++++++++++++++++------------ l10n/sv/core.po | 11 ++++-- l10n/sv/files.po | 58 +++++++++++++++++-------------- l10n/ta_LK/core.po | 67 ++++++++++++++++++----------------- l10n/ta_LK/files.po | 52 ++++++++++++++++------------ l10n/templates/core.pot | 7 +++- l10n/templates/files.pot | 50 ++++++++++++++++----------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 14 ++++---- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 67 ++++++++++++++++++----------------- l10n/th_TH/files.po | 52 ++++++++++++++++------------ l10n/tr/core.po | 11 ++++-- l10n/tr/files.po | 52 ++++++++++++++++------------ l10n/uk/core.po | 69 ++++++++++++++++++++----------------- l10n/uk/files.po | 52 ++++++++++++++++------------ l10n/vi/core.po | 67 ++++++++++++++++++----------------- l10n/vi/files.po | 52 ++++++++++++++++------------ l10n/zh_CN.GB2312/core.po | 67 ++++++++++++++++++----------------- l10n/zh_CN.GB2312/files.po | 52 ++++++++++++++++------------ l10n/zh_CN/core.po | 11 ++++-- l10n/zh_CN/files.po | 52 ++++++++++++++++------------ l10n/zh_HK/core.po | 67 ++++++++++++++++++----------------- l10n/zh_HK/files.po | 52 ++++++++++++++++------------ l10n/zh_TW/core.po | 67 ++++++++++++++++++----------------- l10n/zh_TW/files.po | 52 ++++++++++++++++------------ l10n/zu_ZA/core.po | 67 ++++++++++++++++++----------------- l10n/zu_ZA/files.po | 52 ++++++++++++++++------------ 142 files changed, 3626 insertions(+), 2773 deletions(-) (limited to 'apps') diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 958cb930e7d..ab21b8a2750 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -7,6 +7,8 @@ "No file was uploaded" => "Žádný soubor nebyl odeslán", "Missing a temporary folder" => "Chybí adresář pro dočasné soubory", "Failed to write to disk" => "Zápis na disk selhal", +"Not enough space available" => "Nedostatek dostupného místa", +"Invalid directory." => "Neplatný adresář", "Files" => "Soubory", "Unshare" => "Zrušit sdílení", "Delete" => "Smazat", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 0071b5b7dd2..eb9503d6cad 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -7,6 +7,8 @@ "No file was uploaded" => "Non se enviou ningún ficheiro", "Missing a temporary folder" => "Falta un cartafol temporal", "Failed to write to disk" => "Erro ao escribir no disco", +"Not enough space available" => "O espazo dispoñíbel é insuficiente", +"Invalid directory." => "O directorio é incorrecto.", "Files" => "Ficheiros", "Unshare" => "Deixar de compartir", "Delete" => "Eliminar", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 29f4fd4eafa..ca5ba564476 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -7,6 +7,8 @@ "No file was uploaded" => "ファイルはアップロードされませんでした", "Missing a temporary folder" => "テンポラリフォルダが見つかりません", "Failed to write to disk" => "ディスクへの書き込みに失敗しました", +"Not enough space available" => "利用可能なスペースが十分にありません", +"Invalid directory." => "無効なディレクトリです。", "Files" => "ファイル", "Unshare" => "共有しない", "Delete" => "削除", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 7cef4e19c46..f04ae0ac228 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -7,6 +7,8 @@ "No file was uploaded" => "Ingen fil blev uppladdad", "Missing a temporary folder" => "Saknar en tillfällig mapp", "Failed to write to disk" => "Misslyckades spara till disk", +"Not enough space available" => "Inte tillräckligt med utrymme tillgängligt", +"Invalid directory." => "Felaktig mapp.", "Files" => "Filer", "Unshare" => "Sluta dela", "Delete" => "Radera", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 0785bd05e65..9400ec3432f 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 19:06+0000\n" -"Last-Translator: aboodilankaboot \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -566,6 +566,11 @@ msgstr "السابق" msgid "next" msgstr "التالي" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "تحذير أمان!" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 5d25164f500..791afd2e704 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -113,86 +113,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "إغلق" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "الاسم" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "حجم" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "معدل" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index f40f16cbec4..946b0984730 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Грешка" @@ -178,7 +178,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -206,11 +206,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Парола" @@ -275,23 +275,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -315,8 +315,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Потребител" @@ -405,44 +405,44 @@ msgstr "" msgid "Create an admin account" msgstr "Създаване на админ профил" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Разширено" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Директория за данни" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Конфигуриране на базата" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "ще се ползва" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Потребител за базата" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Парола за базата" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Име на базата" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Хост за базата" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Завършване на настройките" @@ -530,29 +530,29 @@ msgstr "" msgid "Log out" msgstr "Изход" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Забравена парола?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "запомни" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Вход" @@ -568,6 +568,11 @@ msgstr "пред." msgid "next" msgstr "следващо" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 9ef621af1e6..0a3297bd922 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -114,86 +114,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Грешка при качване" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Качването е отменено." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Име" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Размер" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Променено" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 76af85b64d8..69efe6f583c 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2013-01-02 09:32+0000\n" -"Last-Translator: Shubhra Paul \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -565,6 +565,11 @@ msgstr "পূর্ববর্তী" msgid "next" msgstr "পরবর্তী" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "নিরাপত্তাবিষয়ক সতর্কবাণী" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 9954cd477fd..97f28d3ba80 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -113,86 +113,94 @@ msgstr "{files} ভাগাভাগি বাতিল কর" msgid "deleted {files}" msgstr "{files} মুছে ফেলা হয়েছে" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "আপলোড করতে সমস্যা" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "মুলতুবি" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "১ টি ফাইল আপলোড করা হচ্ছে" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে ।" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "নাম" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "আকার" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 9fd20a8ef12..be8931fdc55 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 14:22+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -566,6 +566,11 @@ msgstr "anterior" msgid "next" msgstr "següent" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Avís de seguretat!" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index c3c57eb4cd1..6f071623c19 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 14:32+0000\n" -"Last-Translator: aseques \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -118,86 +118,94 @@ msgstr "no compartits {files}" msgid "deleted {files}" msgstr "eliminats {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "s'estan generant fitxers ZIP, pot trigar una estona." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Error en la pujada" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Tanca" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Pendents" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} fitxers en pujada" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} fitxers escannejats" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "error durant l'escaneig" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nom" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Mida" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modificat" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} fitxers" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index e00aa1d03f3..8b202d95172 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 09:04+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "Není určen typ objektu." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Chyba" @@ -178,7 +178,7 @@ msgstr "Není určen název aplikace." msgid "The required file {file} is not installed!" msgstr "Požadovaný soubor {file} není nainstalován." -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -206,11 +206,11 @@ msgstr "Sdílet s" msgid "Share with link" msgstr "Sdílet s odkazem" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Heslo" @@ -275,23 +275,23 @@ msgstr "smazat" msgid "share" msgstr "sdílet" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Odesílám..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "E-mail odeslán" @@ -315,8 +315,8 @@ msgstr "Obnovovací e-mail odeslán." msgid "Request failed!" msgstr "Požadavek selhal." -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Uživatelské jméno" @@ -405,44 +405,44 @@ msgstr "Váš adresář dat a všechny Vaše soubory jsou pravděpodobně přís msgid "Create an admin account" msgstr "Vytvořit účet správce" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Pokročilé" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Dokončit nastavení" @@ -530,29 +530,29 @@ msgstr "webové služby pod Vaší kontrolou" msgid "Log out" msgstr "Odhlásit se" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatické přihlášení odmítnuto." -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "zapamatovat si" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Přihlásit" @@ -568,6 +568,11 @@ msgstr "předchozí" msgid "next" msgstr "následující" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Bezpečnostní upozornění." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 9732a89e24c..5080b51b462 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -5,13 +5,13 @@ # Translators: # Martin , 2011-2012. # Michal Hrušecký , 2012. -# Tomáš Chvátal , 2012. +# Tomáš Chvátal , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -57,11 +57,11 @@ msgstr "Zápis na disk selhal" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Nedostatek dostupného místa" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Neplatný adresář" #: appinfo/app.php:10 msgid "Files" @@ -115,86 +115,94 @@ msgstr "sdílení zrušeno pro {files}" msgid "deleted {files}" msgstr "smazáno {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generuji ZIP soubor, může to nějakou dobu trvat." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Chyba odesílání" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zavřít" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Čekající" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "odesílám {count} souborů" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:445 +#: js/files.js:457 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 vyústí ve zrušení nahrávání." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "prozkoumáno {count} souborů" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "chyba při prohledávání" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Název" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Velikost" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Změněno" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 složka" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 soubor" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} soubory" diff --git a/l10n/da/core.po b/l10n/da/core.po index 6fa46250122..f62c370f05b 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 21:57+0000\n" -"Last-Translator: cronner \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -572,6 +572,11 @@ msgstr "forrige" msgid "next" msgstr "næste" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Sikkerhedsadvarsel!" diff --git a/l10n/da/files.po b/l10n/da/files.po index 0678675170f..4e1159fc948 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -120,86 +120,94 @@ msgstr "ikke delte {files}" msgid "deleted {files}" msgstr "slettede {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "genererer ZIP-fil, det kan tage lidt tid." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Luk" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Afventer" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} filer uploades" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} filer skannet" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "fejl under scanning" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Navn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Størrelse" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Ændret" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 fil" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/de/core.po b/l10n/de/core.po index 861465cce99..d4b5f08b8f2 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -23,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 13:50+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -580,6 +580,11 @@ msgstr "Zurück" msgid "next" msgstr "Weiter" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Sicherheitswarnung!" diff --git a/l10n/de/files.po b/l10n/de/files.po index 03474bf54bf..c2ef3a1360d 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -25,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 21:11+0000\n" -"Last-Translator: Linutux \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -130,86 +130,94 @@ msgstr "Freigabe von {files} aufgehoben" msgid "deleted {files}" msgstr "{files} gelöscht" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Schließen" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "Eine Datei wird hoch geladen" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} Dateien werden hochgeladen" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Name" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Größe" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 Datei" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 116cf3006cd..9ae1355f88a 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 13:52+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -579,6 +579,11 @@ msgstr "Zurück" msgid "next" msgstr "Weiter" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Sicherheitshinweis!" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ff895f0d9c5..2712cb099bf 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -25,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 21:31+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -130,86 +130,94 @@ msgstr "Freigabe für {files} beendet" msgid "deleted {files}" msgstr "{files} gelöscht" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Schließen" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} Dateien wurden hochgeladen" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Name" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Größe" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 Datei" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/el/core.po b/l10n/el/core.po index 7a42857d69c..71c93b2c815 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 13:25+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -571,6 +571,11 @@ msgstr "προηγούμενο" msgid "next" msgstr "επόμενο" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Προειδοποίηση Ασφαλείας!" diff --git a/l10n/el/files.po b/l10n/el/files.po index bfb66198a04..6ea3d727114 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -119,86 +119,94 @@ msgstr "μη διαμοιρασμένα {files}" msgid "deleted {files}" msgstr "διαγραμμένα {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Σφάλμα Αποστολής" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Κλείσιμο" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Εκκρεμεί" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} αρχεία ανεβαίνουν" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} αρχεία ανιχνεύτηκαν" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "σφάλμα κατά την ανίχνευση" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Όνομα" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} αρχεία" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index ae8dd9eeedc..a443f9ad911 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 07:11+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -209,7 +209,7 @@ msgstr "Kunhavigi per ligilo" msgid "Password protect" msgstr "Protekti per pasvorto" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Pasvorto" @@ -315,7 +315,7 @@ msgid "Request failed!" msgstr "Peto malsukcesis!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Uzantonomo" @@ -529,29 +529,29 @@ msgstr "TTT-servoj sub via kontrolo" msgid "Log out" msgstr "Elsaluti" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "memori" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Ensaluti" @@ -567,6 +567,11 @@ msgstr "maljena" msgid "next" msgstr "jena" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Sekureca averto!" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d91d11781c7..9a51714012a 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -114,86 +114,94 @@ msgstr "malkunhaviĝis {files}" msgid "deleted {files}" msgstr "foriĝis {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Fermi" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Traktotaj" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} dosieroj alŝutatas" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} dosieroj skaniĝis" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "eraro dum skano" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nomo" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Grando" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modifita" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} dosierujoj" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3aebf45effa..f06edefd26c 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 11:51+0000\n" -"Last-Translator: malmirk \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -172,8 +172,8 @@ msgid "The object type is not specified." msgstr "El tipo de objeto no se ha especificado." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fallo" @@ -185,7 +185,7 @@ msgstr "El nombre de la app no se ha especificado." msgid "The required file {file} is not installed!" msgstr "El fichero {file} requerido, no está instalado." -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Error compartiendo" @@ -213,11 +213,11 @@ msgstr "Compartir con" msgid "Share with link" msgstr "Compartir con enlace" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protegido por contraseña" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Contraseña" @@ -282,23 +282,23 @@ msgstr "eliminar" msgid "share" msgstr "compartir" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Error al eliminar la fecha de caducidad" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Correo electrónico enviado" @@ -323,7 +323,7 @@ msgid "Request failed!" msgstr "Pedido fallado!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Nombre de usuario" @@ -537,29 +537,29 @@ msgstr "servicios web bajo tu control" msgid "Log out" msgstr "Salir" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "¡Inicio de sesión automático rechazado!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "recuérdame" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" @@ -575,6 +575,11 @@ msgstr "anterior" msgid "next" msgstr "siguiente" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "¡Advertencia de seguridad!" diff --git a/l10n/es/files.po b/l10n/es/files.po index beefcf059f4..22d40a3e622 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 13:10+0000\n" -"Last-Translator: Agustin Ferrario \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -120,86 +120,94 @@ msgstr "{files} descompartidos" msgid "deleted {files}" msgstr "{files} eliminados" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generando un fichero ZIP, puede llevar un tiempo." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "cerrrar" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Pendiente" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "error escaneando" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nombre" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Tamaño" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 archivo" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} archivos" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 16b141f0822..43ae151a756 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 15:11+0000\n" -"Last-Translator: Agustin Ferrario \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -566,6 +566,11 @@ msgstr "anterior" msgid "next" msgstr "siguiente" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "¡Advertencia de seguridad!" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 8743c1e27a1..54b39b3cc7b 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 13:11+0000\n" -"Last-Translator: Agustin Ferrario \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -114,86 +114,94 @@ msgstr "{files} se dejaron de compartir" msgid "deleted {files}" msgstr "{files} borrados" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generando un archivo ZIP, puede llevar un tiempo." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Cerrar" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Pendiente" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "error mientras se escaneaba" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nombre" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Tamaño" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 archivo" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} archivos" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 3d6dcf500f6..7953c94046e 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Viga" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -203,11 +203,11 @@ msgstr "Jaga" msgid "Share with link" msgstr "Jaga lingiga" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Parooliga kaitstud" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Parool" @@ -272,23 +272,23 @@ msgstr "kustuta" msgid "share" msgstr "jaga" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "Taastamise e-kiri on saadetud." msgid "Request failed!" msgstr "Päring ebaõnnestus!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Kasutajanimi" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "Loo admini konto" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Lisavalikud" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Andmete kaust" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Seadista andmebaasi" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "kasutatakse" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Lõpeta seadistamine" @@ -527,29 +527,29 @@ msgstr "veebiteenused sinu kontrolli all" msgid "Log out" msgstr "Logi välja" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automaatne sisselogimine lükati tagasi!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Kui sa ei muutnud oma parooli hiljut, siis võib su kasutajakonto olla ohustatud!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "pea meeles" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Logi sisse" @@ -565,6 +565,11 @@ msgstr "eelm" msgid "next" msgstr "järgm" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "turvahoiatus!" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 0bf6d42f8fa..0f0c412ea06 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -114,86 +114,94 @@ msgstr "jagamata {files}" msgid "deleted {files}" msgstr "kustutatud {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-faili loomine, see võib veidi aega võtta." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Üleslaadimise viga" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Sulge" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Ootel" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 faili üleslaadimisel" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} faili üleslaadimist" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud " -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} faili skännitud" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "viga skännimisel" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nimi" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Suurus" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Muudetud" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 fail" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} faili" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 20402a04985..4825d0400e8 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 11:46+0000\n" -"Last-Translator: Piarres Beobide \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "Objetu mota ez dago zehaztuta." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Errorea" @@ -177,7 +177,7 @@ msgstr "App izena ez dago zehaztuta." msgid "The required file {file} is not installed!" msgstr "Beharrezkoa den {file} fitxategia ez dago instalatuta!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -205,11 +205,11 @@ msgstr "Elkarbanatu honekin" msgid "Share with link" msgstr "Elkarbanatu lotura batekin" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Babestu pasahitzarekin" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Pasahitza" @@ -274,23 +274,23 @@ msgstr "ezabatu" msgid "share" msgstr "elkarbanatu" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Eposta bidalia" @@ -314,8 +314,8 @@ msgstr "Berrezartzeko eposta bidali da." msgid "Request failed!" msgstr "Eskariak huts egin du!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Erabiltzaile izena" @@ -404,44 +404,44 @@ msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri msgid "Create an admin account" msgstr "Sortu kudeatzaile kontu bat" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Aurreratua" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datuen karpeta" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfiguratu datu basea" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "erabiliko da" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Bukatu konfigurazioa" @@ -529,29 +529,29 @@ msgstr "web zerbitzuak zure kontrolpean" msgid "Log out" msgstr "Saioa bukatu" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Saio hasiera automatikoa ez onartuta!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan egon daiteke!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "gogoratu" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Hasi saioa" @@ -567,6 +567,11 @@ msgstr "aurrekoa" msgid "next" msgstr "hurrengoa" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Segurtasun abisua" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 39f84f32b35..ddd92ff0f3b 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -115,86 +115,94 @@ msgstr "elkarbanaketa utzita {files}" msgid "deleted {files}" msgstr "ezabatuta {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Itxi" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Zain" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} fitxategi igotzen" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} fitxategi eskaneatuta" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "errore bat egon da eskaneatzen zen bitartean" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Izena" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Tamaina" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} fitxategi" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 8b2531f874f..6693df21f9e 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "خطا" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,11 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "گذرواژه" @@ -272,23 +272,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "شناسه" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "لطفا یک شناسه برای مدیر بسازید" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "حرفه ای" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "پوشه اطلاعاتی" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "پایگاه داده برنامه ریزی شدند" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "استفاده خواهد شد" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "اتمام نصب" @@ -527,29 +527,29 @@ msgstr "سرویس وب تحت کنترل شما" msgid "Log out" msgstr "خروج" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "آیا گذرواژه تان را به یاد نمی آورید؟" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "ورود" @@ -565,6 +565,11 @@ msgstr "بازگشت" msgid "next" msgstr "بعدی" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 2a5d7c6c147..8ca4747a57a 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -115,86 +115,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "خطا در بار گذاری" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "بستن" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "در انتظار" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "نام" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "اندازه" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index c7c2c1c4a14..8824e25a493 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 13:22+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -168,8 +168,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Virhe" @@ -181,7 +181,7 @@ msgstr "Sovelluksen nimeä ei ole määritelty." msgid "The required file {file} is not installed!" msgstr "Vaadittua tiedostoa {file} ei ole asennettu!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -209,11 +209,11 @@ msgstr "" msgid "Share with link" msgstr "Jaa linkillä" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Suojaa salasanalla" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Salasana" @@ -278,23 +278,23 @@ msgstr "poista" msgid "share" msgstr "jaa" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Sähköposti lähetetty" @@ -319,7 +319,7 @@ msgid "Request failed!" msgstr "Pyyntö epäonnistui!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Käyttäjätunnus" @@ -533,29 +533,29 @@ msgstr "verkkopalvelut hallinnassasi" msgid "Log out" msgstr "Kirjaudu ulos" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automaattinen sisäänkirjautuminen hylättiin!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Unohditko salasanasi?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "muista" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Kirjaudu sisään" @@ -571,6 +571,11 @@ msgstr "edellinen" msgid "next" msgstr "seuraava" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Turvallisuusvaroitus!" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 9220162130c..a2dbb70ba56 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 17:44+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -117,86 +117,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Sulje" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Odottaa" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nimi" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Koko" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Muutettu" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} tiedostoa" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 04a866c32f8..2396fb7d1d7 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-03 10:24+0000\n" -"Last-Translator: dbasquin \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -575,6 +575,11 @@ msgstr "précédent" msgid "next" msgstr "suivant" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Alerte de sécurité !" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index e08609ef35b..3b12e33fe86 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -124,86 +124,94 @@ msgstr "Fichiers non partagés : {files}" msgid "deleted {files}" msgstr "Fichiers supprimés : {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Fermer" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "En cours" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fichier en cours de téléchargement" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} fichiers téléversés" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} fichiers indexés" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "erreur lors de l'indexation" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nom" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Taille" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modifié" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 fichier" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} fichiers" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 69256439a07..357aa690c32 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" -"PO-Revision-Date: 2012-12-31 09:32+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -567,6 +567,11 @@ msgstr "anterior" msgid "next" msgstr "seguinte" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Advertencia de seguranza" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 9d4acd36d9a..991b1aa060e 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# antiparvos , 2012. +# antiparvos , 2012-2013. # Xosé M. Lamas , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -56,11 +56,11 @@ msgstr "Erro ao escribir no disco" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "O espazo dispoñíbel é insuficiente" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "O directorio é incorrecto." #: appinfo/app.php:10 msgid "Files" @@ -114,86 +114,94 @@ msgstr "{files} sen compartir" msgid "deleted {files}" msgstr "{files} eliminados" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "xerando un ficheiro ZIP, o que pode levar un anaco." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Erro na subida" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Pechar" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Pendentes" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 ficheiro subíndose" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} ficheiros subíndose" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} ficheiros escaneados" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "erro mentres analizaba" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Tamaño" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/he/core.po b/l10n/he/core.po index 131ac2897e3..027e2946155 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 07:42+0000\n" -"Last-Translator: Yaron Shahrabani \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "סוג הפריט לא צוין." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "שגיאה" @@ -178,7 +178,7 @@ msgstr "שם היישום לא צוין." msgid "The required file {file} is not installed!" msgstr "הקובץ הנדרש {file} אינו מותקן!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -206,11 +206,11 @@ msgstr "שיתוף עם" msgid "Share with link" msgstr "שיתוף עם קישור" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "הגנה בססמה" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "ססמה" @@ -275,23 +275,23 @@ msgstr "מחיקה" msgid "share" msgstr "שיתוף" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" @@ -316,7 +316,7 @@ msgid "Request failed!" msgstr "הבקשה נכשלה!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "שם משתמש" @@ -530,29 +530,29 @@ msgstr "שירותי רשת בשליטתך" msgid "Log out" msgstr "התנתקות" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "בקשת הכניסה האוטומטית נדחתה!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "אם לא שינית את ססמתך לאחרונה, יתכן שחשבונך נפגע!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "נא לשנות את הססמה שלך כדי לאבטח את חשבונך מחדש." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "שכחת את ססמתך?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "שמירת הססמה" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "כניסה" @@ -568,6 +568,11 @@ msgstr "הקודם" msgid "next" msgstr "הבא" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "אזהרת אבטחה!" diff --git a/l10n/he/files.po b/l10n/he/files.po index 5a1ed8223cf..5e4c82a7dc7 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -116,86 +116,94 @@ msgstr "בוטל שיתופם של {files}" msgid "deleted {files}" msgstr "{files} נמחקו" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "יוצר קובץ ZIP, אנא המתן." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "שגיאת העלאה" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "סגירה" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "ממתין" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} קבצים נשלחים" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} קבצים נסרקו" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "אירעה שגיאה במהלך הסריקה" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "שם" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "גודל" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} קבצים" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index ad1e3407007..9e21f4363b7 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -176,7 +176,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -204,11 +204,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "पासवर्ड" @@ -273,23 +273,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -313,8 +313,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "प्रयोक्ता का नाम" @@ -403,44 +403,44 @@ msgstr "" msgid "Create an admin account" msgstr "व्यवस्थापक खाता बनाएँ" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "उन्नत" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "डेटाबेस कॉन्फ़िगर करें " -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "डेटाबेस उपयोगकर्ता" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "डेटाबेस पासवर्ड" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "सेटअप समाप्त करे" @@ -528,29 +528,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -566,6 +566,11 @@ msgstr "पिछला" msgid "next" msgstr "अगला" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 12a3b1fd159..16c322352c8 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -112,86 +112,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 3b78e7b8fdd..afe9e17a5b2 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Pogreška" @@ -178,7 +178,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -206,11 +206,11 @@ msgstr "Djeli sa" msgid "Share with link" msgstr "Djeli preko link-a" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Zaštiti lozinkom" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Lozinka" @@ -275,23 +275,23 @@ msgstr "izbriši" msgid "share" msgstr "djeli" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -315,8 +315,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Korisničko ime" @@ -405,44 +405,44 @@ msgstr "" msgid "Create an admin account" msgstr "Stvori administratorski račun" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Dodatno" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Mapa baze podataka" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfiguriraj bazu podataka" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "će se koristiti" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Završi postavljanje" @@ -530,29 +530,29 @@ msgstr "web usluge pod vašom kontrolom" msgid "Log out" msgstr "Odjava" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Prijava" @@ -568,6 +568,11 @@ msgstr "prethodan" msgid "next" msgstr "sljedeći" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index d47d5f18bdc..f704578fce1 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -115,86 +115,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generiranje ZIP datoteke, ovo može potrajati." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zatvori" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "U tijeku" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "grečka prilikom skeniranja" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Naziv" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Veličina" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/hu/core.po b/l10n/hu/core.po index 03c54c112f2..34ccef27dd1 100644 --- a/l10n/hu/core.po +++ b/l10n/hu/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -564,6 +564,11 @@ msgstr "" msgid "next" msgstr "" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/hu/files.po b/l10n/hu/files.po index c3d83a15a02..cb4ea383437 100644 --- a/l10n/hu/files.po +++ b/l10n/hu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" @@ -112,86 +112,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 40dde261a38..50ba444d42d 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" -"PO-Revision-Date: 2012-12-31 14:56+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -567,6 +567,11 @@ msgstr "előző" msgid "next" msgstr "következő" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Biztonsági figyelmeztetés!" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index ab2c04997d0..70bb805b100 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -115,86 +115,94 @@ msgstr "{files} fájl megosztása visszavonva" msgid "deleted {files}" msgstr "{files} fájl törölve" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-fájl generálása, ez eltarthat egy ideig." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Feltöltési hiba" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Bezárás" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Folyamatban" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} fájl töltődik föl" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} fájlt találtunk" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "Hiba a fájllista-ellenőrzés során" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Név" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Méret" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Módosítva" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 fájl" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} fájl" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index cf1e1c81050..29a834b73e8 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,11 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Contrasigno" @@ -272,23 +272,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nomine de usator" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "Crear un conto de administration" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avantiate" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Dossier de datos" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar le base de datos" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "essera usate" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -527,29 +527,29 @@ msgstr "servicios web sub tu controlo" msgid "Log out" msgstr "Clauder le session" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Tu perdeva le contrasigno?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "memora" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Aperir session" @@ -565,6 +565,11 @@ msgstr "prev" msgid "next" msgstr "prox" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 7e27aa1727b..679f4b62cb6 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -114,86 +114,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Clauder" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nomine" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Dimension" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modificate" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 20b68e9ecfe..bc8894d1f01 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "gagal" @@ -178,7 +178,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "gagal ketika membagikan" @@ -206,11 +206,11 @@ msgstr "bagikan dengan" msgid "Share with link" msgstr "bagikan dengan tautan" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "lindungi dengan kata kunci" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Password" @@ -275,23 +275,23 @@ msgstr "hapus" msgid "share" msgstr "bagikan" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "dilindungi kata kunci" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "gagal melepas tanggal kadaluarsa" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "gagal memasang tanggal kadaluarsa" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -315,8 +315,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Username" @@ -405,44 +405,44 @@ msgstr "" msgid "Create an admin account" msgstr "Buat sebuah akun admin" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Tingkat Lanjut" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurasi database" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Pengguna database" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Password database" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nama database" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "tablespace basis data" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Host database" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Selesaikan instalasi" @@ -530,29 +530,29 @@ msgstr "web service dibawah kontrol anda" msgid "Log out" msgstr "Keluar" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "login otomatis ditolak!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "apabila anda tidak merubah kata kunci belakangan ini, akun anda dapat di gunakan orang lain!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "mohon ubah kata kunci untuk mengamankan akun anda" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Lupa password anda?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "selalu login" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Masuk" @@ -568,6 +568,11 @@ msgstr "sebelum" msgid "next" msgstr "selanjutnya" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "peringatan keamanan!" diff --git a/l10n/id/files.po b/l10n/id/files.po index d1498ef87e2..7f8b49e2fe4 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -115,86 +115,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "membuat berkas ZIP, ini mungkin memakan waktu." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "tutup" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Menunggu" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nama" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Ukuran" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/is/core.po b/l10n/is/core.po index f21c418fab2..ae7fa02d39f 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 14:48+0000\n" -"Last-Translator: sveinn \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -566,6 +566,11 @@ msgstr "fyrra" msgid "next" msgstr "næsta" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Öryggis aðvörun!" diff --git a/l10n/is/files.po b/l10n/is/files.po index a09396d6c0e..32e2dbdcf87 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -113,86 +113,94 @@ msgstr "Hætti við deilingu á {files}" msgid "deleted {files}" msgstr "eyddi {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "bý til ZIP skrá, það gæti tekið smá stund." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Villa við innsendingu" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Loka" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Bíður" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} skrár innsendar" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} skrár skimaðar" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "villa við skimun" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nafn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Stærð" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Breytt" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 skrá" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} skrár" diff --git a/l10n/it/core.po b/l10n/it/core.po index d1d6f74af3f..fcd13a5c7e5 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 08:54+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -166,8 +166,8 @@ msgid "The object type is not specified." msgstr "Il tipo di oggetto non è specificato." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Errore" @@ -179,7 +179,7 @@ msgstr "Il nome dell'applicazione non è specificato." msgid "The required file {file} is not installed!" msgstr "Il file richiesto {file} non è installato!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -207,11 +207,11 @@ msgstr "Condividi con" msgid "Share with link" msgstr "Condividi con collegamento" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Password" @@ -276,23 +276,23 @@ msgstr "eliminare" msgid "share" msgstr "condividere" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Messaggio inviato" @@ -317,7 +317,7 @@ msgid "Request failed!" msgstr "Richiesta non riuscita!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Nome utente" @@ -531,29 +531,29 @@ msgstr "servizi web nelle tue mani" msgid "Log out" msgstr "Esci" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Accesso automatico rifiutato." -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se non hai cambiato la password recentemente, il tuo account potrebbe essere stato compromesso." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "ricorda" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Accedi" @@ -569,6 +569,11 @@ msgstr "precedente" msgid "next" msgstr "successivo" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Avviso di sicurezza" diff --git a/l10n/it/files.po b/l10n/it/files.po index 4dbd873f5db..04eb3b518bd 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 18:21+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -116,86 +116,94 @@ msgstr "non condivisi {files}" msgid "deleted {files}" msgstr "eliminati {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "creazione file ZIP, potrebbe richiedere del tempo." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Chiudi" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "In corso" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} file in fase di caricamentoe" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} file analizzati" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "errore durante la scansione" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Dimensione" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modificato" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 file" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} file" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index ae1bd30ee44..4ea70e822c1 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 11:56+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "オブジェクタイプが指定されていません。" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "エラー" @@ -177,7 +177,7 @@ msgstr "アプリ名がしていされていません。" msgid "The required file {file} is not installed!" msgstr "必要なファイル {file} がインストールされていません!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -205,11 +205,11 @@ msgstr "共有者" msgid "Share with link" msgstr "URLリンクで共有" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "パスワード保護" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "パスワード" @@ -274,23 +274,23 @@ msgstr "削除" msgid "share" msgstr "共有" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "メールを送信しました" @@ -315,7 +315,7 @@ msgid "Request failed!" msgstr "リクエスト失敗!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "ユーザ名" @@ -529,29 +529,29 @@ msgstr "管理下にあるウェブサービス" msgid "Log out" msgstr "ログアウト" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "自動ログインは拒否されました!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "最近パスワードを変更していない場合、あなたのアカウントは危険にさらされているかもしれません。" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "アカウント保護の為、パスワードを再度の変更をお願いいたします。" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "パスワードを忘れましたか?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "パスワードを記憶する" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "ログイン" @@ -567,6 +567,11 @@ msgstr "前" msgid "next" msgstr "次" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "セキュリティ警告!" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 39ebcb8c951..270151e2875 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -4,15 +4,15 @@ # # Translators: # Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012-2013. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -58,11 +58,11 @@ msgstr "ディスクへの書き込みに失敗しました" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "利用可能なスペースが十分にありません" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "無効なディレクトリです。" #: appinfo/app.php:10 msgid "Files" @@ -116,86 +116,94 @@ msgstr "未共有 {files}" msgid "deleted {files}" msgstr "削除 {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIPファイルを生成中です、しばらくお待ちください。" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ディレクトリもしくは0バイトのファイルはアップロードできません" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "アップロードエラー" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "閉じる" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "保留" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} ファイルをアップロード中" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "無効なフォルダ名です。\"Shared\" の利用は ownCloud が予約済みです。" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} ファイルをスキャン" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "スキャン中のエラー" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "名前" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "サイズ" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "更新日時" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} ファイル" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 49ad2e0194a..8af6e0abca8 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "შეცდომა" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -203,11 +203,11 @@ msgstr "გაუზიარე" msgid "Share with link" msgstr "გაუზიარე ლინკით" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "პაროლით დაცვა" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "პაროლი" @@ -272,23 +272,23 @@ msgstr "წაშლა" msgid "share" msgstr "გაზიარება" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "მომხმარებელი" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "შექმენი ადმინ ექაუნტი" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Advanced" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "მონაცემთა საქაღალდე" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "ბაზის კონფიგურირება" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "გამოყენებული იქნება" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "ბაზის მომხმარებელი" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "ბაზის პაროლი" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "ბაზის სახელი" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "ბაზის ცხრილის ზომა" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "ბაზის ჰოსტი" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" @@ -527,29 +527,29 @@ msgstr "თქვენი კონტროლის ქვეშ მყოფ msgid "Log out" msgstr "გამოსვლა" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "ავტომატური შესვლა უარყოფილია!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "დაგავიწყდათ პაროლი?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "დამახსოვრება" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "შესვლა" @@ -565,6 +565,11 @@ msgstr "წინა" msgid "next" msgstr "შემდეგი" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "უსაფრთხოების გაფრთხილება!" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index ebcf1bec0d6..3f8e2c3e87c 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -113,86 +113,94 @@ msgstr "გაზიარება მოხსნილი {files}" msgid "deleted {files}" msgstr "წაშლილი {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-ფაილის გენერირება, ამას ჭირდება გარკვეული დრო." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "შეცდომა ატვირთვისას" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "დახურვა" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} ფაილი იტვირთება" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} ფაილი სკანირებულია" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "შეცდომა სკანირებისას" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "სახელი" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "ზომა" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} ფაილი" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 1f24c97277d..71939ecd09d 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "객체 유형이 지정되지 않았습니다." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "오류" @@ -177,7 +177,7 @@ msgstr "앱 이름이 지정되지 않았습니다." msgid "The required file {file} is not installed!" msgstr "필요한 파일 {file}이(가) 설치되지 않았습니다!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -205,11 +205,11 @@ msgstr "다음으로 공유" msgid "Share with link" msgstr "URL 링크로 공유" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "암호 보호" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "암호" @@ -274,23 +274,23 @@ msgstr "삭제" msgid "share" msgstr "공유" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -314,8 +314,8 @@ msgstr "초기화 이메일을 보냈습니다." msgid "Request failed!" msgstr "요청이 실패했습니다!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "사용자 이름" @@ -404,44 +404,44 @@ msgstr "데이터 디렉터리와 파일을 인터넷에서 접근할 수 있는 msgid "Create an admin account" msgstr "관리자 계정 만들기" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "고급" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "데이터 폴더" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "데이터베이스 설정" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "사용될 예정" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "데이터베이스 이름" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "데이터베이스 테이블 공간" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "데이터베이스 호스트" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "설치 완료" @@ -529,29 +529,29 @@ msgstr "내가 관리하는 웹 서비스" msgid "Log out" msgstr "로그아웃" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "자동 로그인이 거부되었습니다!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "최근에 암호를 변경하지 않았다면 계정이 탈취되었을 수도 있습니다!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "계정의 안전을 위하여 암호를 변경하십시오." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "암호를 잊으셨습니까?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "기억하기" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "로그인" @@ -567,6 +567,11 @@ msgstr "이전" msgid "next" msgstr "다음" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "보안 경고!" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 6eac0f74ad1..8fcada33fa1 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -115,86 +115,94 @@ msgstr "{files} 공유 해제됨" msgid "deleted {files}" msgstr "{files} 삭제됨" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP 파일을 생성하고 있습니다. 시간이 걸릴 수도 있습니다." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "업로드 오류" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "닫기" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "보류 중" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "파일 {count}개 업로드 중" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "폴더 이름이 올바르지 않습니다. \"Shared\" 폴더는 ownCloud에서 예약되었습니다." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "파일 {count}개 검색됨" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "검색 중 오류 발생" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "이름" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "크기" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "수정됨" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "파일 1개" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "파일 {count}개" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 3917e9409cc..1fb884c2fa4 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "هه‌ڵه" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,11 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "وشەی تێپەربو" @@ -272,23 +272,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "ناوی به‌کارهێنه‌ر" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "هه‌ڵبژاردنی پیشكه‌وتوو" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "زانیاری فۆڵده‌ر" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "به‌كارهێنه‌ری داتابه‌یس" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "وشه‌ی نهێنی داتا به‌یس" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "ناوی داتابه‌یس" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "هۆستی داتابه‌یس" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "كۆتایی هات ده‌ستكاریه‌كان" @@ -527,29 +527,29 @@ msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" msgid "Log out" msgstr "چوونەدەرەوە" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -565,6 +565,11 @@ msgstr "پێشتر" msgid "next" msgstr "دواتر" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index a191da36582..bf21806a1e4 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -112,86 +112,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "داخستن" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "ناو" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index eacbddee62c..e1b2e089fc8 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fehler" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,11 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Passwuert" @@ -272,23 +272,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Benotzernumm" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "En Admin Account uleeën" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Advanced" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Daten Dossier" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Datebank konfiguréieren" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "wärt benotzt ginn" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Datebank Benotzer" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Datebank Passwuert" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Datebank Tabelle-Gréisst" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Datebank Server" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Installatioun ofschléissen" @@ -527,29 +527,29 @@ msgstr "Web Servicer ënnert denger Kontroll" msgid "Log out" msgstr "Ausloggen" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "verhalen" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Log dech an" @@ -565,6 +565,11 @@ msgstr "zeréck" msgid "next" msgstr "weider" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index f749e860e99..eb374969b91 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -113,86 +113,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Fehler beim eroplueden" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zoumaachen" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Numm" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Gréisst" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Geännert" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index ecc372bdfea..a73a86f5f43 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Klaida" @@ -176,7 +176,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -204,11 +204,11 @@ msgstr "Dalintis su" msgid "Share with link" msgstr "Dalintis nuoroda" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Apsaugotas slaptažodžiu" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Slaptažodis" @@ -273,23 +273,23 @@ msgstr "ištrinti" msgid "share" msgstr "dalintis" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -313,8 +313,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Prisijungimo vardas" @@ -403,44 +403,44 @@ msgstr "Jūsų duomenų aplankalas ir Jūsų failai turbūt yra pasiekiami per i msgid "Create an admin account" msgstr "Sukurti administratoriaus paskyrą" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Išplėstiniai" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Duomenų katalogas" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Nustatyti duomenų bazę" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "bus naudojama" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Baigti diegimą" @@ -528,29 +528,29 @@ msgstr "jūsų valdomos web paslaugos" msgid "Log out" msgstr "Atsijungti" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatinis prisijungimas atmestas!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jei paskutinių metu nekeitėte savo slaptažodžio, Jūsų paskyra gali būti pavojuje!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Prašome pasikeisti slaptažodį dar kartą, dėl paskyros saugumo." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Pamiršote slaptažodį?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "prisiminti" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Prisijungti" @@ -566,6 +566,11 @@ msgstr "atgal" msgid "next" msgstr "kitas" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Saugumo pranešimas!" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index e82e8e9846d..00d6ea26c63 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -115,86 +115,94 @@ msgstr "nebesidalinti {files}" msgid "deleted {files}" msgstr "ištrinti {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "kuriamas ZIP archyvas, tai gali užtrukti šiek tiek laiko." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Įkėlimo klaida" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Užverti" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Laukiantis" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} įkeliami failai" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} praskanuoti failai" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "klaida skanuojant" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Dydis" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Pakeista" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 failas" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} failai" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 404800bf2bf..81112f772ff 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Kļūme" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,11 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Parole" @@ -272,23 +272,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Lietotājvārds" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Nokonfigurēt datubāzi" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "tiks izmantots" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Datubāzes mājvieta" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Pabeigt uzstādījumus" @@ -527,29 +527,29 @@ msgstr "" msgid "Log out" msgstr "Izlogoties" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Aizmirsāt paroli?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "atcerēties" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Ielogoties" @@ -565,6 +565,11 @@ msgstr "iepriekšējā" msgid "next" msgstr "nākamā" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 8d7b3dbc089..3c9ffdcae22 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -114,86 +114,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Augšuplādēšanas laikā radās kļūda" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nosaukums" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Izmērs" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 6fd1d14dd61..26defed1f78 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 12:49+0000\n" -"Last-Translator: Georgi Stanojevski \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "Не е специфициран типот на објект." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Грешка" @@ -177,7 +177,7 @@ msgstr "Името на апликацијата не е специфицира msgid "The required file {file} is not installed!" msgstr "Задолжителната датотека {file} не е инсталирана!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -205,11 +205,11 @@ msgstr "Сподели со" msgid "Share with link" msgstr "Сподели со врска" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Заштити со лозинка" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Лозинка" @@ -274,23 +274,23 @@ msgstr "избриши" msgid "share" msgstr "сподели" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Е-порака пратена" @@ -315,7 +315,7 @@ msgid "Request failed!" msgstr "Барањето не успеа!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Корисничко име" @@ -529,29 +529,29 @@ msgstr "веб сервиси под Ваша контрола" msgid "Log out" msgstr "Одјава" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Одбиена автоматска најава!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Ако не сте ја промениле лозинката во скоро време, вашата сметка може да е компромитирана" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Ве молам сменете ја лозинката да ја обезбедите вашата сметка повторно." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ја заборавивте лозинката?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "запамти" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Најава" @@ -567,6 +567,11 @@ msgstr "претходно" msgid "next" msgstr "следно" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Безбедносно предупредување." diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 861290c50de..d69548174d3 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -115,86 +115,94 @@ msgstr "без споделување {files}" msgid "deleted {files}" msgstr "избришани {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Се генерира ZIP фајлот, ќе треба извесно време." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Грешка при преземање" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Затвои" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Чека" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} датотеки се подигаат" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Неправилно име на папка. Користењето на „Shared“ е резервирано за Owncloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} датотеки скенирани" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "грешка при скенирање" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Име" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Големина" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Променето" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 папка" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 датотека" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} датотеки" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 8c3a71a0205..4d033dbb5fb 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Ralat" @@ -177,7 +177,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -205,11 +205,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Kata laluan" @@ -274,23 +274,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -314,8 +314,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nama pengguna" @@ -404,44 +404,44 @@ msgstr "" msgid "Create an admin account" msgstr "buat akaun admin" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Maju" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Fail data" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurasi pangkalan data" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Setup selesai" @@ -529,29 +529,29 @@ msgstr "Perkhidmatan web di bawah kawalan anda" msgid "Log out" msgstr "Log keluar" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "ingat" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Log masuk" @@ -567,6 +567,11 @@ msgstr "sebelum" msgid "next" msgstr "seterus" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 772c7c7ac4b..b83093920bc 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -116,86 +116,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "sedang menghasilkan fail ZIP, mungkin mengambil sedikit masa." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Tutup" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Dalam proses" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nama " -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Saiz" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index df292b0cea6..f51cf3fe9bd 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 16:28+0000\n" -"Last-Translator: espenbye \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -571,6 +571,11 @@ msgstr "forrige" msgid "next" msgstr "neste" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Sikkerhetsadvarsel!" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index efc1669f396..02e048476e0 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -121,86 +121,94 @@ msgstr "" msgid "deleted {files}" msgstr "slettet {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "opprettet ZIP-fil, dette kan ta litt tid" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Lukk" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Ventende" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} filer laster opp" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} filer lest inn" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "feil under skanning" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Navn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Størrelse" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Endret" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 fil" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 322c4e3bbf4..ad69e22d393 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 17:28+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -578,6 +578,11 @@ msgstr "vorige" msgid "next" msgstr "volgende" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Beveiligingswaarschuwing!" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index f4f6a49c8ae..61eca60948e 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -123,86 +123,94 @@ msgstr "delen gestopt {files}" msgid "deleted {files}" msgstr "verwijderde {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "aanmaken ZIP-file, dit kan enige tijd duren." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Sluit" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Wachten" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} bestanden aan het uploaden" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Folder naam niet toegestaan. Het gebruik van \"Shared\" is aan Owncloud voorbehouden" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} bestanden gescanned" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "Fout tijdens het scannen" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Naam" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 map" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 bestand" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} bestanden" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index dad899207ea..aeb254d7386 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Feil" @@ -176,7 +176,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -204,11 +204,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Passord" @@ -273,23 +273,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -313,8 +313,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Brukarnamn" @@ -403,44 +403,44 @@ msgstr "" msgid "Create an admin account" msgstr "Lag ein admin-konto" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "vil bli nytta" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Fullfør oppsettet" @@ -528,29 +528,29 @@ msgstr "Vev tjenester under din kontroll" msgid "Log out" msgstr "Logg ut" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Gløymt passordet?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "hugs" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Logg inn" @@ -566,6 +566,11 @@ msgstr "førre" msgid "next" msgstr "neste" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index e9aca8b6874..65d549c7677 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -114,86 +114,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Lukk" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Namn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Storleik" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Endra" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 696e6808a5d..cf638fc7cc4 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Error" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Error al partejar" @@ -203,11 +203,11 @@ msgstr "Parteja amb" msgid "Share with link" msgstr "Parteja amb lo ligam" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Parat per senhal" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Senhal" @@ -272,23 +272,23 @@ msgstr "escafa" msgid "share" msgstr "parteja" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nom d'usancièr" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "Crea un compte admin" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Dorsièr de donadas" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configura la basa de donadas" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "serà utilizat" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Configuracion acabada" @@ -527,29 +527,29 @@ msgstr "Services web jos ton contraròtle" msgid "Log out" msgstr "Sortida" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "L'as perdut lo senhal ?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "bremba-te" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Dintrada" @@ -565,6 +565,11 @@ msgstr "dariièr" msgid "next" msgstr "venent" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index abbd15f4a27..64d593447d7 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -113,86 +113,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Fichièr ZIP a se far, aquò pòt trigar un briu." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Error d'amontcargar" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Al esperar" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "error pendant l'exploracion" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nom" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Talha" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modificat" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 494afd04759..7650db8a55d 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 09:39+0000\n" -"Last-Translator: emc \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -171,8 +171,8 @@ msgid "The object type is not specified." msgstr "Typ obiektu nie jest określony." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Błąd" @@ -184,7 +184,7 @@ msgstr "Nazwa aplikacji nie jest określona." msgid "The required file {file} is not installed!" msgstr "Żądany plik {file} nie jest zainstalowany!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -212,11 +212,11 @@ msgstr "Współdziel z" msgid "Share with link" msgstr "Współdziel z link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Zabezpieczone hasłem" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Hasło" @@ -281,23 +281,23 @@ msgstr "usuń" msgid "share" msgstr "współdziel" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Błąd niszczenie daty wygaśnięcia" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Wyślij Email" @@ -322,7 +322,7 @@ msgid "Request failed!" msgstr "Próba nieudana!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Nazwa użytkownika" @@ -536,29 +536,29 @@ msgstr "usługi internetowe pod kontrolą" msgid "Log out" msgstr "Wylogowuje użytkownika" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatyczne logowanie odrzucone!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jeśli nie było zmianie niedawno hasło, Twoje konto może być zagrożone!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Proszę zmienić swoje hasło, aby zabezpieczyć swoje konto ponownie." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "Zapamiętanie" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Zaloguj" @@ -574,6 +574,11 @@ msgstr "wstecz" msgid "next" msgstr "naprzód" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Ostrzeżenie o zabezpieczeniach!" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 66e7875a122..dd91b1fa48b 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -119,86 +119,94 @@ msgstr "Udostępniane wstrzymane {files}" msgid "deleted {files}" msgstr "usunięto {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'są niedozwolone." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Generowanie pliku ZIP, może potrwać pewien czas." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zamknij" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Oczekujące" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 plik wczytany" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} przesyłanie plików" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Błędna nazwa folderu. Nazwa \"Shared\" jest zarezerwowana dla Owncloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} pliki skanowane" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "Wystąpił błąd podczas skanowania" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nazwa" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Rozmiar" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 folder" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 plik" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} pliki" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index fece08d3db8..2341f21b246 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -161,8 +161,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -174,7 +174,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -202,11 +202,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "" @@ -271,23 +271,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -311,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nazwa użytkownika" @@ -401,44 +401,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -526,29 +526,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -564,6 +564,11 @@ msgstr "" msgid "next" msgstr "" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 84d6007fd24..10cc6d26079 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -112,86 +112,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 3930ee56234..075f189c2ca 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -171,8 +171,8 @@ msgid "The object type is not specified." msgstr "O tipo de objeto não foi especificado." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Erro" @@ -184,7 +184,7 @@ msgstr "O nome do app não foi especificado." msgid "The required file {file} is not installed!" msgstr "O arquivo {file} necessário não está instalado!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -212,11 +212,11 @@ msgstr "Compartilhar com" msgid "Share with link" msgstr "Compartilhar com link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteger com senha" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Senha" @@ -281,23 +281,23 @@ msgstr "remover" msgid "share" msgstr "compartilhar" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -321,8 +321,8 @@ msgstr "Email de redefinição de senha enviado." msgid "Request failed!" msgstr "A requisição falhou!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nome de Usuário" @@ -411,44 +411,44 @@ msgstr "Seu diretório de dados e seus arquivos estão, provavelmente, acessíve msgid "Create an admin account" msgstr "Criar uma conta de administrador" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar o banco de dados" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "será usado" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usuário de banco de dados" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Banco de dados do host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Concluir configuração" @@ -536,29 +536,29 @@ msgstr "web services sob seu controle" msgid "Log out" msgstr "Sair" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Entrada Automática no Sistema Rejeitada!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor troque sua senha para tornar sua conta segura novamente." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Esqueçeu sua senha?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "lembrete" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Log in" @@ -574,6 +574,11 @@ msgstr "anterior" msgid "next" msgstr "próximo" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Aviso de Segurança!" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 8df95d7daf9..1c9143612bb 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -120,86 +120,94 @@ msgstr "{files} não compartilhados" msgid "deleted {files}" msgstr "{files} apagados" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "gerando arquivo ZIP, isso pode levar um tempo." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Fechar" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Pendente" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "Enviando {count} arquivos" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome de pasta inválido. O nome \"Shared\" é reservado pelo Owncloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} arquivos scaneados" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "erro durante verificação" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Tamanho" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} arquivos" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 92daefee097..b7491efa10f 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 01:27+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -167,8 +167,8 @@ msgid "The object type is not specified." msgstr "O tipo de objecto não foi especificado" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Erro" @@ -180,7 +180,7 @@ msgstr "O nome da aplicação não foi especificado" msgid "The required file {file} is not installed!" msgstr "O ficheiro necessário {file} não está instalado!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -208,11 +208,11 @@ msgstr "Partilhar com" msgid "Share with link" msgstr "Partilhar com link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Palavra chave" @@ -277,23 +277,23 @@ msgstr "apagar" msgid "share" msgstr "partilhar" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "E-mail enviado com sucesso!" @@ -318,7 +318,7 @@ msgid "Request failed!" msgstr "O pedido falhou!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Utilizador" @@ -532,29 +532,29 @@ msgstr "serviços web sob o seu controlo" msgid "Log out" msgstr "Sair" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Login automático rejeitado!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se não mudou a sua palavra-passe recentemente, a sua conta pode ter sido comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Esqueceu a sua password?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "lembrar" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" @@ -570,6 +570,11 @@ msgstr "anterior" msgid "next" msgstr "seguinte" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Aviso de Segurança!" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index df8a73ee300..819ff9bb9f0 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 15:33+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -117,86 +117,94 @@ msgstr "{files} não partilhado(s)" msgid "deleted {files}" msgstr "{files} eliminado(s)" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "a gerar o ficheiro ZIP, poderá demorar algum tempo." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Erro no envio" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Fechar" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Pendente" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "A carregar {count} ficheiros" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "O envio foi cancelado." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome de pasta inválido! O uso de \"Shared\" (Partilhado) está reservado pelo OwnCloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} ficheiros analisados" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "erro ao analisar" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Tamanho" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 1596bc408e3..bc3d07b17c3 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 00:19+0000\n" -"Last-Translator: laurentiucristescu \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -569,6 +569,11 @@ msgstr "precedentul" msgid "next" msgstr "următorul" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Advertisment de Securitate" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index a3dee090ef5..74947c210f5 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -117,86 +117,94 @@ msgstr "nedistribuit {files}" msgid "deleted {files}" msgstr "Sterse {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "se generază fișierul ZIP, va dura ceva timp." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Eroare la încărcare" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Închide" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "În așteptare" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} fisiere incarcate" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nume de folder invalid. Numele este rezervat pentru OwnCloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} fisiere scanate" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "eroare la scanarea" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Nume" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Dimensiune" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Modificat" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 folder" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 fisier" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} fisiere" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 6d05bc9e9dd..f6eb332d6be 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 18:19+0000\n" -"Last-Translator: sam002 \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -170,8 +170,8 @@ msgid "The object type is not specified." msgstr "Тип объекта не указан" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Ошибка" @@ -183,7 +183,7 @@ msgstr "Имя приложения не указано" msgid "The required file {file} is not installed!" msgstr "Необходимый файл {file} не установлен!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -211,11 +211,11 @@ msgstr "Поделиться с" msgid "Share with link" msgstr "Поделиться с ссылкой" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Пароль" @@ -280,23 +280,23 @@ msgstr "удалить" msgid "share" msgstr "открыть доступ" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Письмо отправлено" @@ -320,8 +320,8 @@ msgstr "Отправка письма с информацией для сбро msgid "Request failed!" msgstr "Запрос не удался!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Имя пользователя" @@ -410,44 +410,44 @@ msgstr "Ваши каталоги данных и файлы, вероятно, msgid "Create an admin account" msgstr "Создать учётную запись администратора" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Дополнительно" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Директория с данными" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Настройка базы данных" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "будет использовано" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Имя пользователя для базы данных" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Пароль для базы данных" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Название базы данных" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Табличое пространство базы данных" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Хост базы данных" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Завершить установку" @@ -535,29 +535,29 @@ msgstr "Сетевые службы под твоим контролем" msgid "Log out" msgstr "Выйти" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Автоматический вход в систему отключен!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Если Вы недавно не меняли свой пароль, то Ваша учетная запись может быть скомпрометирована!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Пожалуйста, смените пароль, чтобы обезопасить свою учетную запись." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "запомнить" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Войти" @@ -573,6 +573,11 @@ msgstr "пред" msgid "next" msgstr "след" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Предупреждение безопасности!" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 7081267e64e..3edf01da676 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -122,86 +122,94 @@ msgstr "не опубликованные {files}" msgid "deleted {files}" msgstr "удаленные {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "создание ZIP-файла, это может занять некоторое время." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не удается загрузить файл размером 0 байт в каталог" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Закрыть" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Ожидание" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} файлов загружается" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Не правильное имя папки. Имя \"Shared\" резервировано в Owncloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} файлов просканировано" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "ошибка во время санирования" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Название" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Размер" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Изменён" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 папка" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 файл" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} файлов" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index c94ef7d516d..73807cdb096 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 08:08+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -565,6 +565,11 @@ msgstr "предыдущий" msgid "next" msgstr "следующий" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Предупреждение системы безопасности!" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index f8f0840c933..a05762104ac 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -114,86 +114,94 @@ msgstr "Cовместное использование прекращено {ф msgid "deleted {files}" msgstr "удалено {файлы}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допустимы." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Создание ZIP-файла, это может занять некоторое время." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Закрыть" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Ожидающий решения" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "загрузка 1 файла" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{количество} загружено файлов" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Загрузка отменена" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Некорректное имя папки. Нименование \"Опубликовано\" зарезервировано ownCloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{количество} файлов отсканировано" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "ошибка при сканировании" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Имя" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Размер" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Изменен" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 папка" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 файл" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{количество} файлов" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 34d894bfea5..ec48367e164 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "දෝෂයක්" @@ -177,7 +177,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -205,11 +205,11 @@ msgstr "බෙදාගන්න" msgid "Share with link" msgstr "යොමුවක් මඟින් බෙදාගන්න" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "මුර පදයකින් ආරක්ශාකරන්න" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "මුර පදය " @@ -274,23 +274,23 @@ msgstr "මකන්න" msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -314,8 +314,8 @@ msgstr "" msgid "Request failed!" msgstr "ඉල්ලීම අසාර්ථකයි!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "පරිශීලක නම" @@ -404,44 +404,44 @@ msgstr "ඔබගේ දත්ත ඩිරෙක්ටරිය හා ගො msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "දියුණු/උසස්" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "දත්ත ෆෝල්ඩරය" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "දත්ත සමුදාය හැඩගැසීම" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "භාවිතා වනු ඇත" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "දත්තගබඩා භාවිතාකරු" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "දත්තගබඩාවේ මුරපදය" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "දත්තගබඩා සේවාදායකයා" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" @@ -529,29 +529,29 @@ msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවා msgid "Log out" msgstr "නික්මීම" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "මුරපදය අමතකද?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "මතක තබාගන්න" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "ප්‍රවේශවන්න" @@ -567,6 +567,11 @@ msgstr "පෙර" msgid "next" msgstr "ඊළඟ" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index ce3d8e19e61..226a32f5c7e 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -114,86 +114,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ගොනුවක් සෑදෙමින් පවතී. කෙටි වේලාවක් ගත විය හැක" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "උඩුගත කිරීමේ දෝශයක්" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "වසන්න" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "පරීක්ෂා කිරීමේදී දෝෂයක්" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "නම" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index b2275856307..18a21cd799b 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "Nešpecifikovaný typ objektu." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Chyba" @@ -178,7 +178,7 @@ msgstr "Nešpecifikované meno aplikácie." msgid "The required file {file} is not installed!" msgstr "Požadovaný súbor {file} nie je inštalovaný!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -206,11 +206,11 @@ msgstr "Zdieľať s" msgid "Share with link" msgstr "Zdieľať cez odkaz" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Chrániť heslom" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Heslo" @@ -275,23 +275,23 @@ msgstr "zmazať" msgid "share" msgstr "zdieľať" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu vypršania platnosti" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu vypršania platnosti" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -315,8 +315,8 @@ msgstr "Obnovovací email bol odoslaný." msgid "Request failed!" msgstr "Požiadavka zlyhala!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Prihlasovacie meno" @@ -405,44 +405,44 @@ msgstr "Váš priečinok s dátami a Vaše súbory sú pravdepodobne dostupné z msgid "Create an admin account" msgstr "Vytvoriť administrátorský účet" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Pokročilé" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Priečinok dát" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Nastaviť databázu" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "bude použité" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Hostiteľ databázy" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Dokončiť inštaláciu" @@ -530,29 +530,29 @@ msgstr "webové služby pod vašou kontrolou" msgid "Log out" msgstr "Odhlásiť" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatické prihlásenie bolo zamietnuté!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "V nedávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kompromitovaný." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie Vášho účtu" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "zapamätať" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Prihlásiť sa" @@ -568,6 +568,11 @@ msgstr "späť" msgid "next" msgstr "ďalej" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Bezpečnostné varovanie!" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 6e4cd382709..353efc86e43 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -116,86 +116,94 @@ msgstr "zdieľanie zrušené pre {files}" msgid "deleted {files}" msgstr "zmazané {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generujem ZIP-súbor, môže to chvíľu trvať." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Chyba odosielania" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zavrieť" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Čaká sa" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} súborov odosielaných" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Odosielanie zrušené" -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nesprávne meno adresára. Použitie slova \"Shared\" (Zdieľané) je vyhradené službou ownCloud." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} súborov prehľadaných" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "chyba počas kontroly" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Meno" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Veľkosť" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Upravené" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 súbor" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} súborov" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 679277649aa..7e3caa36f52 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" -"PO-Revision-Date: 2012-12-15 16:29+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "Vrsta predmeta ni podana." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Napaka" @@ -178,7 +178,7 @@ msgstr "Ime aplikacije ni podano." msgid "The required file {file} is not installed!" msgstr "Zahtevana datoteka {file} ni nameščena!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -206,11 +206,11 @@ msgstr "Omogoči souporabo z" msgid "Share with link" msgstr "Omogoči souporabo s povezavo" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Zaščiti z geslom" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Geslo" @@ -275,23 +275,23 @@ msgstr "izbriše" msgid "share" msgstr "določi souporabo" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Pošiljam ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "E-pošta je bila poslana" @@ -316,7 +316,7 @@ msgid "Request failed!" msgstr "Zahtevek je spodletel!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Uporabniško Ime" @@ -530,29 +530,29 @@ msgstr "spletne storitve pod vašim nadzorom" msgid "Log out" msgstr "Odjava" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Samodejno prijavljanje je zavrnjeno!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Če vašega gesla niste nedavno spremenili, je vaš račun lahko ogrožen!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Spremenite geslo za izboljšanje zaščite računa." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ali ste pozabili geslo?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "Zapomni si me" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Prijava" @@ -568,6 +568,11 @@ msgstr "nazaj" msgid "next" msgstr "naprej" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Varnostno opozorilo!" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 5958b770296..f860a206607 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -116,86 +116,94 @@ msgstr "odstranjeno iz souporabe {files}" msgid "deleted {files}" msgstr "izbrisano {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Ustvarjanje datoteke ZIP. To lahko traja nekaj časa." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Pošiljanje ni mogoče, saj gre za mapo, ali pa je datoteka velikosti 0 bajtov." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Napaka med nalaganjem" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zapri" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "V čakanju ..." -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "nalagam {count} datotek" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Neveljavno ime datoteke. Uporaba mape \"Share\" je rezervirana za ownCloud." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} files scanned" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "napaka med pregledovanjem datotek" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Ime" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Velikost" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} datotek" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 994085414f7..3fb069e1e2b 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -161,8 +161,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -174,7 +174,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -202,11 +202,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "" @@ -271,23 +271,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -311,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "" @@ -401,44 +401,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -526,29 +526,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -564,6 +564,11 @@ msgstr "" msgid "next" msgstr "" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index efe363e09ed..630aae282ae 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -112,86 +112,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 9bf9f33c5e3..f934d66c739 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "Врста објекта није подешена." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Грешка" @@ -177,7 +177,7 @@ msgstr "Име програма није унето." msgid "The required file {file} is not installed!" msgstr "Потребна датотека {file} није инсталирана." -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -205,11 +205,11 @@ msgstr "Подели са" msgid "Share with link" msgstr "Подели линк" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Заштићено лозинком" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Лозинка" @@ -274,23 +274,23 @@ msgstr "обриши" msgid "share" msgstr "подели" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -314,8 +314,8 @@ msgstr "Захтев је послат поштом." msgid "Request failed!" msgstr "Захтев одбијен!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Корисничко име" @@ -404,44 +404,44 @@ msgstr "Тренутно су ваши подаци и датотеке дост msgid "Create an admin account" msgstr "Направи административни налог" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Фацикла података" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Подешавање базе" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "ће бити коришћен" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Радни простор базе података" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Заврши подешавање" @@ -529,29 +529,29 @@ msgstr "веб сервиси под контролом" msgid "Log out" msgstr "Одјава" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Аутоматска пријава је одбијена!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Ако ускоро не промените лозинку ваш налог може бити компромитован!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Промените лозинку да бисте обезбедили налог." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Изгубили сте лозинку?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "упамти" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Пријава" @@ -567,6 +567,11 @@ msgstr "претходно" msgid "next" msgstr "следеће" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Сигурносно упозорење!" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 19a9c5e5c01..e9bbfde5224 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -115,86 +115,94 @@ msgstr "укинуто дељење {files}" msgid "deleted {files}" msgstr "обрисано {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "правим ZIP датотеку…" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Грешка при отпремању" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Затвори" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "На чекању" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "Отпремам {count} датотеке/а" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Неисправан назив фасцикле. „Дељено“ користи Оунклауд." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "Скенирано датотека: {count}" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "грешка при скенирању" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Назив" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Величина" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Измењено" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 датотека" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} датотеке/а" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index d005ce30765..656f2cb83de 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,11 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Lozinka" @@ -272,23 +272,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Korisničko ime" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "Napravi administrativni nalog" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Facikla podataka" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Podešavanje baze" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "će biti korišćen" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Završi podešavanje" @@ -527,29 +527,29 @@ msgstr "" msgid "Log out" msgstr "Odjava" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "upamti" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -565,6 +565,11 @@ msgstr "prethodno" msgid "next" msgstr "sledeće" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index be81ff388b3..05623f16057 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -113,86 +113,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zatvori" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Ime" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Veličina" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index ec20f3de3d6..ba0480c2ab7 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-26 00:11+0100\n" -"PO-Revision-Date: 2012-12-25 08:10+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -570,6 +570,11 @@ msgstr "föregående" msgid "next" msgstr "nästa" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Säkerhetsvarning!" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index ae07b2b0daa..8363e4c37a6 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -5,7 +5,7 @@ # Translators: # Christer Eriksson , 2012. # Daniel Sandman , 2012. -# Magnus Höglund , 2012. +# Magnus Höglund , 2012-2013. # , 2012. # , 2011, 2012. # , 2012. @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -60,11 +60,11 @@ msgstr "Misslyckades spara till disk" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Inte tillräckligt med utrymme tillgängligt" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Felaktig mapp." #: appinfo/app.php:10 msgid "Files" @@ -118,86 +118,94 @@ msgstr "stoppad delning {files}" msgid "deleted {files}" msgstr "raderade {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "genererar ZIP-fil, det kan ta lite tid." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Stäng" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Väntar" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} filer laddas upp" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Ordet \"Delad\" är reserverat av ownCloud." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} filer skannade" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "fel vid skanning" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Namn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Storlek" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Ändrad" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 fil" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 454448de312..6558c4d5afb 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "பொருள் வகை குறிப்பிடப்படவில்லை." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "வழு" @@ -175,7 +175,7 @@ msgstr "செயலி பெயர் குறிப்பிடப்பட msgid "The required file {file} is not installed!" msgstr "தேவைப்பட்ட கோப்பு {கோப்பு} நிறுவப்படவில்லை!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -203,11 +203,11 @@ msgstr "பகிர்தல்" msgid "Share with link" msgstr "இணைப்புடன் பகிர்தல்" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "கடவுச்சொல்லை பாதுகாத்தல்" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "கடவுச்சொல்" @@ -272,23 +272,23 @@ msgstr "நீக்குக" msgid "share" msgstr "பகிர்தல்" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "மின்னுஞ்சல் அனுப்புதலை மீ msgid "Request failed!" msgstr "வேண்டுகோள் தோல்வியுற்றது!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "பயனாளர் பெயர்" @@ -402,44 +402,44 @@ msgstr "உங்களுடைய தரவு அடைவு மற்று msgid "Create an admin account" msgstr " நிர்வாக கணக்கொன்றை உருவாக்குக" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "மேம்பட்ட" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "தரவு கோப்புறை" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "தரவுத்தளத்தை தகவமைக்க" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "பயன்படுத்தப்படும்" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "தரவுத்தள பயனாளர்" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "தரவுத்தள கடவுச்சொல்" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "தரவுத்தள பெயர்" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "தரவுத்தள அட்டவணை" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "தரவுத்தள ஓம்புனர்" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "அமைப்பை முடிக்க" @@ -527,29 +527,29 @@ msgstr "உங்கள் கட்டுப்பாட்டின் கீ msgid "Log out" msgstr "விடுபதிகை செய்க" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "தன்னிச்சையான புகுபதிகை நிராகரிப்பட்டது!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "உங்களுடைய கடவுச்சொல்லை அண்மையில் மாற்றவில்லையின், உங்களுடைய கணக்கு சமரசமாகிவிடும்!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "உங்களுடைய கணக்கை மீண்டும் பாதுகாக்க தயவுசெய்து உங்களுடைய கடவுச்சொல்லை மாற்றவும்." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "ஞாபகப்படுத்துக" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "புகுபதிகை" @@ -565,6 +565,11 @@ msgstr "முந்தைய" msgid "next" msgstr "அடுத்து" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "பாதுகாப்பு எச்சரிக்கை!" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 86eaae3dd59..159a5621888 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -113,86 +113,94 @@ msgstr "பகிரப்படாதது {கோப்புகள்}" msgid "deleted {files}" msgstr "நீக்கப்பட்டது {கோப்புகள்}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr " ZIP கோப்பு உருவாக்கப்படுகின்றது, இது சில நேரம் ஆகலாம்." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "பதிவேற்றல் வழு" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "மூடுக" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "செல்லுபடியற்ற கோப்புறை பெயர். \"பகிர்வின்\" பாவனை Owncloud இனால் ஒதுக்கப்பட்டுள்ளது" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "வருடும் போதான வழு" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "பெயர்" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "அளவு" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 6be8fc8018a..4e7b7b1279e 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -564,6 +564,11 @@ msgstr "" msgid "next" msgstr "" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 75c8980fa85..bcfc0709455 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -112,86 +112,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index e43c1143691..2acbfdd22f2 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\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 9036d8d3091..1cdb866c5d4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\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 a260296a66a..c53d94e2b98 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\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 78905414136..8d5d1e69f44 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\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 7da716a8aab..f7616ac54b9 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,27 +17,27 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f933cb03821..ab8101b4de0 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\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 fc4eb6385e7..bb356f00380 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\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 6189b17c9a8..f86a111ef8a 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\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 0138e60fb80..181be943eb8 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "ชนิดของวัตถุยังไม่ได้รับการระบุ" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "พบข้อผิดพลาด" @@ -176,7 +176,7 @@ msgstr "ชื่อของแอปยังไม่ได้รับกา msgid "The required file {file} is not installed!" msgstr "ไฟล์ {file} ซึ่งเป็นไฟล์ที่จำเป็นต้องได้รับการติดตั้งไว้ก่อน ยังไม่ได้ถูกติดตั้ง" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -204,11 +204,11 @@ msgstr "แชร์ให้กับ" msgid "Share with link" msgstr "แชร์ด้วยลิงก์" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "รหัสผ่าน" @@ -273,23 +273,23 @@ msgstr "ลบ" msgid "share" msgstr "แชร์" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -313,8 +313,8 @@ msgstr "รีเซ็ตค่าการส่งอีเมล" msgid "Request failed!" msgstr "คำร้องขอล้มเหลว!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "ชื่อผู้ใช้งาน" @@ -403,44 +403,44 @@ msgstr "ไดเร็กทอรี่ข้อมูลและไฟล์ msgid "Create an admin account" msgstr "สร้าง บัญชีผู้ดูแลระบบ" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "ขั้นสูง" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "โฟลเดอร์เก็บข้อมูล" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "กำหนดค่าฐานข้อมูล" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "จะถูกใช้" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "ชื่อฐานข้อมูล" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "พื้นที่ตารางในฐานข้อมูล" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Database host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" @@ -528,29 +528,29 @@ msgstr "web services under your control" msgid "Log out" msgstr "ออกจากระบบ" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "การเข้าสู่ระบบอัตโนมัติถูกปฏิเสธแล้ว" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "หากคุณยังไม่ได้เปลี่ยนรหัสผ่านของคุณเมื่อเร็วๆนี้, บัญชีของคุณอาจถูกบุกรุกโดยผู้อื่น" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "กรุณาเปลี่ยนรหัสผ่านของคุณอีกครั้ง เพื่อป้องกันบัญชีของคุณให้ปลอดภัย" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "ลืมรหัสผ่าน?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "จำรหัสผ่าน" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "เข้าสู่ระบบ" @@ -566,6 +566,11 @@ msgstr "ก่อนหน้า" msgid "next" msgstr "ถัดไป" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "คำเตือนเพื่อความปลอดภัย!" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 4ba029facfd..2a74335e2b3 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -114,86 +114,94 @@ msgstr "ยกเลิกการแชร์แล้ว {files} ไฟล์ msgid "deleted {files}" msgstr "ลบไฟล์แล้ว {files} ไฟล์" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "เกิดข้อผิดพลาดในการอัพโหลด" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "ปิด" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "กำลังอัพโหลด {count} ไฟล์" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "ชื่อโฟลเดอร์ที่ใช้ไม่ถูกต้อง การใช้งาน \"ถูกแชร์\" ถูกสงวนไว้เฉพาะ Owncloud เท่านั้น" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "สแกนไฟล์แล้ว {count} ไฟล์" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "พบข้อผิดพลาดในระหว่างการสแกนไฟล์" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "ชื่อ" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "ขนาด" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} ไฟล์" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 7058a258c8a..d8d8d152b72 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 12:25+0000\n" -"Last-Translator: Necdet Yücel \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" @@ -568,6 +568,11 @@ msgstr "önceki" msgid "next" msgstr "sonraki" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Güvenlik Uyarısı!" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 0346536aa7e..c04a2d2ebd1 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -117,86 +117,94 @@ msgstr "paylaşılmamış {files}" msgid "deleted {files}" msgstr "silinen {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP dosyası oluşturuluyor, biraz sürebilir." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Yükleme hatası" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Kapat" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Bekliyor" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} dosya yükleniyor" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır." -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} dosya tarandı" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "tararamada hata oluşdu" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Ad" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Boyut" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 dosya" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} dosya" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 6fa7d5e24ee..df066c2f2bb 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 15:49+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "Не визначено тип об'єкту." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Помилка" @@ -178,7 +178,7 @@ msgstr "Не визначено ім'я програми." msgid "The required file {file} is not installed!" msgstr "Необхідний файл {file} не встановлено!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -206,11 +206,11 @@ msgstr "Опублікувати для" msgid "Share with link" msgstr "Опублікувати через посилання" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Захистити паролем" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Пароль" @@ -275,23 +275,23 @@ msgstr "видалити" msgid "share" msgstr "опублікувати" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Ел. пошта надіслана" @@ -315,8 +315,8 @@ msgstr "Лист скидання відправлено." msgid "Request failed!" msgstr "Невдалий запит!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Ім'я користувача" @@ -405,44 +405,44 @@ msgstr "Ваш каталог з даними та Ваші файли можл msgid "Create an admin account" msgstr "Створити обліковий запис адміністратора" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Додатково" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Каталог даних" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Налаштування бази даних" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "буде використано" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Назва бази даних" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Таблиця бази даних" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Хост бази даних" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Завершити налаштування" @@ -530,29 +530,29 @@ msgstr "веб-сервіс під вашим контролем" msgid "Log out" msgstr "Вихід" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Автоматичний вхід в систему відхилений!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Якщо Ви не міняли пароль останнім часом, Ваш обліковий запис може бути скомпрометованим!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Будь ласка, змініть свій пароль, щоб знову захистити Ваш обліковий запис." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Забули пароль?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "запам'ятати" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Вхід" @@ -568,6 +568,11 @@ msgstr "попередній" msgid "next" msgstr "наступний" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Попередження про небезпеку!" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 4e662e7cffa..eb36e0d5bc2 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -115,86 +115,94 @@ msgstr "неопубліковано {files}" msgid "deleted {files}" msgstr "видалено {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Створення ZIP-файлу, це може зайняти певний час." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Помилка завантаження" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Закрити" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Очікування" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} файлів завантажується" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Невірне ім'я каталогу. Використання \"Shared\" зарезервовано Owncloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} файлів проскановано" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "помилка при скануванні" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Ім'я" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Розмір" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Змінено" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 папка" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 файл" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} файлів" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index bb3bb8b48dc..54b468ce536 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -166,8 +166,8 @@ msgid "The object type is not specified." msgstr "Loại đối tượng không được chỉ định." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Lỗi" @@ -179,7 +179,7 @@ msgstr "Tên ứng dụng không được chỉ định." msgid "The required file {file} is not installed!" msgstr "Tập tin cần thiết {file} không được cài đặt!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -207,11 +207,11 @@ msgstr "Chia sẻ với" msgid "Share with link" msgstr "Chia sẻ với liên kết" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Mật khẩu bảo vệ" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Mật khẩu" @@ -276,23 +276,23 @@ msgstr "xóa" msgid "share" msgstr "chia sẻ" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -316,8 +316,8 @@ msgstr "Thiết lập lại email gởi." msgid "Request failed!" msgstr "Yêu cầu của bạn không thành công !" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Tên người dùng" @@ -406,44 +406,44 @@ msgstr "Thư mục dữ liệu và những tập tin của bạn có thể dễ msgid "Create an admin account" msgstr "Tạo một tài khoản quản trị" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Nâng cao" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Thư mục dữ liệu" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Cấu hình cơ sở dữ liệu" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "được sử dụng" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Cơ sở dữ liệu tablespace" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Database host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Cài đặt hoàn tất" @@ -531,29 +531,29 @@ msgstr "các dịch vụ web dưới sự kiểm soát của bạn" msgid "Log out" msgstr "Đăng xuất" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Tự động đăng nhập đã bị từ chối !" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Nếu bạn không thay đổi mật khẩu gần đây của bạn, tài khoản của bạn có thể gặp nguy hiểm!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Vui lòng thay đổi mật khẩu của bạn để đảm bảo tài khoản của bạn một lần nữa." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Bạn quên mật khẩu ?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "ghi nhớ" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Đăng nhập" @@ -569,6 +569,11 @@ msgstr "Lùi lại" msgid "next" msgstr "Kế tiếp" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Cảnh báo bảo mật !" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 072b6a52b75..3fae659a1dc 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -116,86 +116,94 @@ msgstr "hủy chia sẽ {files}" msgid "deleted {files}" msgstr "đã xóa {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Tạo tập tin ZIP, điều này có thể làm mất một chút thời gian" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Đóng" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Chờ" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} tập tin đang tải lên" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:445 +#: js/files.js:457 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/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Tên thư mục không hợp lệ. Sử dụng \"Chia sẻ\" được dành riêng bởi Owncloud" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} tập tin đã được quét" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "lỗi trong khi quét" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "Tên" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} tập tin" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index ad918d8e012..22b5d6cdfc8 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "错误" @@ -176,7 +176,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "分享出错" @@ -204,11 +204,11 @@ msgstr "分享" msgid "Share with link" msgstr "分享链接" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "密码保护" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "密码" @@ -273,23 +273,23 @@ msgstr "删除" msgid "share" msgstr "分享" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "密码保护" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "取消设置失效日期出错" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "设置失效日期出错" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -313,8 +313,8 @@ msgstr "重置邮件已发送。" msgid "Request failed!" msgstr "请求失败!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "用户名" @@ -403,44 +403,44 @@ msgstr "您的数据文件夹和您的文件或许能够从互联网访问。own msgid "Create an admin account" msgstr "建立一个 管理帐户" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "进阶" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "数据存放文件夹" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "将会使用" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "数据库用户名" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "数据库表格空间" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "完成安装" @@ -528,29 +528,29 @@ msgstr "你控制下的网络服务" msgid "Log out" msgstr "注销" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "自动登录被拒绝!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "如果您最近没有修改您的密码,那您的帐号可能被攻击了!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "请修改您的密码以保护账户。" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "备忘" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "登陆" @@ -566,6 +566,11 @@ msgstr "后退" msgid "next" msgstr "前进" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "安全警告!" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 7bb14a3205e..42c58c88cbf 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -114,86 +114,94 @@ msgstr "未分享的 {files}" msgid "deleted {files}" msgstr "已删除的 {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "正在生成ZIP文件,这可能需要点时间" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大小为0" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "关闭" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "Pending" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} 个文件正在上传" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传。关闭页面会取消上传。" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} 个文件已扫描" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "扫描出错" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "名字" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "大小" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "修改日期" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 个文件" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 2742708ecc6..8b6fa46a9a6 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 14:31+0000\n" -"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -569,6 +569,11 @@ msgstr "上一页" msgid "next" msgstr "下一页" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "安全警告!" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 6a22db26f15..2ce09f94756 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -117,86 +117,94 @@ msgstr "取消了共享 {files}" msgid "deleted {files}" msgstr "删除了 {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "正在生成 ZIP 文件,可能需要一些时间" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "关闭" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "操作等待中" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} 个文件上传中" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "无效的文件夹名称。”Shared“ 是 Owncloud 保留字符。" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "{count} 个文件已扫描。" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "扫描时出错" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "名称" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "大小" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "修改日期" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 个文件" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 27fcd9c0a1f..c6e8fb669fd 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,11 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "" @@ -272,23 +272,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -527,29 +527,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -565,6 +565,11 @@ msgstr "" msgid "next" msgstr "" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 7bd0e19490f..5c06f6af94d 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -112,86 +112,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 9e9cb515874..5452634a4bf 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "錯誤" @@ -177,7 +177,7 @@ msgstr "沒有詳述APP名稱." msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -205,11 +205,11 @@ msgstr "與分享" msgid "Share with link" msgstr "使用連結分享" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "密碼" @@ -274,23 +274,23 @@ msgstr "刪除" msgid "share" msgstr "分享" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "錯誤的到期日設定" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -314,8 +314,8 @@ msgstr "重設郵件已送出." msgid "Request failed!" msgstr "請求失敗!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "使用者名稱" @@ -404,44 +404,44 @@ msgstr "" msgid "Create an admin account" msgstr "建立一個管理者帳號" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "進階" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "資料夾" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "將會使用" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "完成設定" @@ -529,29 +529,29 @@ msgstr "網路服務已在你控制" msgid "Log out" msgstr "登出" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "忘記密碼?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "記住" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "登入" @@ -567,6 +567,11 @@ msgstr "上一頁" msgid "next" msgstr "下一頁" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "安全性警告!" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 53c704dd1ac..5dda16d794a 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+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" @@ -116,86 +116,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "產生壓縮檔, 它可能需要一段時間." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "上傳發生錯誤" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "關閉" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "{count} 個檔案正在上傳" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中. 離開此頁面將會取消上傳." -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "無效的資料夾名稱. \"Shared\" 名稱已被 Owncloud 所保留使用" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "掃描時發生錯誤" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "名稱" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "大小" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "修改" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "{count} 個檔案" diff --git a/l10n/zu_ZA/core.po b/l10n/zu_ZA/core.po index 57a6cff9898..c5466fa4b40 100644 --- a/l10n/zu_ZA/core.po +++ b/l10n/zu_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -161,8 +161,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -174,7 +174,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -202,11 +202,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "" @@ -271,23 +271,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -311,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "" @@ -401,44 +401,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -526,29 +526,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -564,6 +564,11 @@ msgstr "" msgid "next" msgstr "" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "" diff --git a/l10n/zu_ZA/files.po b/l10n/zu_ZA/files.po index 86f620523c9..2760f9f95af 100644 --- a/l10n/zu_ZA/files.po +++ b/l10n/zu_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -112,86 +112,94 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:374 js/files.js:404 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:337 js/files.js:352 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:355 js/files.js:388 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:457 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 +#: js/files.js:527 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:711 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:719 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:792 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:793 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:794 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:801 +#: js/files.js:813 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:815 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:823 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:825 msgid "{count} files" msgstr "" -- cgit v1.2.3 From cbb118d4a3a26c9471ffc40cc387df4333031da1 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Mon, 7 Jan 2013 10:39:35 +0100 Subject: adapt to isFileNameValid, whitespace cleanup --- apps/files/js/filelist.js | 7 +------ apps/files/js/files.js | 40 ++++++++++++++++++---------------------- 2 files changed, 19 insertions(+), 28 deletions(-) (limited to 'apps') diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index c4c53ca878a..66697bbbf56 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -151,12 +151,7 @@ var FileList={ var newname=input.val(); if (!Files.isFileNameValid(newname)) { return false; - } else if (newname.length == 0) { - $('#notification').text(t('files', "Name cannot be empty.")); - $('#notification').fadeIn(); - return false; - } - if (newname != name) { + } else if (newname != name) { if (FileList.checkName(name, newname, false)) { newname = name; } else { diff --git a/apps/files/js/files.js b/apps/files/js/files.js index a824b9d3059..91204f041e5 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -26,19 +26,19 @@ Files={ }); procesSelection(); }, - isFileNameValid:function (name) { - if (name === '.') { - $('#notification').text(t('files', "'.' is an invalid file name.")); - $('#notification').fadeIn(); - return false; - } - if (name.length == 0) { - $('#notification').text(t('files', "File name cannot be empty.")); - $('#notification').fadeIn(); - return false; - } - - // check for invalid characters + isFileNameValid:function (name) { + if (name === '.') { + $('#notification').text(t('files', '\'.\' is an invalid file name.')); + $('#notification').fadeIn(); + return false; + } + if (name.length == 0) { + $('#notification').text(t('files', 'File name cannot be empty.')); + $('#notification').fadeIn(); + return false; + } + + // check for invalid characters var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*']; for (var i = 0; i < invalid_characters.length; i++) { if (name.indexOf(invalid_characters[i]) != -1) { @@ -526,18 +526,14 @@ $(document).ready(function() { event.stopPropagation(); event.preventDefault(); var newname=input.val(); - if(type != 'web' && !Files.isFileNameValid(newname)){ - return false; - } else if (newname.length == 0) { - if(type == 'web') { - $('#notification').text(t('files', "URL cannot be empty.")); - } else { - $('#notification').text(t('files', "Name cannot be empty.")); - } + if(type == 'web' && newname.length == 0) { + $('#notification').text(t('files', 'URL cannot be empty.')); $('#notification').fadeIn(); return false; + } else if (type != 'web' && !Files.isFileNameValid(newname)) { + return false; } else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') { - $('#notification').text(t('files','Invalid folder name. Usage of "Shared" is reserved by Owncloud')); + $('#notification').text(t('files','Invalid folder name. Usage of \'Shared\' is reserved by Owncloud')); $('#notification').fadeIn(); return false; } -- cgit v1.2.3 From da442b024c50160be58281975a6fabe2d86a61a7 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Mon, 7 Jan 2013 11:11:21 +0100 Subject: remove aborted uploads --- apps/files/js/files.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apps') diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 91204f041e5..6d19a341e9e 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -351,6 +351,7 @@ $(document).ready(function() { } else { uploadtext.text(t('files', '{count} files uploading', {count: currentUploads})); } + delete uploadingFiles[dirName][fileName]; $('#notification').hide(); $('#notification').text(t('files', 'Upload cancelled.')); $('#notification').fadeIn(); @@ -376,6 +377,7 @@ $(document).ready(function() { } FileList.loadingDone(file.name, file.id); } else { + Files.cancelUpload(this.files[0].name); $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); $('#fileList > tr').not('[data-mime]').fadeOut(); @@ -384,6 +386,7 @@ $(document).ready(function() { }) .error(function(jqXHR, textStatus, errorThrown) { if(errorThrown === 'abort') { + Files.cancelUpload(this.files[0].name); $('#notification').hide(); $('#notification').text(t('files', 'Upload cancelled.')); $('#notification').fadeIn(); -- cgit v1.2.3 From 3bb7ee521f38e1ab1fc7cd160dc3d0ae77f0433e Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Mon, 7 Jan 2013 12:23:29 +0100 Subject: attach max upload tipsy to div instead of a to fix tooltip not showing due to new z-index --- apps/files/js/files.js | 4 ++++ apps/files/templates/index.php | 6 +++--- core/js/js.js | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) (limited to 'apps') diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 6d19a341e9e..038660e6e49 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -322,6 +322,7 @@ $(document).ready(function() { if ($.assocArraySize(uploadingFiles[dirName]) == 0) { delete uploadingFiles[dirName]; } + //TODO update file upload size limit var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext') var currentUploads = parseInt(uploadtext.attr('currentUploads')); @@ -375,6 +376,7 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } + //TODO update file upload size limit FileList.loadingDone(file.name, file.id); } else { Files.cancelUpload(this.files[0].name); @@ -407,8 +409,10 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } + //TODO update file upload size limit FileList.loadingDone(file.name, file.id); } else { + //TODO Files.cancelUpload(/*where do we get the filename*/); $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); $('#fileList > tr').not('[data-mime]').fadeOut(); diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 3bcb865ccdb..2e0772443f2 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -14,7 +14,8 @@ data-type='web'>

t('From link');?>

-
+
- +
diff --git a/core/js/js.js b/core/js/js.js index 9f3e8f92100..95889ac8a27 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -622,7 +622,7 @@ $(document).ready(function(){ $('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true}); $('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true}); $('.password .action').tipsy({gravity:'se', fade:true, live:true}); - $('#upload a').tipsy({gravity:'w', fade:true}); + $('#upload').tipsy({gravity:'w', fade:true}); $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true}); $('a.delete').tipsy({gravity: 'e', fade:true, live:true}); $('a.action').tipsy({gravity:'s', fade:true, live:true}); -- cgit v1.2.3 From 861f32a22b04d7052412f76d4fa22c29916971f8 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Mon, 7 Jan 2013 16:45:03 +0100 Subject: Update apps/user_webdavauth/user_webdavauth.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixing wrong documentation. Fixes https://github.com/owncloud/core/issues/1110  --- apps/user_webdavauth/user_webdavauth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index 839196c114c..1459781a3b4 100755 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -65,7 +65,7 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { } /* - * we don´t know if a user exists without the password. so we have to return false all the time + * we don´t know if a user exists without the password. so we have to return true all the time */ public function userExists( $uid ){ return true; -- cgit v1.2.3 From b69328e1d1f0888c2541e3f0be27e534f980adb4 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 8 Jan 2013 00:31:36 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 2 ++ apps/files/l10n/cs_CZ.php | 2 ++ apps/files/l10n/es.php | 2 ++ apps/files/l10n/fr.php | 4 ++++ apps/files/l10n/it.php | 2 ++ apps/files/l10n/ja_JP.php | 2 ++ apps/files/l10n/ko.php | 4 ++++ apps/files/l10n/nl.php | 4 ++++ apps/files_external/l10n/ko.php | 2 ++ apps/user_ldap/l10n/ko.php | 2 ++ apps/user_webdavauth/l10n/ko.php | 3 ++- core/l10n/ca.php | 1 + core/l10n/cs_CZ.php | 1 + core/l10n/es.php | 1 + core/l10n/fr.php | 1 + core/l10n/it.php | 1 + core/l10n/ja_JP.php | 1 + core/l10n/ko.php | 9 +++++++++ core/l10n/nl.php | 1 + l10n/ca/core.po | 10 +++++----- l10n/ca/files.po | 12 ++++++------ l10n/cs_CZ/core.po | 10 +++++----- l10n/cs_CZ/files.po | 10 +++++----- l10n/es/core.po | 10 +++++----- l10n/es/files.po | 12 ++++++------ l10n/fr/core.po | 10 +++++----- l10n/fr/files.po | 16 ++++++++-------- l10n/it/core.po | 10 +++++----- l10n/it/files.po | 10 +++++----- l10n/ja_JP/core.po | 10 +++++----- l10n/ja_JP/files.po | 10 +++++----- l10n/ko/core.po | 25 +++++++++++++------------ l10n/ko/files.po | 15 ++++++++------- l10n/ko/files_external.po | 17 +++++++++-------- l10n/ko/settings.po | 37 +++++++++++++++++++------------------ l10n/ko/user_ldap.po | 11 ++++++----- l10n/ko/user_webdavauth.po | 11 ++++++----- l10n/nl/core.po | 10 +++++----- l10n/nl/files.po | 16 ++++++++-------- l10n/nl/settings.po | 16 ++++++++-------- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/ko.php | 15 +++++++++++++++ settings/l10n/nl.php | 4 ++++ 52 files changed, 220 insertions(+), 152 deletions(-) (limited to 'apps') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 981b8ec7ec9..c30f3a97add 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}", "unshared {files}" => "no compartits {files}", "deleted {files}" => "eliminats {files}", +"'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.", +"File name cannot be empty." => "El nom del fitxer no pot ser buit.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.", "generating ZIP-file, it may take some time." => "s'estan generant fitxers ZIP, pot trigar una estona.", "Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index ab21b8a2750..a7ccd3187f6 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", "unshared {files}" => "sdílení zrušeno pro {files}", "deleted {files}" => "smazáno {files}", +"'.' is an invalid file name." => "'.' je neplatným názvem souboru.", +"File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", "generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to nějakou dobu trvat.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 2b9bdeeece9..a92720581b8 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "unshared {files}" => "{files} descompartidos", "deleted {files}" => "{files} eliminados", +"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", +"File name cannot be empty." => "El nombre de archivo no puede estar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", "generating ZIP-file, it may take some time." => "generando un fichero ZIP, puede llevar un tiempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 8ffb0d351f7..95405a81a86 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -7,6 +7,8 @@ "No file was uploaded" => "Aucun fichier n'a été téléversé", "Missing a temporary folder" => "Il manque un répertoire temporaire", "Failed to write to disk" => "Erreur d'écriture sur le disque", +"Not enough space available" => "Espace disponible insuffisant", +"Invalid directory." => "Dossier invalide.", "Files" => "Fichiers", "Unshare" => "Ne plus partager", "Delete" => "Supprimer", @@ -20,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "unshared {files}" => "Fichiers non partagés : {files}", "deleted {files}" => "Fichiers supprimés : {files}", +"'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", +"File name cannot be empty." => "Le nom de fichier ne peut être vide.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "generating ZIP-file, it may take some time." => "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 6c7ca59774e..e74bfae2e8c 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "unshared {files}" => "non condivisi {files}", "deleted {files}" => "eliminati {files}", +"'.' is an invalid file name." => "'.' non è un nome file valido.", +"File name cannot be empty." => "Il nome del file non può essere vuoto.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", "generating ZIP-file, it may take some time." => "creazione file ZIP, potrebbe richiedere del tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index ca5ba564476..bc7be7ea695 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", "unshared {files}" => "未共有 {files}", "deleted {files}" => "削除 {files}", +"'.' is an invalid file name." => "'.' は無効なファイル名です。", +"File name cannot be empty." => "ファイル名を空にすることはできません。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。", "generating ZIP-file, it may take some time." => "ZIPファイルを生成中です、しばらくお待ちください。", "Unable to upload your file as it is a directory or has 0 bytes" => "ディレクトリもしくは0バイトのファイルはアップロードできません", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index d0a6d57538a..9d46afc97e9 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -7,6 +7,8 @@ "No file was uploaded" => "업로드된 파일 없음", "Missing a temporary folder" => "임시 폴더가 사라짐", "Failed to write to disk" => "디스크에 쓰지 못했습니다", +"Not enough space available" => "여유공간이 부족합니다", +"Invalid directory." => "올바르지 않은 디렉토리입니다.", "Files" => "파일", "Unshare" => "공유 해제", "Delete" => "삭제", @@ -20,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", "unshared {files}" => "{files} 공유 해제됨", "deleted {files}" => "{files} 삭제됨", +"'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", +"File name cannot be empty." => "파일이름은 공란이 될 수 없습니다.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다.", "generating ZIP-file, it may take some time." => "ZIP 파일을 생성하고 있습니다. 시간이 걸릴 수도 있습니다.", "Unable to upload your file as it is a directory or has 0 bytes" => "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 998caabf9f5..22fd68214eb 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -7,6 +7,8 @@ "No file was uploaded" => "Geen bestand geüpload", "Missing a temporary folder" => "Een tijdelijke map mist", "Failed to write to disk" => "Schrijven naar schijf mislukt", +"Not enough space available" => "Niet genoeg ruimte beschikbaar", +"Invalid directory." => "Ongeldige directory.", "Files" => "Bestanden", "Unshare" => "Stop delen", "Delete" => "Verwijder", @@ -20,6 +22,8 @@ "replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}", "unshared {files}" => "delen gestopt {files}", "deleted {files}" => "verwijderde {files}", +"'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.", +"File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.", "generating ZIP-file, it may take some time." => "aanmaken ZIP-file, dit kan enige tijd duren.", "Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes", diff --git a/apps/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 74a400303b2..cb691cf5e3d 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "모든 필수 항목을 입력하십시오", "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 공유에 연결이 불가능 합니다. 시스템 관리자에게 요청하여 설치하시기 바랍니다. ", "External Storage" => "외부 저장소", "Mount point" => "마운트 지점", "Backend" => "백엔드", diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php index aa775e42b16..37ac3d1bda5 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "경고user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여, 둘 중 하나를 비활성화 하시기 바랍니다.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "경고PHP LDAP 모듈이 설치되지 않았습니다. 백엔드가 동작하지 않을 것 입니다. 시스템관리자에게 요청하여 해당 모듈을 설치하시기 바랍니다.", "Host" => "호스트", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.", "Base DN" => "기본 DN", diff --git a/apps/user_webdavauth/l10n/ko.php b/apps/user_webdavauth/l10n/ko.php index 9bd32954b05..a806df750f7 100644 --- a/apps/user_webdavauth/l10n/ko.php +++ b/apps/user_webdavauth/l10n/ko.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud는 이 URL로 유저 인증을 보내게 되며, http 401 과 http 403은 인증 오류로, 그 외 코드는 인증이 올바른 것으로 해석합니다." ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index f98922f8f38..c4e134cdf36 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -128,6 +128,7 @@ "You are logged out." => "Heu tancat la sessió.", "prev" => "anterior", "next" => "següent", +"Updating ownCloud to version %s, this may take a while." => "S'està actualitzant ownCloud a la versió %s, pot trigar una estona.", "Security Warning!" => "Avís de seguretat!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Comproveu la vostra contrasenya.
Per raons de seguretat se us pot demanar escriure de nou la vostra contrasenya.", "Verify" => "Comprova" diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 96252ea8bba..3a15bd1ae90 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -128,6 +128,7 @@ "You are logged out." => "Jste odhlášeni.", "prev" => "předchozí", "next" => "následující", +"Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat.", "Security Warning!" => "Bezpečnostní upozornění.", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Ověřte, prosím, své heslo.
Z bezpečnostních důvodů můžete být občas požádáni o jeho opětovné zadání.", "Verify" => "Ověřit" diff --git a/core/l10n/es.php b/core/l10n/es.php index 2a9f5682dfb..bc72944340b 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -128,6 +128,7 @@ "You are logged out." => "Has cerrado la sesión.", "prev" => "anterior", "next" => "siguiente", +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo.", "Security Warning!" => "¡Advertencia de seguridad!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique su contraseña.
Por razones de seguridad se le puede volver a preguntar ocasionalmente la contraseña.", "Verify" => "Verificar" diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 6b1449dd4ba..8777309d9b7 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -128,6 +128,7 @@ "You are logged out." => "Vous êtes désormais déconnecté.", "prev" => "précédent", "next" => "suivant", +"Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps.", "Security Warning!" => "Alerte de sécurité !", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Veuillez vérifier votre mot de passe.
Par sécurité il vous sera occasionnellement demandé d'entrer votre mot de passe de nouveau.", "Verify" => "Vérification" diff --git a/core/l10n/it.php b/core/l10n/it.php index e97deb9fb5f..952ae4d06b6 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -128,6 +128,7 @@ "You are logged out." => "Sei uscito.", "prev" => "precedente", "next" => "successivo", +"Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, potrebbe richiedere del tempo.", "Security Warning!" => "Avviso di sicurezza", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Verifica la tua password.
Per motivi di sicurezza, potresti ricevere una richiesta di digitare nuovamente la password.", "Verify" => "Verifica" diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 72615d36f62..46d40e2e73e 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -128,6 +128,7 @@ "You are logged out." => "ログアウトしました。", "prev" => "前", "next" => "次", +"Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。", "Security Warning!" => "セキュリティ警告!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "パスワードの確認
セキュリティ上の理由によりパスワードの再入力をお願いします。", "Verify" => "確認" diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 3846dff796b..4b7df81fa85 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -1,4 +1,8 @@ "User %s 가 당신과 파일을 공유하였습니다.", +"User %s shared a folder with you" => "User %s 가 당신과 폴더를 공유하였습니다.", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "User %s 가 파일 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다.", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "User %s 가 폴더 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다.", "Category type not provided." => "분류 형식이 제공되지 않았습니다.", "No category to add?" => "추가할 분류가 없습니까?", "This category already exists: " => "이 분류는 이미 존재합니다:", @@ -39,6 +43,8 @@ "Share with link" => "URL 링크로 공유", "Password protect" => "암호 보호", "Password" => "암호", +"Email link to person" => "이메일 주소", +"Send" => "전송", "Set expiration date" => "만료 날짜 설정", "Expiration date" => "만료 날짜", "Share via email:" => "이메일로 공유:", @@ -55,6 +61,8 @@ "Password protected" => "암호로 보호됨", "Error unsetting expiration date" => "만료 날짜 해제 오류", "Error setting expiration date" => "만료 날짜 설정 오류", +"Sending ..." => "전송 중...", +"Email sent" => "이메일 발송됨", "ownCloud password reset" => "ownCloud 암호 재설정", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}", "You will receive a link to reset your password via Email." => "이메일로 암호 재설정 링크를 보냈습니다.", @@ -120,6 +128,7 @@ "You are logged out." => "로그아웃되었습니다.", "prev" => "이전", "next" => "다음", +"Updating ownCloud to version %s, this may take a while." => "ownCloud 를 버젼 %s로 업데이트 하는 중, 시간이 소요됩니다.", "Security Warning!" => "보안 경고!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "암호를 확인해 주십시오.
보안상의 이유로 종종 암호를 물어볼 것입니다.", "Verify" => "확인" diff --git a/core/l10n/nl.php b/core/l10n/nl.php index c3f5c887658..726dbf20161 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -128,6 +128,7 @@ "You are logged out." => "U bent afgemeld.", "prev" => "vorige", "next" => "volgende", +"Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren.", "Security Warning!" => "Beveiligingswaarschuwing!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Verifieer uw wachtwoord!
Om veiligheidsredenen wordt u regelmatig gevraagd uw wachtwoord in te geven.", "Verify" => "Verifieer" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index be8931fdc55..c41d4cbd8b6 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -4,14 +4,14 @@ # # Translators: # , 2012. -# , 2011-2012. +# , 2011-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 09:01+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -569,7 +569,7 @@ msgstr "següent" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "S'està actualitzant ownCloud a la versió %s, pot trigar una estona." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 6f071623c19..45d57b363a4 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -7,15 +7,15 @@ # , 2012. # , 2012. # Josep Tomàs , 2012. -# , 2011-2012. +# , 2011-2013. # , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 09:03+0000\n" +"Last-Translator: rogerc \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" @@ -120,11 +120,11 @@ msgstr "eliminats {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' és un nom no vàlid per un fitxer." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "El nom del fitxer no pot ser buit." #: js/files.js:45 msgid "" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 8b202d95172..2148999dc1b 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -6,14 +6,14 @@ # Jan Krejci , 2011. # Martin , 2011-2012. # Michal Hrušecký , 2012. -# Tomáš Chvátal , 2012. +# Tomáš Chvátal , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 06:20+0000\n" +"Last-Translator: Tomáš Chvátal \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" @@ -571,7 +571,7 @@ msgstr "následující" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 5080b51b462..6f8f77861d1 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 06:21+0000\n" +"Last-Translator: Tomáš Chvátal \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" @@ -117,11 +117,11 @@ msgstr "smazáno {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' je neplatným názvem souboru." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Název souboru nemůže být prázdný řetězec." #: js/files.js:45 msgid "" diff --git a/l10n/es/core.po b/l10n/es/core.po index f06edefd26c..ffe01773beb 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -5,7 +5,7 @@ # Translators: # , 2012. # Javier Llorente , 2012. -# , 2011-2012. +# , 2011-2013. # , 2012. # oSiNaReF <>, 2012. # Raul Fernandez Garcia , 2012. @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:49+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" @@ -578,7 +578,7 @@ msgstr "siguiente" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/es/files.po b/l10n/es/files.po index 22d40a3e622..21ff8e3ba72 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -7,7 +7,7 @@ # Agustin Ferrario , 2013. # , 2012. # Javier Llorente , 2012. -# , 2012. +# , 2012-2013. # Rubén Trujillo , 2012. # , 2011-2012. # , 2012. @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:50+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" @@ -122,11 +122,11 @@ msgstr "{files} eliminados" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' es un nombre de archivo inválido." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "El nombre de archivo no puede estar vacío." #: js/files.js:45 msgid "" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 2396fb7d1d7..0807b8ed65a 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2012. +# Christophe Lherieau , 2012-2013. # , 2013. # , 2012. # , 2012. @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 15:29+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" @@ -578,7 +578,7 @@ msgstr "suivant" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 3b12e33fe86..61dd57bd6f4 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2012. +# Christophe Lherieau , 2012-2013. # Cyril Glapa , 2012. # , 2013. # Geoffrey Guerrier , 2012. @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 15:26+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" @@ -66,11 +66,11 @@ msgstr "Erreur d'écriture sur le disque" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Espace disponible insuffisant" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Dossier invalide." #: appinfo/app.php:10 msgid "Files" @@ -126,11 +126,11 @@ msgstr "Fichiers supprimés : {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' n'est pas un nom de fichier valide." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Le nom de fichier ne peut être vide." #: js/files.js:45 msgid "" diff --git a/l10n/it/core.po b/l10n/it/core.po index fcd13a5c7e5..e2b2ba2f565 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -7,14 +7,14 @@ # Francesco Apruzzese , 2011, 2012. # , 2011, 2012. # , 2011. -# Vincenzo Reale , 2012. +# Vincenzo Reale , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 05:14+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" @@ -572,7 +572,7 @@ msgstr "successivo" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aggiornamento di ownCloud alla versione %s in corso, potrebbe richiedere del tempo." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/it/files.po b/l10n/it/files.po index 04eb3b518bd..6787dcc3044 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 05:17+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" @@ -118,11 +118,11 @@ msgstr "eliminati {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' non è un nome file valido." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Il nome del file non può essere vuoto." #: js/files.js:45 msgid "" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 4ea70e822c1..d4c31fe92b0 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -4,15 +4,15 @@ # # Translators: # Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012-2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 00:41+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -570,7 +570,7 @@ msgstr "次" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 270151e2875..026f90dc6ac 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 00:40+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,11 +118,11 @@ msgstr "削除 {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' は無効なファイル名です。" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "ファイル名を空にすることはできません。" #: js/files.js:45 msgid "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 71939ecd09d..24948c06769 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # , 2012. # Shinjo Park , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:03+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,26 +24,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "User %s 가 당신과 파일을 공유하였습니다." #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "User %s 가 당신과 폴더를 공유하였습니다." #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "User %s 가 파일 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다." #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "User %s 가 폴더 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다." #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -216,11 +217,11 @@ msgstr "암호" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "이메일 주소" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "전송" #: js/share.js:177 msgid "Set expiration date" @@ -288,11 +289,11 @@ msgstr "만료 날짜 설정 오류" #: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "전송 중..." #: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "이메일 발송됨" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -570,7 +571,7 @@ msgstr "다음" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "ownCloud 를 버젼 %s로 업데이트 하는 중, 시간이 소요됩니다." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 8fcada33fa1..23e43f6d39b 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # , 2012. # Shinjo Park , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:05+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,11 +58,11 @@ msgstr "디스크에 쓰지 못했습니다" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "여유공간이 부족합니다" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "올바르지 않은 디렉토리입니다." #: appinfo/app.php:10 msgid "Files" @@ -117,11 +118,11 @@ msgstr "{files} 삭제됨" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' 는 올바르지 않은 파일 이름 입니다." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "파일이름은 공란이 될 수 없습니다." #: js/files.js:45 msgid "" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 70d697575d8..f43b8963773 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # Shinjo Park , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:07+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,14 +48,14 @@ msgstr "Google 드라이브 저장소 설정 오류" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "경고\"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유애 연결이 불가능 합니다.. 시스템 관리자에게 요청하여 설치하시기 바랍니다." #: lib/config.php:435 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 "" +msgstr "경고PHP용 FTP 지원이 사용 불가능 하거나 설치되지 않았습니다. FTP 공유에 연결이 불가능 합니다. 시스템 관리자에게 요청하여 설치하시기 바랍니다. " #: templates/settings.php:3 msgid "External Storage" @@ -101,7 +102,7 @@ msgid "Users" msgstr "사용자" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "삭제" @@ -113,10 +114,10 @@ msgstr "사용자 외부 저장소 사용" msgid "Allow users to mount their own external storage" msgstr "사용자별 외부 저장소 마운트 허용" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL 루트 인증서" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "루트 인증서 가져오기" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index ea5f2c1fc67..0d027d7cdfc 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # , 2012. # Shinjo Park , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:26+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,23 +121,23 @@ msgstr "-라이선스 보유자 , 2013. # 남자사람 , 2012. # Shinjo Park , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 09:58+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,13 +25,13 @@ 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 "" +msgstr "경고user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여, 둘 중 하나를 비활성화 하시기 바랍니다." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "경고PHP LDAP 모듈이 설치되지 않았습니다. 백엔드가 동작하지 않을 것 입니다. 시스템관리자에게 요청하여 해당 모듈을 설치하시기 바랍니다." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index 621bee70462..7baa17ed715 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:31+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud는 이 URL로 유저 인증을 보내게 되며, http 401 과 http 403은 인증 오류로, 그 외 코드는 인증이 올바른 것으로 해석합니다." diff --git a/l10n/nl/core.po b/l10n/nl/core.po index ad69e22d393..e7b0b0ce699 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012. +# André Koot , 2012-2013. # , 2011. # , 2012. # Erik Bent , 2012. @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 20:49+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" @@ -581,7 +581,7 @@ msgstr "volgende" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Updaten ownCloud naar versie %s, dit kan even duren." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 61eca60948e..02a558e9550 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012. +# André Koot , 2012-2013. # , 2011. # , 2011. # , 2012. @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 20:51+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" @@ -65,11 +65,11 @@ msgstr "Schrijven naar schijf mislukt" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Niet genoeg ruimte beschikbaar" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Ongeldige directory." #: appinfo/app.php:10 msgid "Files" @@ -125,11 +125,11 @@ msgstr "verwijderde {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' is een ongeldige bestandsnaam." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Bestandsnaam kan niet leeg zijn." #: js/files.js:45 msgid "" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 1828079d894..ed543c241b0 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012. +# André Koot , 2012-2013. # , 2011. # , 2012. # , 2012. @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 20:48+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" @@ -255,11 +255,11 @@ msgstr "Creëer" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Default opslag" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ongelimiteerd" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -271,11 +271,11 @@ msgstr "Groep beheerder" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Opslag" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Default" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 4e7b7b1279e..e0e6d5cdd17 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\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 bcfc0709455..52d1d0fcdd3 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\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 2acbfdd22f2..76907a7fb04 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\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 1cdb866c5d4..a0359bc4ff7 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\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 c53d94e2b98..023ef632745 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\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 8d5d1e69f44..a80a2b98e32 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\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 f7616ac54b9..d8b090078b5 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\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 ab8101b4de0..c0a40761420 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\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 bb356f00380..86251355228 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\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 f86a111ef8a..fd9c1cef4d1 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 6556e1b93b8..21724a1782e 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -23,8 +23,16 @@ "Select an App" => "앱 선택", "See application page at apps.owncloud.com" => "apps.owncloud.com에 있는 앱 페이지를 참고하십시오", "-licensed by " => "-라이선스 보유자 ", +"User Documentation" => "유저 문서", +"Administrator Documentation" => "관리자 문서", +"Online Documentation" => "온라인 문서", +"Forum" => "포럼", +"Bugtracker" => "버그트래커", "You have used %s of the available %s" => "현재 공간 %s/%s을(를) 사용 중입니다", "Clients" => "고객", +"Download Desktop Clients" => "데스크탑 클라이언트 다운로드", +"Download Android Client" => "안드로이드 클라이언트 다운로드", +"Download iOS Client" => "iOS 클라이언트 다운로드", "Password" => "암호", "Your password was changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", @@ -37,11 +45,18 @@ "Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오.", "Language" => "언어", "Help translate" => "번역 돕기", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "파일 매니저에서 사용자의 ownCloud에 접속하기 위해 이 주소를 사용하십시요.", +"Version" => "버젼", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud 커뮤니티에 의해서 개발되었습니다. 원본 코드AGPL에 따라 사용이 허가됩니다.", "Name" => "이름", "Groups" => "그룹", "Create" => "만들기", +"Default Storage" => "기본 저장소", +"Unlimited" => "무제한", "Other" => "기타", "Group Admin" => "그룹 관리자", +"Storage" => "저장소", +"Default" => "기본값", "Delete" => "삭제" ); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 583c044ba47..ca7e84ce6cb 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -53,7 +53,11 @@ "Name" => "Naam", "Groups" => "Groepen", "Create" => "Creëer", +"Default Storage" => "Default opslag", +"Unlimited" => "Ongelimiteerd", "Other" => "Andere", "Group Admin" => "Groep beheerder", +"Storage" => "Opslag", +"Default" => "Default", "Delete" => "verwijderen" ); -- cgit v1.2.3 From 7b9e6d2f2ce1503b113017db4dbe43c68da0101b Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 8 Jan 2013 00:32:41 +0100 Subject: fixing string concatenation in javascript refs https://github.com/owncloud/core/commit/ae54364d7c8baf5138d166855db6431190963886 --- apps/files/js/files.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 038660e6e49..bb298431e84 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -593,7 +593,7 @@ $(document).ready(function() { break; case 'web': if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){ - name='http://'.name; + name='http://'+name; } var localName=name; if(localName.substr(localName.length-1,1)=='/'){//strip / -- cgit v1.2.3 From 43415386a8a60be2e72a0d0a648ac6bcd5b3353f Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Tue, 8 Jan 2013 17:44:28 +0100 Subject: Upstream merged my patch to add additional ssl root certificates to the webdav client. This means that OC_Connector_Sabre_Client is no longer needed --- apps/files_external/lib/webdav.php | 2 +- lib/connector/sabre/client.php | 173 ------------------------------------- 2 files changed, 1 insertion(+), 174 deletions(-) delete mode 100644 lib/connector/sabre/client.php (limited to 'apps') diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 68aca228bc5..6c5bc579c30 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -50,7 +50,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ 'password' => $this->password, ); - $this->client = new OC_Connector_Sabre_Client($settings); + $this->client = new Sabre_DAV_Client($settings); $caview = \OCP\Files::getStorage('files_external'); if ($caview) { diff --git a/lib/connector/sabre/client.php b/lib/connector/sabre/client.php deleted file mode 100644 index 8df5fb9a9ad..00000000000 --- a/lib/connector/sabre/client.php +++ /dev/null @@ -1,173 +0,0 @@ - - * - * 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 OC_Connector_Sabre_Client extends Sabre_DAV_Client { - - protected $trustedCertificates; - - /** - * Add trusted root certificates to the webdav client. - * - * The parameter certificates should be a absulute path to a file which contains - * all trusted certificates - * - * @param string $certificates - */ - public function addTrustedCertificates($certificates) { - $this->trustedCertificates = $certificates; - } - - /** - * Copied from SabreDAV with some modification to use user defined curlSettings - * Performs an actual HTTP request, and returns the result. - * - * If the specified url is relative, it will be expanded based on the base - * url. - * - * The returned array contains 3 keys: - * * body - the response body - * * httpCode - a HTTP code (200, 404, etc) - * * headers - a list of response http headers. The header names have - * been lowercased. - * - * @param string $method - * @param string $url - * @param string $body - * @param array $headers - * @return array - */ - public function request($method, $url = '', $body = null, $headers = array()) { - - $url = $this->getAbsoluteUrl($url); - - $curlSettings = array( - CURLOPT_RETURNTRANSFER => true, - // Return headers as part of the response - CURLOPT_HEADER => true, - CURLOPT_POSTFIELDS => $body, - // Automatically follow redirects - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_MAXREDIRS => 5, - ); - - if($this->trustedCertificates) { - $curlSettings[CURLOPT_CAINFO] = $this->trustedCertificates; - } - - switch ($method) { - case 'HEAD' : - - // do not read body with HEAD requests (this is neccessary because cURL does not ignore the body with HEAD - // requests when the Content-Length header is given - which in turn is perfectly valid according to HTTP - // specs...) cURL does unfortunately return an error in this case ("transfer closed transfer closed with - // ... bytes remaining to read") this can be circumvented by explicitly telling cURL to ignore the - // response body - $curlSettings[CURLOPT_NOBODY] = true; - $curlSettings[CURLOPT_CUSTOMREQUEST] = 'HEAD'; - break; - - default: - $curlSettings[CURLOPT_CUSTOMREQUEST] = $method; - break; - - } - - // Adding HTTP headers - $nHeaders = array(); - foreach($headers as $key=>$value) { - - $nHeaders[] = $key . ': ' . $value; - - } - $curlSettings[CURLOPT_HTTPHEADER] = $nHeaders; - - if ($this->proxy) { - $curlSettings[CURLOPT_PROXY] = $this->proxy; - } - - if ($this->userName && $this->authType) { - $curlType = 0; - if ($this->authType & self::AUTH_BASIC) { - $curlType |= CURLAUTH_BASIC; - } - if ($this->authType & self::AUTH_DIGEST) { - $curlType |= CURLAUTH_DIGEST; - } - $curlSettings[CURLOPT_HTTPAUTH] = $curlType; - $curlSettings[CURLOPT_USERPWD] = $this->userName . ':' . $this->password; - } - - list( - $response, - $curlInfo, - $curlErrNo, - $curlError - ) = $this->curlRequest($url, $curlSettings); - - $headerBlob = substr($response, 0, $curlInfo['header_size']); - $response = substr($response, $curlInfo['header_size']); - - // In the case of 100 Continue, or redirects we'll have multiple lists - // of headers for each separate HTTP response. We can easily split this - // because they are separated by \r\n\r\n - $headerBlob = explode("\r\n\r\n", trim($headerBlob, "\r\n")); - - // We only care about the last set of headers - $headerBlob = $headerBlob[count($headerBlob)-1]; - - // Splitting headers - $headerBlob = explode("\r\n", $headerBlob); - - $headers = array(); - foreach($headerBlob as $header) { - $parts = explode(':', $header, 2); - if (count($parts)==2) { - $headers[strtolower(trim($parts[0]))] = trim($parts[1]); - } - } - - $response = array( - 'body' => $response, - 'statusCode' => $curlInfo['http_code'], - 'headers' => $headers - ); - - if ($curlErrNo) { - throw new Sabre_DAV_Exception('[CURL] Error while making request: ' . $curlError . ' (error code: ' . $curlErrNo . ')'); - } - - if ($response['statusCode']>=400) { - switch ($response['statusCode']) { - case 404: - throw new Sabre_DAV_Exception_NotFound('Resource ' . $url . ' not found.'); - break; - - default: - throw new Sabre_DAV_Exception('HTTP error response. (errorcode ' . $response['statusCode'] . ')'); - } - } - - return $response; - - } -} \ No newline at end of file -- cgit v1.2.3 From 533f0e8e258caef66019377a160e7213fd530f07 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 9 Jan 2013 00:05:49 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 1 - apps/files/l10n/cs_CZ.php | 1 - apps/files/l10n/da.php | 1 - apps/files/l10n/de.php | 3 +- apps/files/l10n/de_DE.php | 5 +- apps/files/l10n/el.php | 1 - apps/files/l10n/eo.php | 1 - apps/files/l10n/es.php | 1 - apps/files/l10n/es_AR.php | 1 - apps/files/l10n/et_EE.php | 1 - apps/files/l10n/eu.php | 1 - apps/files/l10n/fr.php | 3 +- apps/files/l10n/gl.php | 1 - apps/files/l10n/he.php | 1 - apps/files/l10n/hu_HU.php | 5 +- apps/files/l10n/is.php | 1 - apps/files/l10n/it.php | 1 - apps/files/l10n/ja_JP.php | 1 - apps/files/l10n/ko.php | 1 - apps/files/l10n/mk.php | 1 - apps/files/l10n/nb_NO.php | 1 - apps/files/l10n/nl.php | 1 - apps/files/l10n/pl.php | 1 - apps/files/l10n/pt_BR.php | 1 - apps/files/l10n/pt_PT.php | 3 +- apps/files/l10n/ro.php | 1 - apps/files/l10n/ru.php | 1 - apps/files/l10n/ru_RU.php | 1 - apps/files/l10n/sk_SK.php | 1 - apps/files/l10n/sl.php | 1 - apps/files/l10n/sr.php | 1 - apps/files/l10n/sv.php | 1 - apps/files/l10n/ta_LK.php | 1 - apps/files/l10n/th_TH.php | 1 - apps/files/l10n/tr.php | 1 - apps/files/l10n/uk.php | 1 - apps/files/l10n/vi.php | 1 - apps/files/l10n/zh_CN.php | 1 - apps/files/l10n/zh_TW.php | 1 - apps/user_ldap/l10n/hu_HU.php | 1 + core/l10n/de.php | 1 + core/l10n/de_DE.php | 1 + core/l10n/pt_PT.php | 1 + l10n/ar/files.po | 76 +++++++++--------- l10n/bg_BG/core.po | 152 ++++++++++++++++++------------------ l10n/bg_BG/files.po | 128 +++++++++++++++--------------- l10n/bg_BG/files_encryption.po | 14 ++-- l10n/bg_BG/files_external.po | 16 ++-- l10n/bg_BG/files_sharing.po | 16 ++-- l10n/bg_BG/files_versions.po | 10 +-- l10n/bg_BG/lib.po | 30 +++---- l10n/bg_BG/settings.po | 60 +++++++------- l10n/bg_BG/user_ldap.po | 6 +- l10n/bg_BG/user_webdavauth.po | 6 +- l10n/bn_BD/files.po | 76 +++++++++--------- l10n/ca/files.po | 80 ++++++++++--------- l10n/cs_CZ/files.po | 80 ++++++++++--------- l10n/da/files.po | 78 +++++++++--------- l10n/de/core.po | 34 ++++---- l10n/de/files.po | 84 ++++++++++---------- l10n/de_DE/core.po | 35 +++++---- l10n/de_DE/files.po | 87 +++++++++++---------- l10n/el/files.po | 78 +++++++++--------- l10n/eo/files.po | 78 +++++++++--------- l10n/es/files.po | 80 ++++++++++--------- l10n/es_AR/files.po | 78 +++++++++--------- l10n/et_EE/files.po | 78 +++++++++--------- l10n/eu/files.po | 78 +++++++++--------- l10n/fa/files.po | 76 +++++++++--------- l10n/fi_FI/files.po | 76 +++++++++--------- l10n/fr/files.po | 82 ++++++++++--------- l10n/gl/files.po | 78 +++++++++--------- l10n/he/files.po | 78 +++++++++--------- l10n/hi/files.po | 76 +++++++++--------- l10n/hr/files.po | 76 +++++++++--------- l10n/hu/files.po | 76 +++++++++--------- l10n/hu_HU/files.po | 87 +++++++++++---------- l10n/hu_HU/settings.po | 15 ++-- l10n/hu_HU/user_ldap.po | 9 ++- l10n/ia/files.po | 76 +++++++++--------- l10n/id/files.po | 76 +++++++++--------- l10n/is/files.po | 78 +++++++++--------- l10n/it/files.po | 80 ++++++++++--------- l10n/ja_JP/files.po | 80 ++++++++++--------- l10n/ka_GE/files.po | 76 +++++++++--------- l10n/ko/files.po | 80 ++++++++++--------- l10n/ku_IQ/files.po | 76 +++++++++--------- l10n/lb/files.po | 76 +++++++++--------- l10n/lt_LT/files.po | 76 +++++++++--------- l10n/lv/files.po | 76 +++++++++--------- l10n/mk/files.po | 78 +++++++++--------- l10n/ms_MY/files.po | 76 +++++++++--------- l10n/nb_NO/files.po | 78 +++++++++--------- l10n/nl/files.po | 80 ++++++++++--------- l10n/nn_NO/files.po | 76 +++++++++--------- l10n/oc/files.po | 76 +++++++++--------- l10n/pl/files.po | 78 +++++++++--------- l10n/pl_PL/files.po | 76 +++++++++--------- l10n/pt_BR/files.po | 78 +++++++++--------- l10n/pt_PT/core.po | 36 ++++----- l10n/pt_PT/files.po | 82 ++++++++++--------- l10n/ro/files.po | 78 +++++++++--------- l10n/ru/files.po | 78 +++++++++--------- l10n/ru_RU/files.po | 78 +++++++++--------- l10n/si_LK/files.po | 76 +++++++++--------- l10n/sk_SK/files.po | 78 +++++++++--------- l10n/sl/files.po | 78 +++++++++--------- l10n/sq/files.po | 76 +++++++++--------- l10n/sr/files.po | 78 +++++++++--------- l10n/sr@latin/files.po | 76 +++++++++--------- l10n/sv/files.po | 78 +++++++++--------- l10n/ta_LK/files.po | 78 +++++++++--------- l10n/templates/core.pot | 28 +++---- l10n/templates/files.pot | 74 +++++++++--------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 78 +++++++++--------- l10n/tr/files.po | 78 +++++++++--------- l10n/uk/files.po | 78 +++++++++--------- l10n/vi/files.po | 78 +++++++++--------- l10n/zh_CN.GB2312/files.po | 76 +++++++++--------- l10n/zh_CN/files.po | 78 +++++++++--------- l10n/zh_HK/files.po | 76 +++++++++--------- l10n/zh_TW/files.po | 78 +++++++++--------- l10n/zu_ZA/files.po | 76 +++++++++--------- settings/l10n/hu_HU.php | 4 + 132 files changed, 2951 insertions(+), 2707 deletions(-) (limited to 'apps') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index c30f3a97add..224f0206e10 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -34,7 +34,6 @@ "{count} files uploading" => "{count} fitxers en pujada", "Upload cancelled." => "La pujada s'ha cancel·lat.", "File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud", "{count} files scanned" => "{count} fitxers escannejats", "error while scanning" => "error durant l'escaneig", "Name" => "Nom", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index a7ccd3187f6..abd169245f9 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -34,7 +34,6 @@ "{count} files uploading" => "odesílám {count} souborů", "Upload cancelled." => "Odesílání zrušeno.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud.", "{count} files scanned" => "prozkoumáno {count} souborů", "error while scanning" => "chyba při prohledávání", "Name" => "Název", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index e2fd0c8c18f..b5efe1b9136 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} filer uploades", "Upload cancelled." => "Upload afbrudt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud", "{count} files scanned" => "{count} filer skannet", "error while scanning" => "fejl under scanning", "Name" => "Navn", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 5f4778eb867..1b2694ecf04 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "unshared {files}" => "Freigabe von {files} aufgehoben", "deleted {files}" => "{files} gelöscht", +"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", +"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", @@ -32,7 +34,6 @@ "{count} files uploading" => "{count} Dateien werden hochgeladen", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten.", "{count} files scanned" => "{count} Dateien wurden gescannt", "error while scanning" => "Fehler beim Scannen", "Name" => "Name", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 3ba32229070..7dd8d3dad51 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -7,7 +7,7 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Der temporäre Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", -"Not enough space available" => "Nicht genug Speicher verfügbar", +"Not enough space available" => "Nicht genügend Speicherplatz verfügbar", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "unshared {files}" => "Freigabe für {files} beendet", "deleted {files}" => "{files} gelöscht", +"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", +"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", @@ -32,7 +34,6 @@ "{count} files uploading" => "{count} Dateien wurden hochgeladen", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten.", "{count} files scanned" => "{count} Dateien wurden gescannt", "error while scanning" => "Fehler beim Scannen", "Name" => "Name", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 60be0bc7aac..4d87c06dd0f 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} αρχεία ανεβαίνουν", "Upload cancelled." => "Η αποστολή ακυρώθηκε.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud", "{count} files scanned" => "{count} αρχεία ανιχνεύτηκαν", "error while scanning" => "σφάλμα κατά την ανίχνευση", "Name" => "Όνομα", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index c371334933d..478be98bf5c 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} dosieroj alŝutatas", "Upload cancelled." => "La alŝuto nuliĝis.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud", "{count} files scanned" => "{count} dosieroj skaniĝis", "error while scanning" => "eraro dum skano", "Name" => "Nomo", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index a92720581b8..b4234e3f3e7 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -34,7 +34,6 @@ "{count} files uploading" => "Subiendo {count} archivos", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud", "{count} files scanned" => "{count} archivos escaneados", "error while scanning" => "error escaneando", "Name" => "Nombre", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 9375954c02e..a2e0a102aa6 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -32,7 +32,6 @@ "{count} files uploading" => "Subiendo {count} archivos", "Upload cancelled." => "La subida fue cancelada", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud.", "{count} files scanned" => "{count} archivos escaneados", "error while scanning" => "error mientras se escaneaba", "Name" => "Nombre", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 0dfc7b5bcd5..a785651559f 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -29,7 +29,6 @@ "{count} files uploading" => "{count} faili üleslaadimist", "Upload cancelled." => "Üleslaadimine tühistati.", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud ", "{count} files scanned" => "{count} faili skännitud", "error while scanning" => "viga skännimisel", "Name" => "Nimi", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index e141fa65726..83710f02866 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} fitxategi igotzen", "Upload cancelled." => "Igoera ezeztatuta", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka", "{count} files scanned" => "{count} fitxategi eskaneatuta", "error while scanning" => "errore bat egon da eskaneatzen zen bitartean", "Name" => "Izena", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 95405a81a86..61ab0846784 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -34,7 +34,6 @@ "{count} files uploading" => "{count} fichiers téléversés", "Upload cancelled." => "Chargement annulé.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud", "{count} files scanned" => "{count} fichiers indexés", "error while scanning" => "erreur lors de l'indexation", "Name" => "Nom", @@ -59,7 +58,7 @@ "Upload" => "Envoyer", "Cancel upload" => "Annuler l'envoi", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", -"Download" => "Téléchargement", +"Download" => "Télécharger", "Upload too large" => "Fichier trop volumineux", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.", "Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index eb9503d6cad..cf0238d7a79 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -32,7 +32,6 @@ "{count} files uploading" => "{count} ficheiros subíndose", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud", "{count} files scanned" => "{count} ficheiros escaneados", "error while scanning" => "erro mentres analizaba", "Name" => "Nome", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 971933f2310..7b4f910bce7 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} קבצים נשלחים", "Upload cancelled." => "ההעלאה בוטלה.", "File upload is in progress. Leaving the page now will cancel the upload." => "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud", "{count} files scanned" => "{count} קבצים נסרקו", "error while scanning" => "אירעה שגיאה במהלך הסריקה", "Name" => "שם", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index cb06fe087e6..4561d9c49e1 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -7,6 +7,8 @@ "No file was uploaded" => "Nem töltődött fel semmi", "Missing a temporary folder" => "Hiányzik egy ideiglenes mappa", "Failed to write to disk" => "Nem sikerült a lemezre történő írás", +"Not enough space available" => "Nincs elég szabad hely", +"Invalid directory." => "Érvénytelen mappa.", "Files" => "Fájlok", "Unshare" => "Megosztás visszavonása", "Delete" => "Törlés", @@ -20,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", "unshared {files}" => "{files} fájl megosztása visszavonva", "deleted {files}" => "{files} fájl törölve", +"'.' is an invalid file name." => "'.' fájlnév érvénytelen.", +"File name cannot be empty." => "A fájlnév nem lehet semmi.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'", "generating ZIP-file, it may take some time." => "ZIP-fájl generálása, ez eltarthat egy ideig.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű", @@ -30,7 +34,6 @@ "{count} files uploading" => "{count} fájl töltődik föl", "Upload cancelled." => "A feltöltést megszakítottuk.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja.", "{count} files scanned" => "{count} fájlt találtunk", "error while scanning" => "Hiba a fájllista-ellenőrzés során", "Name" => "Név", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index bca878873ac..09312124f8a 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -29,7 +29,6 @@ "{count} files uploading" => "{count} skrár innsendar", "Upload cancelled." => "Hætt við innsendingu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud.", "{count} files scanned" => "{count} skrár skimaðar", "error while scanning" => "villa við skimun", "Name" => "Nafn", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index e74bfae2e8c..e645d9b871a 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -34,7 +34,6 @@ "{count} files uploading" => "{count} file in fase di caricamentoe", "Upload cancelled." => "Invio annullato", "File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud", "{count} files scanned" => "{count} file analizzati", "error while scanning" => "errore durante la scansione", "Name" => "Nome", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index bc7be7ea695..fc82c8ef038 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -34,7 +34,6 @@ "{count} files uploading" => "{count} ファイルをアップロード中", "Upload cancelled." => "アップロードはキャンセルされました。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "無効なフォルダ名です。\"Shared\" の利用は ownCloud が予約済みです。", "{count} files scanned" => "{count} ファイルをスキャン", "error while scanning" => "スキャン中のエラー", "Name" => "名前", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 9d46afc97e9..95667df7cbb 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -34,7 +34,6 @@ "{count} files uploading" => "파일 {count}개 업로드 중", "Upload cancelled." => "업로드가 취소되었습니다.", "File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "폴더 이름이 올바르지 않습니다. \"Shared\" 폴더는 ownCloud에서 예약되었습니다.", "{count} files scanned" => "파일 {count}개 검색됨", "error while scanning" => "검색 중 오류 발생", "Name" => "이름", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 9eb11360fed..1b1c3946231 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} датотеки се подигаат", "Upload cancelled." => "Преземањето е прекинато.", "File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Неправилно име на папка. Користењето на „Shared“ е резервирано за Owncloud", "{count} files scanned" => "{count} датотеки скенирани", "error while scanning" => "грешка при скенирање", "Name" => "Име", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index f97228ecd1b..1de39f021d4 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -28,7 +28,6 @@ "{count} files uploading" => "{count} filer laster opp", "Upload cancelled." => "Opplasting avbrutt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud.", "{count} files scanned" => "{count} filer lest inn", "error while scanning" => "feil under skanning", "Name" => "Navn", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 22fd68214eb..2421f1be65a 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -34,7 +34,6 @@ "{count} files uploading" => "{count} bestanden aan het uploaden", "Upload cancelled." => "Uploaden geannuleerd.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Folder naam niet toegestaan. Het gebruik van \"Shared\" is aan Owncloud voorbehouden", "{count} files scanned" => "{count} bestanden gescanned", "error while scanning" => "Fout tijdens het scannen", "Name" => "Naam", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index e485fdc6c3e..7ac88664ae2 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} przesyłanie plików", "Upload cancelled." => "Wczytywanie anulowane.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Błędna nazwa folderu. Nazwa \"Shared\" jest zarezerwowana dla Owncloud", "{count} files scanned" => "{count} pliki skanowane", "error while scanning" => "Wystąpił błąd podczas skanowania", "Name" => "Nazwa", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 5f266bd7cd4..decb30139eb 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -30,7 +30,6 @@ "{count} files uploading" => "Enviando {count} arquivos", "Upload cancelled." => "Envio cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de pasta inválido. O nome \"Shared\" é reservado pelo Owncloud", "{count} files scanned" => "{count} arquivos scaneados", "error while scanning" => "erro durante verificação", "Name" => "Nome", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 36c9d6e62aa..97ac32f77fe 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}", "unshared {files}" => "{files} não partilhado(s)", "deleted {files}" => "{files} eliminado(s)", +"'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", +"File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", "generating ZIP-file, it may take some time." => "a gerar o ficheiro ZIP, poderá demorar algum tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes", @@ -32,7 +34,6 @@ "{count} files uploading" => "A carregar {count} ficheiros", "Upload cancelled." => "O envio foi cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de pasta inválido! O uso de \"Shared\" (Partilhado) está reservado pelo OwnCloud", "{count} files scanned" => "{count} ficheiros analisados", "error while scanning" => "erro ao analisar", "Name" => "Nome", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index b09c8f39c8b..a8761984b65 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} fisiere incarcate", "Upload cancelled." => "Încărcare anulată.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nume de folder invalid. Numele este rezervat pentru OwnCloud", "{count} files scanned" => "{count} fisiere scanate", "error while scanning" => "eroare la scanarea", "Name" => "Nume", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 403bd5c0982..53057ea0844 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} файлов загружается", "Upload cancelled." => "Загрузка отменена.", "File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Не правильное имя папки. Имя \"Shared\" резервировано в Owncloud", "{count} files scanned" => "{count} файлов просканировано", "error while scanning" => "ошибка во время санирования", "Name" => "Название", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index d7d3d37613a..8de277c4b78 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{количество} загружено файлов", "Upload cancelled." => "Загрузка отменена", "File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Некорректное имя папки. Нименование \"Опубликовано\" зарезервировано ownCloud", "{count} files scanned" => "{количество} файлов отсканировано", "error while scanning" => "ошибка при сканировании", "Name" => "Имя", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 1043e7ae9d9..abcb9358c0f 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} súborov odosielaných", "Upload cancelled." => "Odosielanie zrušené", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nesprávne meno adresára. Použitie slova \"Shared\" (Zdieľané) je vyhradené službou ownCloud.", "{count} files scanned" => "{count} súborov prehľadaných", "error while scanning" => "chyba počas kontroly", "Name" => "Meno", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index f07751073c4..7d1594da063 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -30,7 +30,6 @@ "{count} files uploading" => "nalagam {count} datotek", "Upload cancelled." => "Pošiljanje je preklicano.", "File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Neveljavno ime datoteke. Uporaba mape \"Share\" je rezervirana za ownCloud.", "{count} files scanned" => "{count} files scanned", "error while scanning" => "napaka med pregledovanjem datotek", "Name" => "Ime", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 48b258862b5..ecde8be4cc0 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -29,7 +29,6 @@ "{count} files uploading" => "Отпремам {count} датотеке/а", "Upload cancelled." => "Отпремање је прекинуто.", "File upload is in progress. Leaving the page now will cancel the upload." => "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Неисправан назив фасцикле. „Дељено“ користи Оунклауд.", "{count} files scanned" => "Скенирано датотека: {count}", "error while scanning" => "грешка при скенирању", "Name" => "Назив", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index f04ae0ac228..b5c9049de2c 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -32,7 +32,6 @@ "{count} files uploading" => "{count} filer laddas upp", "Upload cancelled." => "Uppladdning avbruten.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ogiltigt mappnamn. Ordet \"Delad\" är reserverat av ownCloud.", "{count} files scanned" => "{count} filer skannade", "error while scanning" => "fel vid skanning", "Name" => "Namn", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index b68ad8f02c6..7edaf8e4252 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -29,7 +29,6 @@ "{count} files uploading" => "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது", "Upload cancelled." => "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது", "File upload is in progress. Leaving the page now will cancel the upload." => "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "செல்லுபடியற்ற கோப்புறை பெயர். \"பகிர்வின்\" பாவனை Owncloud இனால் ஒதுக்கப்பட்டுள்ளது", "{count} files scanned" => "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது", "error while scanning" => "வருடும் போதான வழு", "Name" => "பெயர்", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index f6b3b1c56f1..214cef925df 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -30,7 +30,6 @@ "{count} files uploading" => "กำลังอัพโหลด {count} ไฟล์", "Upload cancelled." => "การอัพโหลดถูกยกเลิก", "File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "ชื่อโฟลเดอร์ที่ใช้ไม่ถูกต้อง การใช้งาน \"ถูกแชร์\" ถูกสงวนไว้เฉพาะ Owncloud เท่านั้น", "{count} files scanned" => "สแกนไฟล์แล้ว {count} ไฟล์", "error while scanning" => "พบข้อผิดพลาดในระหว่างการสแกนไฟล์", "Name" => "ชื่อ", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 80182d8ec80..7b251d0b8eb 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} dosya yükleniyor", "Upload cancelled." => "Yükleme iptal edildi.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır.", "{count} files scanned" => "{count} dosya tarandı", "error while scanning" => "tararamada hata oluşdu", "Name" => "Ad", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 4daa2d628c7..3a026af6965 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} файлів завантажується", "Upload cancelled." => "Завантаження перервано.", "File upload is in progress. Leaving the page now will cancel the upload." => "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Невірне ім'я каталогу. Використання \"Shared\" зарезервовано Owncloud", "{count} files scanned" => "{count} файлів проскановано", "error while scanning" => "помилка при скануванні", "Name" => "Ім'я", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index b14186d9615..3f4d887b57b 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -29,7 +29,6 @@ "{count} files uploading" => "{count} tập tin đang tải lên", "Upload cancelled." => "Hủy tải lên", "File upload is in progress. Leaving the page now will cancel the upload." => "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.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Tên thư mục không hợp lệ. Sử dụng \"Chia sẻ\" được dành riêng bởi Owncloud", "{count} files scanned" => "{count} tập tin đã được quét", "error while scanning" => "lỗi trong khi quét", "Name" => "Tên", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 1188c252922..7f2bba35e7f 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} 个文件上传中", "Upload cancelled." => "上传已取消", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "无效的文件夹名称。”Shared“ 是 Owncloud 保留字符。", "{count} files scanned" => "{count} 个文件已扫描。", "error while scanning" => "扫描时出错", "Name" => "名称", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 7b55b547148..ae2430106da 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -24,7 +24,6 @@ "{count} files uploading" => "{count} 個檔案正在上傳", "Upload cancelled." => "上傳取消", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "無效的資料夾名稱. \"Shared\" 名稱已被 Owncloud 所保留使用", "error while scanning" => "掃描時發生錯誤", "Name" => "名稱", "Size" => "大小", diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 14eb5837ceb..577afcef1c9 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -17,6 +17,7 @@ "Group Filter" => "A csoportok szűrője", "Defines the filter to apply, when retrieving groups." => "Ez a szűrő érvényes a csoportok listázásakor.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "itt ne használjunk változót, pl. \"objectClass=posixGroup\".", +"Port" => "Port", "Base User Tree" => "A felhasználói fa gyökere", "Base Group Tree" => "A csoportfa gyökere", "Group-Member association" => "A csoporttagság attribútuma", diff --git a/core/l10n/de.php b/core/l10n/de.php index c5867eda8c3..9c80d1cb14e 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -128,6 +128,7 @@ "You are logged out." => "Du wurdest abgemeldet.", "prev" => "Zurück", "next" => "Weiter", +"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.", "Security Warning!" => "Sicherheitswarnung!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Bitte bestätige Dein Passwort.
Aus Sicherheitsgründen wirst Du hierbei gebeten, Dein Passwort erneut einzugeben.", "Verify" => "Bestätigen" diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index ed0bc0e0ffb..777725b2cd6 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -128,6 +128,7 @@ "You are logged out." => "Sie wurden abgemeldet.", "prev" => "Zurück", "next" => "Weiter", +"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.", "Security Warning!" => "Sicherheitshinweis!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Bitte überprüfen Sie Ihr Passwort.
Aus Sicherheitsgründen werden Sie gelegentlich aufgefordert, Ihr Passwort erneut einzugeben.", "Verify" => "Überprüfen" diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index a2bfcf4f882..d09344fe140 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -128,6 +128,7 @@ "You are logged out." => "Estás desconetado.", "prev" => "anterior", "next" => "seguinte", +"Updating ownCloud to version %s, this may take a while." => "A Actualizar o ownCloud para a versão %s, esta operação pode demorar.", "Security Warning!" => "Aviso de Segurança!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique a sua palavra-passe.
Por razões de segurança, pode ser-lhe perguntada, ocasionalmente, a sua palavra-passe de novo.", "Verify" => "Verificar" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 791afd2e704..91d0318792f 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -65,11 +65,11 @@ msgstr "" msgid "Files" msgstr "الملفات" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "محذوف" @@ -77,39 +77,39 @@ msgstr "محذوف" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -143,7 +143,7 @@ msgstr "" msgid "Close" msgstr "إغلق" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -151,56 +151,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "الاسم" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "حجم" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "معدل" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,36 +256,36 @@ msgstr "مجلد" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "إرفع" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "تحميل" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 946b0984730..d4e0355bead 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "Категорията вече съществува:" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -76,7 +76,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Няма избрани категории за изтриване" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -85,57 +85,57 @@ msgstr "" #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" -msgstr "Настройки" +msgstr "" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -145,19 +145,19 @@ msgstr "" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" -msgstr "Отказ" +msgstr "" #: js/oc-dialogs.js:162 msgid "No" -msgstr "Не" +msgstr "" #: js/oc-dialogs.js:163 msgid "Yes" -msgstr "Да" +msgstr "" #: js/oc-dialogs.js:180 msgid "Ok" -msgstr "Добре" +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 @@ -168,7 +168,7 @@ msgstr "" #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 #: js/share.js:566 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -213,7 +213,7 @@ msgstr "" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" -msgstr "Парола" +msgstr "" #: js/share.js:172 msgid "Email link to person" @@ -305,7 +305,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Ще получите връзка за нулиране на паролата Ви." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -318,15 +318,15 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 #: templates/login.php:28 msgid "Username" -msgstr "Потребител" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Нулиране на заявка" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Вашата парола е нулирана" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -334,47 +334,47 @@ msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Нова парола" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Нулиране на парола" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Лични" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Потребители" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Програми" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Админ" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Помощ" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Достъпът е забранен" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "облакът не намерен" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Редактиране на категориите" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Добавяне" +msgstr "" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" @@ -403,36 +403,36 @@ msgstr "" #: templates/installation.php:36 msgid "Create an admin account" -msgstr "Създаване на админ профил" +msgstr "" #: templates/installation.php:50 msgid "Advanced" -msgstr "Разширено" +msgstr "" #: templates/installation.php:52 msgid "Data folder" -msgstr "Директория за данни" +msgstr "" #: templates/installation.php:59 msgid "Configure the database" -msgstr "Конфигуриране на базата" +msgstr "" #: templates/installation.php:64 templates/installation.php:75 #: templates/installation.php:85 templates/installation.php:95 msgid "will be used" -msgstr "ще се ползва" +msgstr "" #: templates/installation.php:107 msgid "Database user" -msgstr "Потребител за базата" +msgstr "" #: templates/installation.php:111 msgid "Database password" -msgstr "Парола за базата" +msgstr "" #: templates/installation.php:115 msgid "Database name" -msgstr "Име на базата" +msgstr "" #: templates/installation.php:123 msgid "Database tablespace" @@ -440,87 +440,87 @@ msgstr "" #: templates/installation.php:129 msgid "Database host" -msgstr "Хост за базата" +msgstr "" #: templates/installation.php:134 msgid "Finish setup" -msgstr "Завършване на настройките" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" -msgstr "Неделя" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Monday" -msgstr "Понеделник" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Tuesday" -msgstr "Вторник" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Wednesday" -msgstr "Сряда" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Thursday" -msgstr "Четвъртък" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Friday" -msgstr "Петък" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Saturday" -msgstr "Събота" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "January" -msgstr "Януари" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "February" -msgstr "Февруари" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "March" -msgstr "Март" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "April" -msgstr "Април" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "May" -msgstr "Май" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "June" -msgstr "Юни" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "July" -msgstr "Юли" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "August" -msgstr "Август" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "September" -msgstr "Септември" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "October" -msgstr "Октомври" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "November" -msgstr "Ноември" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "December" -msgstr "Декември" +msgstr "" #: templates/layout.guest.php:42 msgid "web services under your control" @@ -528,7 +528,7 @@ msgstr "" #: templates/layout.user.php:45 msgid "Log out" -msgstr "Изход" +msgstr "" #: templates/login.php:10 msgid "Automatic logon rejected!" @@ -546,27 +546,27 @@ msgstr "" #: templates/login.php:19 msgid "Lost your password?" -msgstr "Забравена парола?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "запомни" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Вход" +msgstr "" #: templates/logout.php:1 msgid "You are logged out." -msgstr "Вие излязохте." +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "пред." +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "следващо" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 0a3297bd922..c416d7b2d74 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -25,7 +25,7 @@ msgstr "" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" -msgstr "Файлът е качен успешно" +msgstr "" #: ajax/upload.php:22 msgid "" @@ -36,23 +36,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата." +msgstr "" #: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" -msgstr "Файлът е качен частично" +msgstr "" #: ajax/upload.php:27 msgid "No file was uploaded" -msgstr "Фахлът не бе качен" +msgstr "" #: ajax/upload.php:28 msgid "Missing a temporary folder" -msgstr "Липсва временната папка" +msgstr "" #: ajax/upload.php:29 msgid "Failed to write to disk" -msgstr "Грешка при запис на диска" +msgstr "" #: ajax/upload.php:45 msgid "Not enough space available" @@ -64,53 +64,53 @@ msgstr "" #: appinfo/app.php:10 msgid "Files" -msgstr "Файлове" +msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" -msgstr "Изтриване" +msgstr "" #: js/fileactions.js:181 msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -138,13 +138,13 @@ msgstr "" #: js/files.js:224 msgid "Upload Error" -msgstr "Грешка при качване" +msgstr "" #: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +152,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." -msgstr "Качването е отменено." +msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" -msgstr "Име" +msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" -msgstr "Размер" +msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" -msgstr "Променено" +msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -211,7 +215,7 @@ msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Макс. размер за качване" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " @@ -227,7 +231,7 @@ msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 означава без ограничение" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" @@ -235,54 +239,54 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Запис" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Нов" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Текстов файл" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Папка" +msgstr "" #: templates/index.php:14 msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" -msgstr "Качване" +msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" -msgstr "Отказване на качването" +msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" -msgstr "Няма нищо, качете нещо!" +msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" -msgstr "Изтегляне" +msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" -msgstr "Файлът е прекалено голям" +msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." +msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." -msgstr "Файловете се претърсват, изчакайте." +msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 0db200dba5a..4a39877f9b5 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: 2012-08-12 22:33+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" @@ -15,20 +15,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "Encryption" msgstr "" -#: templates/settings.php:4 -msgid "Exclude the following file types from encryption" +#: templates/settings.php:6 +msgid "Enable Encryption" msgstr "" -#: templates/settings.php:5 +#: templates/settings.php:7 msgid "None" msgstr "" -#: templates/settings.php:10 -msgid "Enable Encryption" +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index d4483eadffc..07efdf04dde 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,16 +92,16 @@ msgstr "" #: templates/settings.php:87 msgid "Groups" -msgstr "Групи" +msgstr "" #: templates/settings.php:95 msgid "Users" msgstr "" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" -msgstr "Изтриване" +msgstr "" #: templates/settings.php:124 msgid "Enable User External Storage" @@ -111,10 +111,10 @@ msgstr "" msgid "Allow users to mount their own external storage" msgstr "" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 3e75975fb63..b19492a550b 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:22 templates/public.php:38 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:37 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:43 msgid "web services under your control" msgstr "" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index df3fc299453..c1f03bc1998 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,7 +17,7 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 +#: js/settings-personal.js:31 templates/settings-personal.php:7 msgid "Expire all versions" msgstr "" @@ -29,7 +29,7 @@ msgstr "" msgid "Versions" msgstr "" -#: templates/settings-personal.php:7 +#: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 3ba99f9b10d..d32a2dfcb20 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" -msgstr "Лично" +msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "Проблем с идентификацията" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 37e75b3725c..774f68a7ee1 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,19 +38,19 @@ msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Е-пощата е записана" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Неправилна е-поща" +msgstr "" #: ajax/openid.php:13 msgid "OpenID Changed" -msgstr "OpenID е сменено" +msgstr "" #: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Невалидна заявка" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" @@ -58,7 +58,7 @@ msgstr "" #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "Проблем с идентификацията" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" @@ -66,7 +66,7 @@ msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Езика е сменен" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -84,15 +84,15 @@ msgstr "" #: js/apps.js:28 js/apps.js:67 msgid "Disable" -msgstr "Изключване" +msgstr "" #: js/apps.js:28 js/apps.js:55 msgid "Enable" -msgstr "Включване" +msgstr "" #: js/personal.js:69 msgid "Saving..." -msgstr "Записване..." +msgstr "" #: personal.php:42 personal.php:43 msgid "__language_name__" @@ -108,7 +108,7 @@ msgstr "" #: templates/apps.php:27 msgid "Select an App" -msgstr "Изберете програма" +msgstr "" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" @@ -149,7 +149,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "Клиенти" +msgstr "" #: templates/personal.php:13 msgid "Download Desktop Clients" @@ -165,7 +165,7 @@ msgstr "" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" -msgstr "Парола" +msgstr "" #: templates/personal.php:22 msgid "Your password was changed" @@ -173,43 +173,43 @@ msgstr "" #: templates/personal.php:23 msgid "Unable to change your password" -msgstr "Невъзможна промяна на паролата" +msgstr "" #: templates/personal.php:24 msgid "Current password" -msgstr "Текуща парола" +msgstr "" #: templates/personal.php:25 msgid "New password" -msgstr "Нова парола" +msgstr "" #: templates/personal.php:26 msgid "show" -msgstr "показва" +msgstr "" #: templates/personal.php:27 msgid "Change password" -msgstr "Промяна на парола" +msgstr "" #: templates/personal.php:33 msgid "Email" -msgstr "Е-поща" +msgstr "" #: templates/personal.php:34 msgid "Your email address" -msgstr "Адресът на е-пощата ви" +msgstr "" #: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" -msgstr "Въведете е-поща за възстановяване на паролата" +msgstr "" #: templates/personal.php:41 templates/personal.php:42 msgid "Language" -msgstr "Език" +msgstr "" #: templates/personal.php:47 msgid "Help translate" -msgstr "Помощ за превода" +msgstr "" #: templates/personal.php:52 msgid "WebDAV" @@ -235,15 +235,15 @@ msgstr "" #: templates/users.php:21 templates/users.php:81 msgid "Name" -msgstr "Име" +msgstr "" #: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" -msgstr "Групи" +msgstr "" #: templates/users.php:32 msgid "Create" -msgstr "Ново" +msgstr "" #: templates/users.php:35 msgid "Default Storage" @@ -255,7 +255,7 @@ msgstr "" #: templates/users.php:60 templates/users.php:153 msgid "Other" -msgstr "Друго" +msgstr "" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" @@ -271,4 +271,4 @@ msgstr "" #: templates/users.php:161 msgid "Delete" -msgstr "Изтриване" +msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 7d102e98bdf..bc621909341 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index b77ffa970b2..05f8507380b 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 97f28d3ba80..4e8475171c8 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +65,11 @@ msgstr "" msgid "Files" msgstr "ফাইল" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "ভাগাভাগি বাতিল" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "মুছে ফেল" @@ -77,39 +77,39 @@ msgstr "মুছে ফেল" msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "প্রতিস্থাপন" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "নাম সুপারিশ কর" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "বাতিল" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} ভাগাভাগি বাতিল কর" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} মুছে ফেলা হয়েছে" @@ -143,7 +143,7 @@ msgstr "আপলোড করতে সমস্যা" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "মুলতুবি" @@ -151,56 +151,60 @@ msgstr "মুলতুবি" msgid "1 file uploading" msgstr "১ টি ফাইল আপলোড করা হচ্ছে" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে ।" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "নাম" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "আকার" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,36 +256,36 @@ msgstr "ফোল্ডার" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "আপলোড" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "ডাউনলোড" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "আপলোডের আকার অনেক বড়" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 45d57b363a4..a8bfbc51336 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 09:03+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -70,11 +70,11 @@ msgstr "Directori no vàlid." msgid "Files" msgstr "Fitxers" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Deixa de compartir" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Suprimeix" @@ -82,39 +82,39 @@ msgstr "Suprimeix" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substitueix" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "s'ha substituït {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfés" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "no compartits {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "eliminats {files}" @@ -148,7 +148,7 @@ msgstr "Error en la pujada" msgid "Close" msgstr "Tanca" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendents" @@ -156,56 +156,60 @@ msgstr "Pendents" msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fitxers en pujada" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fitxers escannejats" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error durant l'escaneig" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Mida" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fitxers" @@ -257,36 +261,36 @@ msgstr "Carpeta" msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Puja" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Baixa" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 6f8f77861d1..0b959886042 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 06:21+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "Neplatný adresář" msgid "Files" msgstr "Soubory" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Smazat" @@ -79,39 +79,39 @@ msgstr "Smazat" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "nahradit" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "nahrazeno {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "zpět" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "sdílení zrušeno pro {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "smazáno {files}" @@ -145,7 +145,7 @@ msgstr "Chyba odesílání" msgid "Close" msgstr "Zavřít" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Čekající" @@ -153,56 +153,60 @@ msgstr "Čekající" msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "odesílám {count} souborů" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:457 +#: js/files.js:464 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 vyústí ve zrušení nahrávání." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "prozkoumáno {count} souborů" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "chyba při prohledávání" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Název" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Změněno" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 složka" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 soubor" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} soubory" @@ -254,36 +258,36 @@ msgstr "Složka" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Odeslat" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Odeslaný soubor je příliš velký" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/da/files.po b/l10n/da/files.po index 4e1159fc948..0a8c4d05119 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -72,11 +72,11 @@ msgstr "" msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Fjern deling" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Slet" @@ -84,39 +84,39 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "erstat" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "erstattede {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "fortryd" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "ikke delte {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "slettede {files}" @@ -150,7 +150,7 @@ msgstr "Fejl ved upload" msgid "Close" msgstr "Luk" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Afventer" @@ -158,56 +158,60 @@ msgstr "Afventer" msgid "1 file uploading" msgstr "1 fil uploades" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer uploades" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer skannet" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "fejl under scanning" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Ændret" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -259,36 +263,36 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Upload" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Download" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload for stor" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/de/core.po b/l10n/de/core.po index d4b5f08b8f2..3a66b45941b 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -7,7 +7,7 @@ # , 2011. # , 2012. # , 2011. -# I Robot , 2012. +# I Robot , 2012-2013. # I Robot , 2012. # Jan-Christoph Borchardt , 2011. # , 2012. @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 13:25+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" @@ -99,55 +99,55 @@ msgstr "Fehler beim Entfernen von %s von den Favoriten." msgid "Settings" msgstr "Einstellungen" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "Heute" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "Gestern" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "Vor Jahren" @@ -583,7 +583,7 @@ msgstr "Weiter" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/de/files.po b/l10n/de/files.po index c2ef3a1360d..5bf3f95305a 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -5,7 +5,7 @@ # Translators: # , 2012. # , 2012. -# I Robot , 2012. +# I Robot , 2012-2013. # I Robot , 2012. # Jan-Christoph Borchardt , 2012. # Jan-Christoph Borchardt , 2011. @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -82,11 +82,11 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Löschen" @@ -94,49 +94,49 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Name vorschlagen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} wurde ersetzt" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Freigabe von {files} aufgehoben" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} gelöscht" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' ist kein gültiger Dateiname." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Der Dateiname darf nicht leer sein." #: js/files.js:45 msgid "" @@ -160,7 +160,7 @@ msgstr "Fehler beim Upload" msgid "Close" msgstr "Schließen" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ausstehend" @@ -168,56 +168,60 @@ msgstr "Ausstehend" msgid "1 file uploading" msgstr "Eine Datei wird hoch geladen" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} Dateien werden hochgeladen" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 Datei" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} Dateien" @@ -269,36 +273,36 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Hochladen" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload zu groß" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 9ae1355f88a..b0ce05ca25c 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -16,15 +16,16 @@ # , 2012. # , 2012. # Phi Lieb <>, 2012. +# , 2013. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 10:38+0000\n" +"Last-Translator: Valermos \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" @@ -98,55 +99,55 @@ msgstr "Fehler beim Entfernen von %s von den Favoriten." msgid "Settings" msgstr "Einstellungen" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "Heute" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "Gestern" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "Vor Jahren" @@ -582,7 +583,7 @@ msgstr "Weiter" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 2712cb099bf..366e965b6cb 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -6,7 +6,7 @@ # , 2012. # , 2012-2013. # , 2012. -# I Robot , 2012. +# I Robot , 2012-2013. # I Robot , 2012. # Jan-Christoph Borchardt , 2012. # Jan-Christoph Borchardt , 2011. @@ -18,6 +18,7 @@ # , 2012. # , 2012. # Phi Lieb <>, 2012. +# , 2013. # , 2012. # Thomas Müller <>, 2012. # , 2012. @@ -25,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -72,7 +73,7 @@ msgstr "Fehler beim Schreiben auf die Festplatte" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "Nicht genug Speicher verfügbar" +msgstr "Nicht genügend Speicherplatz verfügbar" #: ajax/upload.php:69 msgid "Invalid directory." @@ -82,11 +83,11 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Löschen" @@ -94,49 +95,49 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Name vorschlagen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} wurde ersetzt" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Freigabe für {files} beendet" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} gelöscht" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' ist kein gültiger Dateiname." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Der Dateiname darf nicht leer sein." #: js/files.js:45 msgid "" @@ -160,7 +161,7 @@ msgstr "Fehler beim Upload" msgid "Close" msgstr "Schließen" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ausstehend" @@ -168,56 +169,60 @@ msgstr "Ausstehend" msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} Dateien wurden hochgeladen" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 Datei" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} Dateien" @@ -269,36 +274,36 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Hochladen" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Bitte laden Sie etwas hoch!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/el/files.po b/l10n/el/files.po index 6ea3d727114..dbac2bf8a9e 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -71,11 +71,11 @@ msgstr "" msgid "Files" msgstr "Αρχεία" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Διακοπή κοινής χρήσης" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Διαγραφή" @@ -83,39 +83,39 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "συνιστώμενο όνομα" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} αντικαταστάθηκε" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "μη διαμοιρασμένα {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "διαγραμμένα {files}" @@ -149,7 +149,7 @@ msgstr "Σφάλμα Αποστολής" msgid "Close" msgstr "Κλείσιμο" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Εκκρεμεί" @@ -157,56 +157,60 @@ msgstr "Εκκρεμεί" msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} αρχεία ανεβαίνουν" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} αρχεία ανιχνεύτηκαν" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "σφάλμα κατά την ανίχνευση" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Όνομα" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} αρχεία" @@ -258,36 +262,36 @@ msgstr "Φάκελος" msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Αποστολή" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Λήψη" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Τρέχουσα αναζήτηση " diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 9a51714012a..3e25e7bc068 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Dosieroj" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Malkunhavigi" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Forigi" @@ -78,39 +78,39 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "anstataŭiĝis {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "malfari" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "malkunhaviĝis {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "foriĝis {files}" @@ -144,7 +144,7 @@ msgstr "Alŝuta eraro" msgid "Close" msgstr "Fermi" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Traktotaj" @@ -152,56 +152,60 @@ msgstr "Traktotaj" msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} dosieroj alŝutatas" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} dosieroj skaniĝis" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "eraro dum skano" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nomo" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Grando" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modifita" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} dosierujoj" @@ -253,36 +257,36 @@ msgstr "Dosierujo" msgid "From link" msgstr "El ligilo" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Alŝuti" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Elŝuto tro larĝa" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/es/files.po b/l10n/es/files.po index 21ff8e3ba72..0ecf49cede7 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 10:50+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +72,11 @@ msgstr "Directorio invalido." msgid "Files" msgstr "Archivos" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Eliminar" @@ -84,39 +84,39 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "reemplazado {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "deshacer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} descompartidos" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminados" @@ -150,7 +150,7 @@ msgstr "Error al subir el archivo" msgid "Close" msgstr "cerrrar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendiente" @@ -158,56 +158,60 @@ msgstr "Pendiente" msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error escaneando" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 archivo" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} archivos" @@ -259,36 +263,36 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde el enlace" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Subir" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Aquí no hay nada. ¡Sube algo!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:106 +#: templates/index.php:104 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 por este servidor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor espere." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Ahora escaneando" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 54b39b3cc7b..0ffc39a7aa6 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "Directorio invalido." msgid "Files" msgstr "Archivos" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Borrar" @@ -78,39 +78,39 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "reemplazado {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "deshacer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} se dejaron de compartir" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} borrados" @@ -144,7 +144,7 @@ msgstr "Error al subir el archivo" msgid "Close" msgstr "Cerrar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendiente" @@ -152,56 +152,60 @@ msgstr "Pendiente" msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error mientras se escaneaba" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 archivo" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} archivos" @@ -253,36 +257,36 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Subir" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 0f0c412ea06..cca8c5dab85 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Failid" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Kustuta" @@ -78,39 +78,39 @@ msgstr "Kustuta" msgid "Rename" msgstr "ümber" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "asenda" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "loobu" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "asendatud nimega {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "tagasi" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "jagamata {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "kustutatud {files}" @@ -144,7 +144,7 @@ msgstr "Üleslaadimise viga" msgid "Close" msgstr "Sulge" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ootel" @@ -152,56 +152,60 @@ msgstr "Ootel" msgid "1 file uploading" msgstr "1 faili üleslaadimisel" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} faili üleslaadimist" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud " +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} faili skännitud" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "viga skännimisel" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nimi" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Suurus" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Muudetud" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fail" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} faili" @@ -253,36 +257,36 @@ msgstr "Kaust" msgid "From link" msgstr "Allikast" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Lae üles" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Lae alla" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index ddd92ff0f3b..e575e56c4e1 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Fitxategiak" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Ezabatu" @@ -79,39 +79,39 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "aholkatu izena" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "ordezkatua {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desegin" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "elkarbanaketa utzita {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "ezabatuta {files}" @@ -145,7 +145,7 @@ msgstr "Igotzean errore bat suertatu da" msgid "Close" msgstr "Itxi" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Zain" @@ -153,56 +153,60 @@ msgstr "Zain" msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fitxategi igotzen" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fitxategi eskaneatuta" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "errore bat egon da eskaneatzen zen bitartean" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Izena" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaina" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fitxategi" @@ -254,36 +258,36 @@ msgstr "Karpeta" msgid "From link" msgstr "Estekatik" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Igo" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Igotakoa handiegia da" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 8ca4747a57a..38ecc85ef7d 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "فایل ها" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "پاک کردن" @@ -79,39 +79,39 @@ msgstr "پاک کردن" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "لغو" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -145,7 +145,7 @@ msgstr "خطا در بار گذاری" msgid "Close" msgstr "بستن" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "در انتظار" @@ -153,56 +153,60 @@ msgstr "در انتظار" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "نام" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "اندازه" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -254,36 +258,36 @@ msgstr "پوشه" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "بارگذاری" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "بارگیری" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "حجم بارگذاری بسیار زیاد است" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index a2dbb70ba56..b35241e5b6a 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -69,11 +69,11 @@ msgstr "Virheellinen kansio." msgid "Files" msgstr "Tiedostot" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Peru jakaminen" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Poista" @@ -81,39 +81,39 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "korvaa" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "peru" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "kumoa" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -147,7 +147,7 @@ msgstr "Lähetysvirhe." msgid "Close" msgstr "Sulje" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Odottaa" @@ -155,56 +155,60 @@ msgstr "Odottaa" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nimi" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Koko" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Muutettu" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} tiedostoa" @@ -256,36 +260,36 @@ msgstr "Kansio" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Lähetä" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:58 +#: 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:72 +#: templates/index.php:70 msgid "Download" msgstr "Lataa" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 61dd57bd6f4..8e5c52a6d69 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 15:26+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -76,11 +76,11 @@ msgstr "Dossier invalide." msgid "Files" msgstr "Fichiers" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Ne plus partager" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Supprimer" @@ -88,39 +88,39 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "remplacer" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annuler" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} a été remplacé" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "annuler" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Fichiers non partagés : {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "Fichiers supprimés : {files}" @@ -154,7 +154,7 @@ msgstr "Erreur de chargement" msgid "Close" msgstr "Fermer" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "En cours" @@ -162,56 +162,60 @@ msgstr "En cours" msgid "1 file uploading" msgstr "1 fichier en cours de téléchargement" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fichiers téléversés" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fichiers indexés" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erreur lors de l'indexation" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Taille" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modifié" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fichier" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fichiers" @@ -263,36 +267,36 @@ msgstr "Dossier" msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Envoyer" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" -msgstr "Téléchargement" +msgstr "Télécharger" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fichier trop volumineux" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 991b1aa060e..cba7bd650c1 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "O directorio é incorrecto." msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Deixar de compartir" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Eliminar" @@ -78,39 +78,39 @@ msgstr "Eliminar" msgid "Rename" msgstr "Mudar o nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "xa existe un {new_name}" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituír" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "substituír {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfacer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} polo {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} sen compartir" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminados" @@ -144,7 +144,7 @@ msgstr "Erro na subida" msgid "Close" msgstr "Pechar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendentes" @@ -152,56 +152,60 @@ msgstr "Pendentes" msgid "1 file uploading" msgstr "1 ficheiro subíndose" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ficheiros subíndose" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ficheiros escaneados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erro mentres analizaba" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ficheiros" @@ -253,36 +257,36 @@ msgstr "Cartafol" msgid "From link" msgstr "Dende a ligazón" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Enviar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar a subida" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nada por aquí. Envía algo." -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que trata de subir superan o tamaño máximo permitido neste servidor" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarda." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/he/files.po b/l10n/he/files.po index 5e4c82a7dc7..e93795fb25d 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "" msgid "Files" msgstr "קבצים" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "הסר שיתוף" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "מחיקה" @@ -80,39 +80,39 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "החלפה" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "הצעת שם" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ביטול" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} הוחלף" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "ביטול" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "בוטל שיתופם של {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} נמחקו" @@ -146,7 +146,7 @@ msgstr "שגיאת העלאה" msgid "Close" msgstr "סגירה" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "ממתין" @@ -154,56 +154,60 @@ msgstr "ממתין" msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} קבצים נשלחים" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} קבצים נסרקו" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "אירעה שגיאה במהלך הסריקה" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "שם" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "גודל" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} קבצים" @@ -255,36 +259,36 @@ msgstr "תיקייה" msgid "From link" msgstr "מקישור" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "העלאה" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "הורדה" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 16c322352c8..b20dbb788e8 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index f704578fce1..7d7b02fd4d1 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Prekini djeljenje" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Briši" @@ -79,39 +79,39 @@ msgstr "Briši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "predloži ime" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "odustani" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "vrati" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -145,7 +145,7 @@ msgstr "Pogreška pri slanju" msgid "Close" msgstr "Zatvori" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "U tijeku" @@ -153,56 +153,60 @@ msgstr "U tijeku" msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "grečka prilikom skeniranja" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Naziv" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -254,36 +258,36 @@ msgstr "mapa" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Pošalji" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hu/files.po b/l10n/hu/files.po index cb4ea383437..600b37964f5 100644 --- a/l10n/hu/files.po +++ b/l10n/hu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 70bb805b100..213d6168db3 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -4,14 +4,15 @@ # # Translators: # Adam Toth , 2012. +# , 2013. # , 2011. # Peter Borsa , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -57,21 +58,21 @@ msgstr "Nem sikerült a lemezre történő írás" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Nincs elég szabad hely" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Érvénytelen mappa." #: appinfo/app.php:10 msgid "Files" msgstr "Fájlok" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Megosztás visszavonása" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Törlés" @@ -79,49 +80,49 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "írjuk fölül" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "legyen más neve" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "mégse" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "a(z) {new_name} állományt kicseréltük" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "visszavonás" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} fájl megosztása visszavonva" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} fájl törölve" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' fájlnév érvénytelen." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "A fájlnév nem lehet semmi." #: js/files.js:45 msgid "" @@ -145,7 +146,7 @@ msgstr "Feltöltési hiba" msgid "Close" msgstr "Bezárás" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Folyamatban" @@ -153,56 +154,60 @@ msgstr "Folyamatban" msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fájl töltődik föl" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fájlt találtunk" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Hiba a fájllista-ellenőrzés során" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Név" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Méret" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Módosítva" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fájl" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fájl" @@ -254,36 +259,36 @@ msgstr "Mappa" msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Feltöltés" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Letöltés" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index b00e728cc43..b307301795c 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -4,14 +4,15 @@ # # Translators: # Adam Toth , 2012. +# , 2013. # Peter Borsa , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 14:17+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 16:35+0000\n" +"Last-Translator: gyeben \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" @@ -246,11 +247,11 @@ msgstr "Létrehozás" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Alapértelmezett tárhely" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Korlátlan" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -262,11 +263,11 @@ msgstr "Csoportadminisztrátor" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Tárhely" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Alapértelmezett" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 655c88dd46a..3e8274293c3 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 17:19+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 16:35+0000\n" +"Last-Translator: gyeben \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" @@ -108,7 +109,7 @@ msgstr "itt ne használjunk változót, pl. \"objectClass=posixGroup\"." #: templates/settings.php:24 msgid "Port" -msgstr "" +msgstr "Port" #: templates/settings.php:25 msgid "Base User Tree" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 679f4b62cb6..587a5efe02f 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Files" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Deler" @@ -78,39 +78,39 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -144,7 +144,7 @@ msgstr "" msgid "Close" msgstr "Clauder" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +152,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nomine" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimension" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificate" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,36 +257,36 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Incargar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Discargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 7f8b49e2fe4..6984dd0ee54 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Berkas" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "batalkan berbagi" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Hapus" @@ -79,39 +79,39 @@ msgstr "Hapus" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "mengganti" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "batal dikerjakan" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -145,7 +145,7 @@ msgstr "Terjadi Galat Pengunggahan" msgid "Close" msgstr "tutup" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Menunggu" @@ -153,56 +153,60 @@ msgstr "Menunggu" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nama" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Ukuran" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -254,36 +258,36 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Unggah" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Batal mengunggah" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Unduh" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Unggahan terlalu besar" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang anda coba unggah melebihi ukuran maksimum untuk pengunggahan berkas di server ini." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silahkan tunggu." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Sedang memindai" diff --git a/l10n/is/files.po b/l10n/is/files.po index 32e2dbdcf87..6276c7b4e00 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +65,11 @@ msgstr "" msgid "Files" msgstr "Skrár" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Hætta deilingu" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Eyða" @@ -77,39 +77,39 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "yfirskrifa" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "stinga upp á nafni" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "hætta við" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "endurskýrði {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Hætti við deilingu á {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "eyddi {files}" @@ -143,7 +143,7 @@ msgstr "Villa við innsendingu" msgid "Close" msgstr "Loka" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Bíður" @@ -151,56 +151,60 @@ msgstr "Bíður" msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} skrár innsendar" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} skrár skimaðar" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "villa við skimun" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nafn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Stærð" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Breytt" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 skrá" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} skrár" @@ -252,36 +256,36 @@ msgstr "Mappa" msgid "From link" msgstr "Af tengli" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Senda inn" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ekkert hér. Sendu eitthvað inn!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Innsend skrá of stór" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/it/files.po b/l10n/it/files.po index 6787dcc3044..64cad51ff92 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 05:17+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +68,11 @@ msgstr "Cartella non valida." msgid "Files" msgstr "File" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Elimina" @@ -80,39 +80,39 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annulla" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "sostituito {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "annulla" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "non condivisi {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "eliminati {files}" @@ -146,7 +146,7 @@ msgstr "Errore di invio" msgid "Close" msgstr "Chiudi" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "In corso" @@ -154,56 +154,60 @@ msgstr "In corso" msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} file in fase di caricamentoe" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} file analizzati" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "errore durante la scansione" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimensione" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificato" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 file" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} file" @@ -255,36 +259,36 @@ msgstr "Cartella" msgid "From link" msgstr "Da collegamento" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Carica" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Scarica" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Il file caricato è troppo grande" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 026f90dc6ac..f3790f0f9a2 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 00:40+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "無効なディレクトリです。" msgid "Files" msgstr "ファイル" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "共有しない" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "削除" @@ -80,39 +80,39 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在しています" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "置き換え" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "推奨名称" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} を置換" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} を {new_name} に置換" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "未共有 {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "削除 {files}" @@ -146,7 +146,7 @@ msgstr "アップロードエラー" msgid "Close" msgstr "閉じる" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "保留" @@ -154,56 +154,60 @@ msgstr "保留" msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ファイルをアップロード中" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "無効なフォルダ名です。\"Shared\" の利用は ownCloud が予約済みです。" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ファイルをスキャン" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "スキャン中のエラー" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名前" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "サイズ" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "更新日時" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ファイル" @@ -255,36 +259,36 @@ msgstr "フォルダ" msgid "From link" msgstr "リンク" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "アップロード" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "ファイルサイズが大きすぎます" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 3f8e2c3e87c..f1a23bb260f 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +65,11 @@ msgstr "" msgid "Files" msgstr "ფაილები" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "გაზიარების მოხსნა" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "წაშლა" @@ -77,39 +77,39 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "შეცვლა" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "სახელის შემოთავაზება" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "უარყოფა" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} შეცვლილია" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "გაზიარება მოხსნილი {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "წაშლილი {files}" @@ -143,7 +143,7 @@ msgstr "შეცდომა ატვირთვისას" msgid "Close" msgstr "დახურვა" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "მოცდის რეჟიმში" @@ -151,56 +151,60 @@ msgstr "მოცდის რეჟიმში" msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ფაილი იტვირთება" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ფაილი სკანირებულია" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "შეცდომა სკანირებისას" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "სახელი" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ზომა" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ფაილი" @@ -252,36 +256,36 @@ msgstr "საქაღალდე" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "ატვირთვა" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 23e43f6d39b..d31779d730d 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 10:05+0000\n" -"Last-Translator: aoiob4305 \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,11 +68,11 @@ msgstr "올바르지 않은 디렉토리입니다." msgid "Files" msgstr "파일" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "공유 해제" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "삭제" @@ -80,39 +80,39 @@ msgstr "삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "바꾸기" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "이름 제안" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "취소" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name}을(를) 대체함" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "실행 취소" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} 공유 해제됨" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} 삭제됨" @@ -146,7 +146,7 @@ msgstr "업로드 오류" msgid "Close" msgstr "닫기" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "보류 중" @@ -154,56 +154,60 @@ msgstr "보류 중" msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "파일 {count}개 업로드 중" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "폴더 이름이 올바르지 않습니다. \"Shared\" 폴더는 ownCloud에서 예약되었습니다." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "파일 {count}개 검색됨" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "검색 중 오류 발생" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "이름" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "크기" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "수정됨" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "파일 1개" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "파일 {count}개" @@ -255,36 +259,36 @@ msgstr "폴더" msgid "From link" msgstr "링크에서" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "업로드" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "다운로드" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "업로드 용량 초과" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "파일을 검색하고 있습니다. 기다려 주십시오." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "현재 검색" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index bf21806a1e4..dd24d811c53 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "داخستن" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "ناو" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "بوخچه" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "بارکردن" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "داگرتن" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index eb374969b91..37c47936f03 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -65,11 +65,11 @@ msgstr "" msgid "Files" msgstr "Dateien" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Läschen" @@ -77,39 +77,39 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -143,7 +143,7 @@ msgstr "Fehler beim eroplueden" msgid "Close" msgstr "Zoumaachen" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -151,56 +151,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Numm" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Gréisst" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Geännert" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,36 +256,36 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Eroplueden" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Eroflueden" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 00d6ea26c63..cb1637670d3 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Failai" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nebesidalinti" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Ištrinti" @@ -79,39 +79,39 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "pasiūlyti pavadinimą" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "pakeiskite {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "nebesidalinti {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "ištrinti {files}" @@ -145,7 +145,7 @@ msgstr "Įkėlimo klaida" msgid "Close" msgstr "Užverti" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Laukiantis" @@ -153,56 +153,60 @@ msgstr "Laukiantis" msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} įkeliami failai" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} praskanuoti failai" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "klaida skanuojant" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dydis" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Pakeista" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 failas" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} failai" @@ -254,36 +258,36 @@ msgstr "Katalogas" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Įkelti" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:106 +#: templates/index.php:104 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ų leidžiamą šiame serveryje" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 3c9ffdcae22..b7b9f2ce1ea 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Faili" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Pārtraukt līdzdalīšanu" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Izdzēst" @@ -78,39 +78,39 @@ msgstr "Izdzēst" msgid "Rename" msgstr "Pārdēvēt" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Ieteiktais nosaukums" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "vienu soli atpakaļ" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -144,7 +144,7 @@ msgstr "Augšuplādēšanas laikā radās kļūda" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Gaida savu kārtu" @@ -152,56 +152,60 @@ msgstr "Gaida savu kārtu" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nosaukums" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Izmērs" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,36 +257,36 @@ msgstr "Mape" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Augšuplādet" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Atcelt augšuplādi" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšuplādēt" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Lejuplādēt" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fails ir par lielu lai to augšuplādetu" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Jūsu augšuplādējamie faili pārsniedz servera pieļaujamo failu augšupielādes apjomu" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Faili šobrīd tiek caurskatīti, nedaudz jāpagaida." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Šobrīd tiek pārbaudīti" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index d69548174d3..ac3fce69d33 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Датотеки" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Не споделувај" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Избриши" @@ -79,39 +79,39 @@ msgstr "Избриши" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "замени" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "предложи име" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "откажи" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "земенета {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "врати" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "без споделување {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "избришани {files}" @@ -145,7 +145,7 @@ msgstr "Грешка при преземање" msgid "Close" msgstr "Затвои" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Чека" @@ -153,56 +153,60 @@ msgstr "Чека" msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} датотеки се подигаат" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Неправилно име на папка. Користењето на „Shared“ е резервирано за Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} датотеки скенирани" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "грешка при скенирање" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Име" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Големина" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Променето" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 датотека" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} датотеки" @@ -254,36 +258,36 @@ msgstr "Папка" msgid "From link" msgstr "Од врска" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Подигни" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Преземи" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Датотеката е премногу голема" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Се скенираат датотеки, ве молам почекајте." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Моментално скенирам" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index b83093920bc..430797847d4 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "" msgid "Files" msgstr "fail" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Padam" @@ -80,39 +80,39 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ganti" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "Batal" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -146,7 +146,7 @@ msgstr "Muat naik ralat" msgid "Close" msgstr "Tutup" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Dalam proses" @@ -154,56 +154,60 @@ msgstr "Dalam proses" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nama " -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Saiz" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -255,36 +259,36 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Muat naik" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Muat turun" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Muat naik terlalu besar" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 02e048476e0..e8d80a8549d 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -73,11 +73,11 @@ msgstr "" msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Avslutt deling" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Slett" @@ -85,39 +85,39 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "erstatt" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "erstatt {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "angre" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "erstatt {new_name} med {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "slettet {files}" @@ -151,7 +151,7 @@ msgstr "Opplasting feilet" msgid "Close" msgstr "Lukk" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ventende" @@ -159,56 +159,60 @@ msgstr "Ventende" msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer laster opp" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer lest inn" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "feil under skanning" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Endret" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -260,36 +264,36 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Last opp" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Last ned" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Opplasting for stor" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skanner etter filer, vennligst vent." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 02a558e9550..87bdade255a 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 20:51+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -75,11 +75,11 @@ msgstr "Ongeldige directory." msgid "Files" msgstr "Bestanden" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Stop delen" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Verwijder" @@ -87,39 +87,39 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "vervang" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "verving {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "delen gestopt {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "verwijderde {files}" @@ -153,7 +153,7 @@ msgstr "Upload Fout" msgid "Close" msgstr "Sluit" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Wachten" @@ -161,56 +161,60 @@ msgstr "Wachten" msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} bestanden aan het uploaden" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Folder naam niet toegestaan. Het gebruik van \"Shared\" is aan Owncloud voorbehouden" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} bestanden gescanned" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Fout tijdens het scannen" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Naam" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 map" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 bestand" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} bestanden" @@ -262,36 +266,36 @@ msgstr "Map" msgid "From link" msgstr "Vanaf link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Upload" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Download" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Bestanden te groot" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 65d549c7677..be388e42dbb 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Slett" @@ -78,39 +78,39 @@ msgstr "Slett" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -144,7 +144,7 @@ msgstr "" msgid "Close" msgstr "Lukk" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +152,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Namn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Storleik" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Endra" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,36 +257,36 @@ msgstr "Mappe" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Last opp" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Last ned" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:106 +#: templates/index.php:104 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 større enn maksgrensa til denne tenaren." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 64d593447d7..389d8fc73e0 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +65,11 @@ msgstr "" msgid "Files" msgstr "Fichièrs" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Non parteja" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Escafa" @@ -77,39 +77,39 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "remplaça" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anulla" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "defar" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -143,7 +143,7 @@ msgstr "Error d'amontcargar" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Al esperar" @@ -151,56 +151,60 @@ msgstr "Al esperar" msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error pendant l'exploracion" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Talha" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,36 +256,36 @@ msgstr "Dorsièr" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Amontcarga" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index dd91b1fa48b..997678ba5a7 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -71,11 +71,11 @@ msgstr "" msgid "Files" msgstr "Pliki" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nie udostępniaj" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Usuwa element" @@ -83,39 +83,39 @@ msgstr "Usuwa element" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "zastap" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "zastąpiony {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "wróć" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiony {new_name} z {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Udostępniane wstrzymane {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "usunięto {files}" @@ -149,7 +149,7 @@ msgstr "Błąd wczytywania" msgid "Close" msgstr "Zamknij" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Oczekujące" @@ -157,56 +157,60 @@ msgstr "Oczekujące" msgid "1 file uploading" msgstr "1 plik wczytany" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} przesyłanie plików" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Błędna nazwa folderu. Nazwa \"Shared\" jest zarezerwowana dla Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} pliki skanowane" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Wystąpił błąd podczas skanowania" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nazwa" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Rozmiar" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 folder" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 plik" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} pliki" @@ -258,36 +262,36 @@ msgstr "Katalog" msgid "From link" msgstr "Z linku" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Prześlij" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Przestań wysyłać" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Brak zawartości. Proszę wysłać pliki!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Pobiera element" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Wysyłany plik ma za duży rozmiar" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 10cc6d26079..4459abeae13 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 1c9143612bb..7f0d53fee34 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -72,11 +72,11 @@ msgstr "" msgid "Files" msgstr "Arquivos" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Descompartilhar" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Excluir" @@ -84,39 +84,39 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituir" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "substituído {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfazer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} não compartilhados" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} apagados" @@ -150,7 +150,7 @@ msgstr "Erro de envio" msgid "Close" msgstr "Fechar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendente" @@ -158,56 +158,60 @@ msgstr "Pendente" msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Enviando {count} arquivos" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de pasta inválido. O nome \"Shared\" é reservado pelo Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} arquivos scaneados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erro durante verificação" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} arquivos" @@ -259,36 +263,36 @@ msgstr "Pasta" msgid "From link" msgstr "Do link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Carregar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Baixar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Arquivo muito grande" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index b7491efa10f..55b05e3b899 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. # Duarte Velez Grilo , 2012. # , 2011, 2012. # Helder Meneses , 2012. @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 00:22+0000\n" +"Last-Translator: Mouxy \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" @@ -89,55 +89,55 @@ msgstr "Erro a remover %s dos favoritos." msgid "Settings" msgstr "Definições" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "Falta 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Há 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hoje" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ontem" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "ultímo mês" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "meses atrás" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ano passado" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anos atrás" @@ -573,7 +573,7 @@ msgstr "seguinte" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "A Actualizar o ownCloud para a versão %s, esta operação pode demorar." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 819ff9bb9f0..e3af44436bc 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -69,11 +69,11 @@ msgstr "Directório Inválido" msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Apagar" @@ -81,49 +81,49 @@ msgstr "Apagar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituir" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Sugira um nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} substituido" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfazer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} não partilhado(s)" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminado(s)" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' não é um nome de ficheiro válido!" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "O nome do ficheiro não pode estar vazio." #: js/files.js:45 msgid "" @@ -147,7 +147,7 @@ msgstr "Erro no envio" msgid "Close" msgstr "Fechar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendente" @@ -155,56 +155,60 @@ msgstr "Pendente" msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "A carregar {count} ficheiros" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "O envio foi cancelado." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de pasta inválido! O uso de \"Shared\" (Partilhado) está reservado pelo OwnCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ficheiros analisados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erro ao analisar" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ficheiros" @@ -256,36 +260,36 @@ msgstr "Pasta" msgid "From link" msgstr "Da ligação" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Enviar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Transferir" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Envio muito grande" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que está a tentar enviar excedem o tamanho máximo de envio permitido neste servidor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 74947c210f5..a52871f402b 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -69,11 +69,11 @@ msgstr "" msgid "Files" msgstr "Fișiere" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Anulează partajarea" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Șterge" @@ -81,39 +81,39 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} deja exista" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "înlocuire" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerează nume" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anulare" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "inlocuit {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "nedistribuit {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "Sterse {files}" @@ -147,7 +147,7 @@ msgstr "Eroare la încărcare" msgid "Close" msgstr "Închide" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "În așteptare" @@ -155,56 +155,60 @@ msgstr "În așteptare" msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fisiere incarcate" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nume de folder invalid. Numele este rezervat pentru OwnCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fisiere scanate" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "eroare la scanarea" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nume" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimensiune" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 folder" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fisier" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fisiere" @@ -256,36 +260,36 @@ msgstr "Dosar" msgid "From link" msgstr "de la adresa" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Încarcă" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descarcă" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, te rog așteptă." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 3edf01da676..8f6c9565309 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -74,11 +74,11 @@ msgstr "" msgid "Files" msgstr "Файлы" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Отменить публикацию" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Удалить" @@ -86,39 +86,39 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "заменить" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "предложить название" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "отмена" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "заменено {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "отмена" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "не опубликованные {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "удаленные {files}" @@ -152,7 +152,7 @@ msgstr "Ошибка загрузки" msgid "Close" msgstr "Закрыть" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ожидание" @@ -160,56 +160,60 @@ msgstr "Ожидание" msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} файлов загружается" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Не правильное имя папки. Имя \"Shared\" резервировано в Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} файлов просканировано" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "ошибка во время санирования" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Название" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Изменён" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} файлов" @@ -261,36 +265,36 @@ msgstr "Папка" msgid "From link" msgstr "Из ссылки" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Загрузить" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Скачать" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Файл слишком большой" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файлы, которые Вы пытаетесь загрузить, превышают лимит для файлов на этом сервере." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Подождите, файлы сканируются." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index a05762104ac..ac7059821d7 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Файлы" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Скрыть" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Удалить" @@ -78,39 +78,39 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{новое_имя} уже существует" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "отмена" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "подобрать название" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "отменить" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "заменено {новое_имя}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "отменить действие" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "заменено {новое_имя} с {старое_имя}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Cовместное использование прекращено {файлы}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "удалено {файлы}" @@ -144,7 +144,7 @@ msgstr "Ошибка загрузки" msgid "Close" msgstr "Закрыть" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ожидающий решения" @@ -152,56 +152,60 @@ msgstr "Ожидающий решения" msgid "1 file uploading" msgstr "загрузка 1 файла" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{количество} загружено файлов" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Загрузка отменена" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Некорректное имя папки. Нименование \"Опубликовано\" зарезервировано ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{количество} файлов отсканировано" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "ошибка при сканировании" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Имя" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Изменен" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{количество} файлов" @@ -253,36 +257,36 @@ msgstr "Папка" msgid "From link" msgstr "По ссылке" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Загрузить " -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Загрузить" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Загрузка слишком велика" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Размер файлов, которые Вы пытаетесь загрузить, превышает максимально допустимый размер для загрузки на данный сервер." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Файлы сканируются, пожалуйста, подождите." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 226a32f5c7e..11ed7c5d453 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "ගොනු" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "නොබෙදු" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "මකන්න" @@ -78,39 +78,39 @@ msgstr "මකන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ප්‍රතිස්ථාපනය කරන්න" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "නමක් යෝජනා කරන්න" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "අත් හරින්න" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -144,7 +144,7 @@ msgstr "උඩුගත කිරීමේ දෝශයක්" msgid "Close" msgstr "වසන්න" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +152,60 @@ msgstr "" msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "පරීක්ෂා කිරීමේදී දෝෂයක්" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "නම" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,36 +257,36 @@ msgstr "ෆෝල්ඩරය" msgid "From link" msgstr "යොමුවෙන්" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "උඩුගත කිරීම" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "බාගත කිරීම" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 353efc86e43..2cdb6444590 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "" msgid "Files" msgstr "Súbory" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nezdielať" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Odstrániť" @@ -80,39 +80,39 @@ msgstr "Odstrániť" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "prepísaný {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "zdieľanie zrušené pre {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "zmazané {files}" @@ -146,7 +146,7 @@ msgstr "Chyba odosielania" msgid "Close" msgstr "Zavrieť" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Čaká sa" @@ -154,56 +154,60 @@ msgstr "Čaká sa" msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} súborov odosielaných" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Odosielanie zrušené" -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nesprávne meno adresára. Použitie slova \"Shared\" (Zdieľané) je vyhradené službou ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} súborov prehľadaných" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "chyba počas kontroly" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Meno" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veľkosť" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Upravené" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 súbor" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} súborov" @@ -255,36 +259,36 @@ msgstr "Priečinok" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Odoslať" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Stiahnuť" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Odosielaný súbor je príliš veľký" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Práve prehliadané" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index f860a206607..1830b257af0 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "" msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Odstrani iz souporabe" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Izbriši" @@ -80,39 +80,39 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "prekliči" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "zamenjano je ime {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "zamenjano ime {new_name} z imenom {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "odstranjeno iz souporabe {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "izbrisano {files}" @@ -146,7 +146,7 @@ msgstr "Napaka med nalaganjem" msgid "Close" msgstr "Zapri" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "V čakanju ..." @@ -154,56 +154,60 @@ msgstr "V čakanju ..." msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "nalagam {count} datotek" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Neveljavno ime datoteke. Uporaba mape \"Share\" je rezervirana za ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} files scanned" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "napaka med pregledovanjem datotek" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ime" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} datotek" @@ -255,36 +259,36 @@ msgstr "Mapa" msgid "From link" msgstr "Iz povezave" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Pošlji" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tukaj ni ničesar. Naložite kaj!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Prejmi" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Nalaganje ni mogoče, ker je preveliko" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite naložiti, presegajo največjo dovoljeno velikost na tem strežniku." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 630aae282ae..de7fb9dc0e1 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index e9bbfde5224..87237d1608e 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Датотеке" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Укини дељење" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Обриши" @@ -79,39 +79,39 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "замени" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "предложи назив" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "откажи" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "замењено {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "опозови" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "укинуто дељење {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "обрисано {files}" @@ -145,7 +145,7 @@ msgstr "Грешка при отпремању" msgid "Close" msgstr "Затвори" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "На чекању" @@ -153,56 +153,60 @@ msgstr "На чекању" msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Отпремам {count} датотеке/а" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Неисправан назив фасцикле. „Дељено“ користи Оунклауд." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "Скенирано датотека: {count}" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "грешка при скенирању" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Назив" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Величина" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Измењено" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 датотека" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} датотеке/а" @@ -254,36 +258,36 @@ msgstr "фасцикла" msgid "From link" msgstr "Са везе" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Отпреми" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Преузми" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 05623f16057..88f665807ac 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +65,11 @@ msgstr "" msgid "Files" msgstr "Fajlovi" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Obriši" @@ -77,39 +77,39 @@ msgstr "Obriši" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -143,7 +143,7 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -151,56 +151,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ime" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,36 +256,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Pošalji" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 8363e4c37a6..ab8cb18858d 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -70,11 +70,11 @@ msgstr "Felaktig mapp." msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Sluta dela" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Radera" @@ -82,39 +82,39 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersätt" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "ersatt {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "ångra" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "stoppad delning {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "raderade {files}" @@ -148,7 +148,7 @@ msgstr "Uppladdningsfel" msgid "Close" msgstr "Stäng" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Väntar" @@ -156,56 +156,60 @@ msgstr "Väntar" msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer laddas upp" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ogiltigt mappnamn. Ordet \"Delad\" är reserverat av ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer skannade" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "fel vid skanning" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Namn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Storlek" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Ändrad" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -257,36 +261,36 @@ msgstr "Mapp" msgid "From link" msgstr "Från länk" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Ladda upp" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 159a5621888..3d07c851a95 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +65,11 @@ msgstr "" msgid "Files" msgstr "கோப்புகள்" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "அழிக்க" @@ -77,39 +77,39 @@ msgstr "அழிக்க" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "மாற்றிடுக" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "பெயரை பரிந்துரைக்க" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "இரத்து செய்க" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "மாற்றப்பட்டது {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "பகிரப்படாதது {கோப்புகள்}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "நீக்கப்பட்டது {கோப்புகள்}" @@ -143,7 +143,7 @@ msgstr "பதிவேற்றல் வழு" msgid "Close" msgstr "மூடுக" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "நிலுவையிலுள்ள" @@ -151,56 +151,60 @@ msgstr "நிலுவையிலுள்ள" msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "செல்லுபடியற்ற கோப்புறை பெயர். \"பகிர்வின்\" பாவனை Owncloud இனால் ஒதுக்கப்பட்டுள்ளது" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "வருடும் போதான வழு" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "பெயர்" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "அளவு" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" @@ -252,36 +256,36 @@ msgstr "கோப்புறை" msgid "From link" msgstr "இணைப்பிலிருந்து" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e0e6d5cdd17..5427372f7ab 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -83,55 +83,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 52d1d0fcdd3..e4cd6b3fe97 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 76907a7fb04..65df77d5574 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\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 a0359bc4ff7..ceeff849fb8 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\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 023ef632745..7713ffeb8ed 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\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 a80a2b98e32..6cd39fb586a 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\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 d8b090078b5..2e21994f8e1 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\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 c0a40761420..9305c50aa37 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\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 86251355228..7368c2c5073 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\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 fd9c1cef4d1..c24434bebe4 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\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 2a74335e2b3..b0b1b317fda 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "ไฟล์" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "ยกเลิกการแชร์ข้อมูล" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "ลบ" @@ -78,39 +78,39 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "แทนที่ {new_name} แล้ว" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "ยกเลิกการแชร์แล้ว {files} ไฟล์" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "ลบไฟล์แล้ว {files} ไฟล์" @@ -144,7 +144,7 @@ msgstr "เกิดข้อผิดพลาดในการอัพโห msgid "Close" msgstr "ปิด" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" @@ -152,56 +152,60 @@ msgstr "อยู่ระหว่างดำเนินการ" msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "กำลังอัพโหลด {count} ไฟล์" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "ชื่อโฟลเดอร์ที่ใช้ไม่ถูกต้อง การใช้งาน \"ถูกแชร์\" ถูกสงวนไว้เฉพาะ Owncloud เท่านั้น" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "สแกนไฟล์แล้ว {count} ไฟล์" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "พบข้อผิดพลาดในระหว่างการสแกนไฟล์" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "ชื่อ" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ขนาด" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ไฟล์" @@ -253,36 +257,36 @@ msgstr "แฟ้มเอกสาร" msgid "From link" msgstr "จากลิงก์" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "อัพโหลด" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index c04a2d2ebd1..4e3a4f7b763 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -69,11 +69,11 @@ msgstr "" msgid "Files" msgstr "Dosyalar" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Sil" @@ -81,39 +81,39 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "değiştir" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Öneri ad" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "iptal" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "değiştirilen {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "geri al" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "paylaşılmamış {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "silinen {files}" @@ -147,7 +147,7 @@ msgstr "Yükleme hatası" msgid "Close" msgstr "Kapat" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Bekliyor" @@ -155,56 +155,60 @@ msgstr "Bekliyor" msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} dosya yükleniyor" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} dosya tarandı" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "tararamada hata oluşdu" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ad" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Boyut" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 dosya" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} dosya" @@ -256,36 +260,36 @@ msgstr "Klasör" msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Yükle" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "İndir" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Yüklemeniz çok büyük" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index eb36e0d5bc2..a7c8eb48db0 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Файли" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Заборонити доступ" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Видалити" @@ -79,39 +79,39 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "заміна" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "запропонуйте назву" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "відміна" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "замінено {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "відмінити" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "неопубліковано {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "видалено {files}" @@ -145,7 +145,7 @@ msgstr "Помилка завантаження" msgid "Close" msgstr "Закрити" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Очікування" @@ -153,56 +153,60 @@ msgstr "Очікування" msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} файлів завантажується" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Невірне ім'я каталогу. Використання \"Shared\" зарезервовано Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} файлів проскановано" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "помилка при скануванні" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ім'я" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Розмір" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Змінено" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} файлів" @@ -254,36 +258,36 @@ msgstr "Папка" msgid "From link" msgstr "З посилання" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Відвантажити" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Завантажити" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 3fae659a1dc..d8c69f7cf39 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "" msgid "Files" msgstr "Tập tin" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Không chia sẽ" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Xóa" @@ -80,39 +80,39 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "thay thế" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "hủy" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "đã thay thế {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "hủy chia sẽ {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "đã xóa {files}" @@ -146,7 +146,7 @@ msgstr "Tải lên lỗi" msgid "Close" msgstr "Đóng" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Chờ" @@ -154,56 +154,60 @@ msgstr "Chờ" msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} tập tin đang tải lên" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:457 +#: js/files.js:464 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/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Tên thư mục không hợp lệ. Sử dụng \"Chia sẻ\" được dành riêng bởi Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} tập tin đã được quét" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "lỗi trong khi quét" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Tên" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} tập tin" @@ -255,36 +259,36 @@ msgstr "Thư mục" msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Tải lên" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:58 +#: 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:72 +#: templates/index.php:70 msgid "Download" msgstr "Tải xuống" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 42c58c88cbf..959861ec8a4 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "文件" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "取消共享" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "删除" @@ -78,39 +78,39 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "替换" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "推荐名称" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "取消" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "已替换 {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "撤销" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "已用 {old_name} 替换 {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "未分享的 {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "已删除的 {files}" @@ -144,7 +144,7 @@ msgstr "上传错误" msgid "Close" msgstr "关闭" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pending" @@ -152,56 +152,60 @@ msgstr "Pending" msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} 个文件正在上传" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传。关闭页面会取消上传。" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} 个文件已扫描" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "扫描出错" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名字" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "修改日期" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 个文件" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 个文件" @@ -253,36 +257,36 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "上传" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "这里没有东西.上传点什么!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "下载" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "上传的文件太大了" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "你正在试图上传的文件超过了此服务器支持的最大的文件大小." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "正在扫描文件,请稍候." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "正在扫描" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 2ce09f94756..902c189173c 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -69,11 +69,11 @@ msgstr "" msgid "Files" msgstr "文件" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "取消分享" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "删除" @@ -81,39 +81,39 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "替换" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "建议名称" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "取消" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "替换 {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "撤销" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "取消了共享 {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "删除了 {files}" @@ -147,7 +147,7 @@ msgstr "上传错误" msgid "Close" msgstr "关闭" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "操作等待中" @@ -155,56 +155,60 @@ msgstr "操作等待中" msgid "1 file uploading" msgstr "1个文件上传中" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} 个文件上传中" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "无效的文件夹名称。”Shared“ 是 Owncloud 保留字符。" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} 个文件已扫描。" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "扫描时出错" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名称" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "修改日期" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 个文件" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 个文件" @@ -256,36 +260,36 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "上传" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "下载" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 5c06f6af94d..f992ea0de48 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 5dda16d794a..280e082e48b 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "" msgid "Files" msgstr "檔案" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "取消共享" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "刪除" @@ -80,39 +80,39 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "取代" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "取消" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "已取代 {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "復原" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -146,7 +146,7 @@ msgstr "上傳發生錯誤" msgid "Close" msgstr "關閉" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -154,56 +154,60 @@ msgstr "" msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} 個檔案正在上傳" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中. 離開此頁面將會取消上傳." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "無效的資料夾名稱. \"Shared\" 名稱已被 Owncloud 所保留使用" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "掃描時發生錯誤" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名稱" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "修改" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 個檔案" @@ -255,36 +259,36 @@ msgstr "資料夾" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "上傳" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "沒有任何東西。請上傳內容!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "下載" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "你試圖上傳的檔案已超過伺服器的最大容量限制。 " -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "目前掃描" diff --git a/l10n/zu_ZA/files.po b/l10n/zu_ZA/files.po index 2760f9f95af..bf2e0ce6151 100644 --- a/l10n/zu_ZA/files.po +++ b/l10n/zu_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 5fdc11e44f9..26a52bd616c 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -53,7 +53,11 @@ "Name" => "Név", "Groups" => "Csoportok", "Create" => "Létrehozás", +"Default Storage" => "Alapértelmezett tárhely", +"Unlimited" => "Korlátlan", "Other" => "Más", "Group Admin" => "Csoportadminisztrátor", +"Storage" => "Tárhely", +"Default" => "Alapértelmezett", "Delete" => "Törlés" ); -- cgit v1.2.3 From a40c95242f728d633f3db6312c3024673412fff6 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Wed, 9 Jan 2013 12:48:57 +0100 Subject: more translations --- apps/files/ajax/move.php | 5 +++-- apps/files/ajax/rename.php | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) (limited to 'apps') diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 5612716b7e4..4ebc3f42d9f 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -11,14 +11,15 @@ $dir = stripslashes($_GET["dir"]); $file = stripslashes($_GET["file"]); $target = stripslashes(rawurldecode($_GET["target"])); +$l=OC_L10N::get('files'); if(OC_Filesystem::file_exists($target . '/' . $file)) { - OCP\JSON::error(array("data" => array( "message" => "Could not move $file - File with this name already exists" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) ))); exit; } if(OC_Files::move($dir, $file, $target, $file)) { OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file ))); } else { - OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) ))); } diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index cb0bec399d1..89b4d4bba73 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -14,7 +14,7 @@ $newname = stripslashes($_GET["newname"]); // Delete if( $newname !== '.' and OC_Files::move( $dir, $file, $dir, $newname )) { OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname ))); -} -else{ - OCP\JSON::error(array("data" => array( "message" => "Unable to rename file" ))); +} else { + $l=OC_L10N::get('files'); + OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); } -- cgit v1.2.3 From 912050afa0bd963fdde7d7b223c32bb9bd8e1479 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 10 Jan 2013 00:05:53 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/bg_BG.php | 28 ++++++-------- apps/files/l10n/ca.php | 2 + apps/files/l10n/cs_CZ.php | 2 + apps/files/l10n/da.php | 1 + apps/files/l10n/de.php | 1 + apps/files/l10n/de_DE.php | 1 + apps/files/l10n/el.php | 1 + apps/files/l10n/eo.php | 1 + apps/files/l10n/es.php | 1 + apps/files/l10n/es_AR.php | 1 + apps/files/l10n/et_EE.php | 1 + apps/files/l10n/eu.php | 1 + apps/files/l10n/fi_FI.php | 4 ++ apps/files/l10n/fr.php | 2 + apps/files/l10n/gl.php | 1 + apps/files/l10n/he.php | 1 + apps/files/l10n/hu_HU.php | 1 + apps/files/l10n/id.php | 1 + apps/files/l10n/is.php | 1 + apps/files/l10n/it.php | 2 + apps/files/l10n/ja_JP.php | 2 + apps/files/l10n/ko.php | 1 + apps/files/l10n/ku_IQ.php | 1 + apps/files/l10n/mk.php | 1 + apps/files/l10n/nb_NO.php | 1 + apps/files/l10n/nl.php | 1 + apps/files/l10n/pl.php | 6 +++ apps/files/l10n/pt_BR.php | 1 + apps/files/l10n/pt_PT.php | 1 + apps/files/l10n/ro.php | 1 + apps/files/l10n/ru.php | 1 + apps/files/l10n/ru_RU.php | 1 + apps/files/l10n/si_LK.php | 1 + apps/files/l10n/sk_SK.php | 1 + apps/files/l10n/sl.php | 1 + apps/files/l10n/sv.php | 4 ++ apps/files/l10n/ta_LK.php | 1 + apps/files/l10n/th_TH.php | 1 + apps/files/l10n/tr.php | 1 + apps/files/l10n/uk.php | 1 + apps/files/l10n/vi.php | 1 + apps/files/l10n/zh_CN.GB2312.php | 1 + apps/files/l10n/zh_CN.php | 1 + apps/files/l10n/zh_TW.php | 14 +++++++ apps/files_encryption/l10n/bg_BG.php | 6 +++ apps/files_external/l10n/bg_BG.php | 16 +++++++- apps/files_sharing/l10n/bg_BG.php | 9 +++++ apps/files_versions/l10n/bg_BG.php | 6 +++ apps/user_ldap/l10n/bg_BG.php | 4 ++ apps/user_webdavauth/l10n/fr.php | 3 +- core/l10n/bg_BG.php | 63 +++++--------------------------- core/l10n/pl.php | 1 + core/l10n/sv.php | 1 + core/l10n/zh_TW.php | 11 ++++++ l10n/ar/files.po | 18 ++++++++- l10n/bg_BG/core.po | 36 +++++++++--------- l10n/bg_BG/files.po | 60 ++++++++++++++++++------------ l10n/bg_BG/files_encryption.po | 15 ++++---- l10n/bg_BG/files_external.po | 39 ++++++++++---------- l10n/bg_BG/files_sharing.po | 21 ++++++----- l10n/bg_BG/files_versions.po | 15 ++++---- l10n/bg_BG/lib.po | 71 ++++++++++++++++++------------------ l10n/bg_BG/settings.po | 16 ++++---- l10n/bg_BG/user_ldap.po | 6 +-- l10n/bn_BD/files.po | 18 ++++++++- l10n/ca/files.po | 22 +++++++++-- l10n/cs_CZ/files.po | 22 +++++++++-- l10n/da/files.po | 20 ++++++++-- l10n/de/files.po | 20 ++++++++-- l10n/de_DE/files.po | 20 ++++++++-- l10n/el/files.po | 20 ++++++++-- l10n/eo/files.po | 20 ++++++++-- l10n/es/files.po | 20 ++++++++-- l10n/es_AR/files.po | 20 ++++++++-- l10n/et_EE/files.po | 20 ++++++++-- l10n/eu/files.po | 20 ++++++++-- l10n/fa/files.po | 18 ++++++++- l10n/fi_FI/files.po | 26 ++++++++++--- l10n/fr/files.po | 22 +++++++++-- l10n/fr/user_webdavauth.po | 9 +++-- l10n/gl/files.po | 20 ++++++++-- l10n/he/files.po | 20 ++++++++-- l10n/hi/files.po | 18 ++++++++- l10n/hr/files.po | 18 ++++++++- l10n/hu/files.po | 18 ++++++++- l10n/hu_HU/files.po | 20 ++++++++-- l10n/ia/files.po | 18 ++++++++- l10n/id/files.po | 20 ++++++++-- l10n/is/files.po | 20 ++++++++-- l10n/it/files.po | 22 +++++++++-- l10n/ja_JP/files.po | 22 +++++++++-- l10n/ka_GE/files.po | 18 ++++++++- l10n/ko/files.po | 20 ++++++++-- l10n/ku_IQ/files.po | 20 ++++++++-- l10n/lb/files.po | 18 ++++++++- l10n/lt_LT/files.po | 18 ++++++++- l10n/lv/files.po | 18 ++++++++- l10n/mk/files.po | 20 ++++++++-- l10n/ms_MY/files.po | 18 ++++++++- l10n/nb_NO/files.po | 20 ++++++++-- l10n/nl/files.po | 20 ++++++++-- l10n/nn_NO/files.po | 18 ++++++++- l10n/oc/files.po | 18 ++++++++- l10n/pl/core.po | 36 +++++++++--------- l10n/pl/files.po | 32 +++++++++++----- l10n/pl/settings.po | 40 ++++++++++---------- l10n/pl_PL/files.po | 18 ++++++++- l10n/pt_BR/files.po | 20 ++++++++-- l10n/pt_PT/files.po | 20 ++++++++-- l10n/ro/files.po | 20 ++++++++-- l10n/ru/files.po | 20 ++++++++-- l10n/ru_RU/files.po | 20 ++++++++-- l10n/si_LK/files.po | 20 ++++++++-- l10n/sk_SK/files.po | 20 ++++++++-- l10n/sl/files.po | 20 ++++++++-- l10n/sq/files.po | 18 ++++++++- l10n/sr/files.po | 18 ++++++++- l10n/sr@latin/files.po | 18 ++++++++- l10n/sv/core.po | 36 +++++++++--------- l10n/sv/files.po | 26 ++++++++++--- l10n/ta_LK/files.po | 20 ++++++++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 16 +++++++- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 20 ++++++++-- l10n/tr/files.po | 20 ++++++++-- l10n/uk/files.po | 20 ++++++++-- l10n/vi/files.po | 20 ++++++++-- l10n/zh_CN.GB2312/files.po | 20 ++++++++-- l10n/zh_CN/files.po | 20 ++++++++-- l10n/zh_HK/files.po | 18 ++++++++- l10n/zh_TW/core.po | 55 ++++++++++++++-------------- l10n/zh_TW/files.po | 47 ++++++++++++++++-------- l10n/zu_ZA/files.po | 18 ++++++++- lib/l10n/bg_BG.php | 34 ++++++++++++++++- settings/l10n/bg_BG.php | 26 ++----------- settings/l10n/pl.php | 16 ++++++++ 144 files changed, 1543 insertions(+), 523 deletions(-) create mode 100644 apps/files_encryption/l10n/bg_BG.php create mode 100644 apps/files_sharing/l10n/bg_BG.php create mode 100644 apps/files_versions/l10n/bg_BG.php create mode 100644 apps/user_ldap/l10n/bg_BG.php (limited to 'apps') diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index b527b0e027f..bc10979611b 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -1,28 +1,22 @@ "Файлът е качен успешно", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата.", -"The uploaded file was only partially uploaded" => "Файлът е качен частично", -"No file was uploaded" => "Фахлът не бе качен", -"Missing a temporary folder" => "Липсва временната папка", -"Failed to write to disk" => "Грешка при запис на диска", +"Missing a temporary folder" => "Липсва временна папка", "Files" => "Файлове", "Delete" => "Изтриване", -"Upload Error" => "Грешка при качване", -"Upload cancelled." => "Качването е отменено.", +"Rename" => "Преименуване", +"replace" => "препокриване", +"cancel" => "отказ", +"undo" => "възтановяване", +"Upload cancelled." => "Качването е спряно.", "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", -"Maximum upload size" => "Макс. размер за качване", -"0 is unlimited" => "0 означава без ограничение", +"Maximum upload size" => "Максимален размер за качване", +"0 is unlimited" => "Ползвайте 0 за без ограничения", "Save" => "Запис", -"New" => "Нов", -"Text file" => "Текстов файл", +"New" => "Ново", "Folder" => "Папка", "Upload" => "Качване", -"Cancel upload" => "Отказване на качването", -"Nothing in here. Upload something!" => "Няма нищо, качете нещо!", +"Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.", "Download" => "Изтегляне", -"Upload too large" => "Файлът е прекалено голям", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файловете които се опитвате да качите са по-големи от позволеното за сървъра.", -"Files are being scanned, please wait." => "Файловете се претърсват, изчакайте." +"Upload too large" => "Файлът който сте избрали за качване е прекалено голям" ); diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 224f0206e10..df099c6331d 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -34,6 +34,8 @@ "{count} files uploading" => "{count} fitxers en pujada", "Upload cancelled." => "La pujada s'ha cancel·lat.", "File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", +"URL cannot be empty." => "La URL no pot ser buida", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud", "{count} files scanned" => "{count} fitxers escannejats", "error while scanning" => "error durant l'escaneig", "Name" => "Nom", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index abd169245f9..301a54c343a 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -34,6 +34,8 @@ "{count} files uploading" => "odesílám {count} souborů", "Upload cancelled." => "Odesílání zrušeno.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", +"URL cannot be empty." => "URL nemůže být prázdná", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud", "{count} files scanned" => "prozkoumáno {count} souborů", "error while scanning" => "chyba při prohledávání", "Name" => "Název", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index b5efe1b9136..02c177a2f1c 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} filer uploades", "Upload cancelled." => "Upload afbrudt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", +"URL cannot be empty." => "URLen kan ikke være tom.", "{count} files scanned" => "{count} filer skannet", "error while scanning" => "fejl under scanning", "Name" => "Navn", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 1b2694ecf04..1c0af30be5c 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -34,6 +34,7 @@ "{count} files uploading" => "{count} Dateien werden hochgeladen", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", +"URL cannot be empty." => "Die URL darf nicht leer sein.", "{count} files scanned" => "{count} Dateien wurden gescannt", "error while scanning" => "Fehler beim Scannen", "Name" => "Name", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 7dd8d3dad51..a7526d35646 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -34,6 +34,7 @@ "{count} files uploading" => "{count} Dateien wurden hochgeladen", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", +"URL cannot be empty." => "Die URL darf nicht leer sein.", "{count} files scanned" => "{count} Dateien wurden gescannt", "error while scanning" => "Fehler beim Scannen", "Name" => "Name", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 4d87c06dd0f..3c1ac538091 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} αρχεία ανεβαίνουν", "Upload cancelled." => "Η αποστολή ακυρώθηκε.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", +"URL cannot be empty." => "Η URL δεν πρέπει να είναι κενή.", "{count} files scanned" => "{count} αρχεία ανιχνεύτηκαν", "error while scanning" => "σφάλμα κατά την ανίχνευση", "Name" => "Όνομα", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 478be98bf5c..92c03ee8826 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} dosieroj alŝutatas", "Upload cancelled." => "La alŝuto nuliĝis.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", +"URL cannot be empty." => "URL ne povas esti malplena.", "{count} files scanned" => "{count} dosieroj skaniĝis", "error while scanning" => "eraro dum skano", "Name" => "Nomo", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index b4234e3f3e7..7489d3b555e 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -34,6 +34,7 @@ "{count} files uploading" => "Subiendo {count} archivos", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.", +"URL cannot be empty." => "La URL no puede estar vacía.", "{count} files scanned" => "{count} archivos escaneados", "error while scanning" => "error escaneando", "Name" => "Nombre", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index a2e0a102aa6..6863f701e65 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -32,6 +32,7 @@ "{count} files uploading" => "Subiendo {count} archivos", "Upload cancelled." => "La subida fue cancelada", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", +"URL cannot be empty." => "La URL no puede estar vacía", "{count} files scanned" => "{count} archivos escaneados", "error while scanning" => "error mientras se escaneaba", "Name" => "Nombre", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index a785651559f..6996b0a7918 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -29,6 +29,7 @@ "{count} files uploading" => "{count} faili üleslaadimist", "Upload cancelled." => "Üleslaadimine tühistati.", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", +"URL cannot be empty." => "URL ei saa olla tühi.", "{count} files scanned" => "{count} faili skännitud", "error while scanning" => "viga skännimisel", "Name" => "Nimi", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 83710f02866..96f59a668e9 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} fitxategi igotzen", "Upload cancelled." => "Igoera ezeztatuta", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", +"URL cannot be empty." => "URLa ezin da hutsik egon.", "{count} files scanned" => "{count} fitxategi eskaneatuta", "error while scanning" => "errore bat egon da eskaneatzen zen bitartean", "Name" => "Izena", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 00f8ded5163..3847590c99e 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -17,6 +17,8 @@ "suggest name" => "ehdota nimeä", "cancel" => "peru", "undo" => "kumoa", +"'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.", +"File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.", "generating ZIP-file, it may take some time." => "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken.", "Unable to upload your file as it is a directory or has 0 bytes" => "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio", @@ -25,6 +27,7 @@ "Pending" => "Odottaa", "Upload cancelled." => "Lähetys peruttu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.", +"URL cannot be empty." => "Verkko-osoite ei voi olla tyhjä", "Name" => "Nimi", "Size" => "Koko", "Modified" => "Muutettu", @@ -43,6 +46,7 @@ "New" => "Uusi", "Text file" => "Tekstitiedosto", "Folder" => "Kansio", +"From link" => "Linkistä", "Upload" => "Lähetä", "Cancel upload" => "Peru lähetys", "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 61ab0846784..9e911324d25 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -34,6 +34,8 @@ "{count} files uploading" => "{count} fichiers téléversés", "Upload cancelled." => "Chargement annulé.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", +"URL cannot be empty." => "L'URL ne peut-être vide", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud", "{count} files scanned" => "{count} fichiers indexés", "error while scanning" => "erreur lors de l'indexation", "Name" => "Nom", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index cf0238d7a79..5bd30e95d17 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -32,6 +32,7 @@ "{count} files uploading" => "{count} ficheiros subíndose", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida.", +"URL cannot be empty." => "URL non pode quedar baleiro.", "{count} files scanned" => "{count} ficheiros escaneados", "error while scanning" => "erro mentres analizaba", "Name" => "Nome", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 7b4f910bce7..bac9a8a6a53 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} קבצים נשלחים", "Upload cancelled." => "ההעלאה בוטלה.", "File upload is in progress. Leaving the page now will cancel the upload." => "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.", +"URL cannot be empty." => "קישור אינו יכול להיות ריק.", "{count} files scanned" => "{count} קבצים נסרקו", "error while scanning" => "אירעה שגיאה במהלך הסריקה", "Name" => "שם", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 4561d9c49e1..b0d46ee7a2c 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -34,6 +34,7 @@ "{count} files uploading" => "{count} fájl töltődik föl", "Upload cancelled." => "A feltöltést megszakítottuk.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", +"URL cannot be empty." => "Az URL nem lehet semmi.", "{count} files scanned" => "{count} fájlt találtunk", "error while scanning" => "Hiba a fájllista-ellenőrzés során", "Name" => "Név", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 1f8cb444d26..5d934e97e7b 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -17,6 +17,7 @@ "Close" => "tutup", "Pending" => "Menunggu", "Upload cancelled." => "Pengunggahan dibatalkan.", +"URL cannot be empty." => "tautan tidak boleh kosong", "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 09312124f8a..b70d212c9c7 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -29,6 +29,7 @@ "{count} files uploading" => "{count} skrár innsendar", "Upload cancelled." => "Hætt við innsendingu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.", +"URL cannot be empty." => "Vefslóð má ekki vera tóm.", "{count} files scanned" => "{count} skrár skimaðar", "error while scanning" => "villa við skimun", "Name" => "Nafn", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index e645d9b871a..8c3173d5d50 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -34,6 +34,8 @@ "{count} files uploading" => "{count} file in fase di caricamentoe", "Upload cancelled." => "Invio annullato", "File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", +"URL cannot be empty." => "L'URL non può essere vuoto.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud", "{count} files scanned" => "{count} file analizzati", "error while scanning" => "errore durante la scansione", "Name" => "Nome", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index fc82c8ef038..eab693c3431 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -34,6 +34,8 @@ "{count} files uploading" => "{count} ファイルをアップロード中", "Upload cancelled." => "アップロードはキャンセルされました。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", +"URL cannot be empty." => "URLは空にできません。", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。", "{count} files scanned" => "{count} ファイルをスキャン", "error while scanning" => "スキャン中のエラー", "Name" => "名前", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 95667df7cbb..dd7df1c0862 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -34,6 +34,7 @@ "{count} files uploading" => "파일 {count}개 업로드 중", "Upload cancelled." => "업로드가 취소되었습니다.", "File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", +"URL cannot be empty." => "URL을 입력해야 합니다.", "{count} files scanned" => "파일 {count}개 검색됨", "error while scanning" => "검색 중 오류 발생", "Name" => "이름", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index 49995f8df86..d6cf6450792 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -1,5 +1,6 @@ "داخستن", +"URL cannot be empty." => "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", "Name" => "ناو", "Save" => "پاشکه‌وتکردن", "Folder" => "بوخچه", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 1b1c3946231..3f48a69874e 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} датотеки се подигаат", "Upload cancelled." => "Преземањето е прекинато.", "File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.", +"URL cannot be empty." => "Адресата неможе да биде празна.", "{count} files scanned" => "{count} датотеки скенирани", "error while scanning" => "грешка при скенирање", "Name" => "Име", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 1de39f021d4..9be868164b1 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -28,6 +28,7 @@ "{count} files uploading" => "{count} filer laster opp", "Upload cancelled." => "Opplasting avbrutt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", +"URL cannot be empty." => "URL-en kan ikke være tom.", "{count} files scanned" => "{count} filer lest inn", "error while scanning" => "feil under skanning", "Name" => "Navn", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 2421f1be65a..77219abcf20 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -34,6 +34,7 @@ "{count} files uploading" => "{count} bestanden aan het uploaden", "Upload cancelled." => "Uploaden geannuleerd.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", +"URL cannot be empty." => "URL kan niet leeg zijn.", "{count} files scanned" => "{count} bestanden gescanned", "error while scanning" => "Fout tijdens het scannen", "Name" => "Naam", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 7ac88664ae2..b96048cf002 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -7,6 +7,8 @@ "No file was uploaded" => "Nie przesłano żadnego pliku", "Missing a temporary folder" => "Brak katalogu tymczasowego", "Failed to write to disk" => "Błąd zapisu na dysk", +"Not enough space available" => "Za mało miejsca", +"Invalid directory." => "Zła ścieżka.", "Files" => "Pliki", "Unshare" => "Nie udostępniaj", "Delete" => "Usuwa element", @@ -20,6 +22,8 @@ "replaced {new_name} with {old_name}" => "zastąpiony {new_name} z {old_name}", "unshared {files}" => "Udostępniane wstrzymane {files}", "deleted {files}" => "usunięto {files}", +"'.' is an invalid file name." => "'.' jest nieprawidłową nazwą pliku.", +"File name cannot be empty." => "Nazwa pliku nie może być pusta.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'są niedozwolone.", "generating ZIP-file, it may take some time." => "Generowanie pliku ZIP, może potrwać pewien czas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów", @@ -30,6 +34,8 @@ "{count} files uploading" => "{count} przesyłanie plików", "Upload cancelled." => "Wczytywanie anulowane.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane.", +"URL cannot be empty." => "URL nie może być pusty.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nazwa folderu nieprawidłowa. Wykorzystanie \"Shared\" jest zarezerwowane przez Owncloud", "{count} files scanned" => "{count} pliki skanowane", "error while scanning" => "Wystąpił błąd podczas skanowania", "Name" => "Nazwa", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index decb30139eb..ece24c7a2fa 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -30,6 +30,7 @@ "{count} files uploading" => "Enviando {count} arquivos", "Upload cancelled." => "Envio cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.", +"URL cannot be empty." => "URL não pode ficar em branco", "{count} files scanned" => "{count} arquivos scaneados", "error while scanning" => "erro durante verificação", "Name" => "Nome", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 97ac32f77fe..447cd6bdeb6 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -34,6 +34,7 @@ "{count} files uploading" => "A carregar {count} ficheiros", "Upload cancelled." => "O envio foi cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", +"URL cannot be empty." => "O URL não pode estar vazio.", "{count} files scanned" => "{count} ficheiros analisados", "error while scanning" => "erro ao analisar", "Name" => "Nome", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index a8761984b65..b816311fac7 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} fisiere incarcate", "Upload cancelled." => "Încărcare anulată.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", +"URL cannot be empty." => "Adresa URL nu poate fi goală.", "{count} files scanned" => "{count} fisiere scanate", "error while scanning" => "eroare la scanarea", "Name" => "Nume", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 53057ea0844..bbbeebc93d0 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} файлов загружается", "Upload cancelled." => "Загрузка отменена.", "File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", +"URL cannot be empty." => "Ссылка не может быть пустой.", "{count} files scanned" => "{count} файлов просканировано", "error while scanning" => "ошибка во время санирования", "Name" => "Название", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index 8de277c4b78..16bcc54e59f 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{количество} загружено файлов", "Upload cancelled." => "Загрузка отменена", "File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", +"URL cannot be empty." => "URL не должен быть пустым.", "{count} files scanned" => "{количество} файлов отсканировано", "error while scanning" => "ошибка при сканировании", "Name" => "Имя", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index be33077f811..e1e06c4f814 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -20,6 +20,7 @@ "1 file uploading" => "1 ගොනුවක් උඩගත කෙරේ", "Upload cancelled." => "උඩුගත කිරීම අත් හරින්න ලදී", "File upload is in progress. Leaving the page now will cancel the upload." => "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත", +"URL cannot be empty." => "යොමුව හිස් විය නොහැක", "error while scanning" => "පරීක්ෂා කිරීමේදී දෝෂයක්", "Name" => "නම", "Size" => "ප්‍රමාණය", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index abcb9358c0f..003b1aff225 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} súborov odosielaných", "Upload cancelled." => "Odosielanie zrušené", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", +"URL cannot be empty." => "URL nemôže byť prázdne", "{count} files scanned" => "{count} súborov prehľadaných", "error while scanning" => "chyba počas kontroly", "Name" => "Meno", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 7d1594da063..2a0f4506386 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -30,6 +30,7 @@ "{count} files uploading" => "nalagam {count} datotek", "Upload cancelled." => "Pošiljanje je preklicano.", "File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", +"URL cannot be empty." => "Naslov URL ne sme biti prazen.", "{count} files scanned" => "{count} files scanned", "error while scanning" => "napaka med pregledovanjem datotek", "Name" => "Ime", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index b5c9049de2c..7277ec17852 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}", "unshared {files}" => "stoppad delning {files}", "deleted {files}" => "raderade {files}", +"'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", +"File name cannot be empty." => "Filnamn kan inte vara tomt.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.", "generating ZIP-file, it may take some time." => "genererar ZIP-fil, det kan ta lite tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes.", @@ -32,6 +34,8 @@ "{count} files uploading" => "{count} filer laddas upp", "Upload cancelled." => "Uppladdning avbruten.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", +"URL cannot be empty." => "URL kan inte vara tom.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud", "{count} files scanned" => "{count} filer skannade", "error while scanning" => "fel vid skanning", "Name" => "Namn", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 7edaf8e4252..16cab5cf963 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -29,6 +29,7 @@ "{count} files uploading" => "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது", "Upload cancelled." => "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது", "File upload is in progress. Leaving the page now will cancel the upload." => "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்.", +"URL cannot be empty." => "URL வெறுமையாக இருக்கமுடியாது.", "{count} files scanned" => "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது", "error while scanning" => "வருடும் போதான வழு", "Name" => "பெயர்", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 214cef925df..3fda142a4e9 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -30,6 +30,7 @@ "{count} files uploading" => "กำลังอัพโหลด {count} ไฟล์", "Upload cancelled." => "การอัพโหลดถูกยกเลิก", "File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", +"URL cannot be empty." => "URL ไม่สามารถเว้นว่างได้", "{count} files scanned" => "สแกนไฟล์แล้ว {count} ไฟล์", "error while scanning" => "พบข้อผิดพลาดในระหว่างการสแกนไฟล์", "Name" => "ชื่อ", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 7b251d0b8eb..b32da7de25e 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} dosya yükleniyor", "Upload cancelled." => "Yükleme iptal edildi.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", +"URL cannot be empty." => "URL boş olamaz.", "{count} files scanned" => "{count} dosya tarandı", "error while scanning" => "tararamada hata oluşdu", "Name" => "Ad", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 3a026af6965..eba48a41cb6 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} файлів завантажується", "Upload cancelled." => "Завантаження перервано.", "File upload is in progress. Leaving the page now will cancel the upload." => "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження.", +"URL cannot be empty." => "URL не може бути пустим.", "{count} files scanned" => "{count} файлів проскановано", "error while scanning" => "помилка при скануванні", "Name" => "Ім'я", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 3f4d887b57b..7d5c5290502 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -29,6 +29,7 @@ "{count} files uploading" => "{count} tập tin đang tải lên", "Upload cancelled." => "Hủy tải lên", "File upload is in progress. Leaving the page now will cancel the upload." => "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.", +"URL cannot be empty." => "URL không được để trống.", "{count} files scanned" => "{count} tập tin đã được quét", "error while scanning" => "lỗi trong khi quét", "Name" => "Tên", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index cad4b95c6aa..e60df8291a9 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -28,6 +28,7 @@ "{count} files uploading" => "{count} 个文件正在上传", "Upload cancelled." => "上传取消了", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。", +"URL cannot be empty." => "网址不能为空。", "{count} files scanned" => "{count} 个文件已扫描", "error while scanning" => "扫描出错", "Name" => "名字", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 7f2bba35e7f..0b26a4b174f 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} 个文件上传中", "Upload cancelled." => "上传已取消", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", +"URL cannot be empty." => "URL不能为空", "{count} files scanned" => "{count} 个文件已扫描。", "error while scanning" => "扫描时出错", "Name" => "名称", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index ae2430106da..03ced5f0cbf 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,29 +1,42 @@ "沒有檔案被上傳. 未知的錯誤.", "There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制", "The uploaded file was only partially uploaded" => "只有部分檔案被上傳", "No file was uploaded" => "無已上傳檔案", "Missing a temporary folder" => "遺失暫存資料夾", "Failed to write to disk" => "寫入硬碟失敗", +"Not enough space available" => "沒有足夠的可用空間", +"Invalid directory." => "無效的資料夾。", "Files" => "檔案", "Unshare" => "取消共享", "Delete" => "刪除", "Rename" => "重新命名", "{new_name} already exists" => "{new_name} 已經存在", "replace" => "取代", +"suggest name" => "建議檔名", "cancel" => "取消", "replaced {new_name}" => "已取代 {new_name}", "undo" => "復原", "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", +"unshared {files}" => "停止分享 {files}", +"deleted {files}" => "已刪除 {files}", +"'.' is an invalid file name." => "'.' 是不合法的檔名。", +"File name cannot be empty." => "檔名不能為空。", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。", "generating ZIP-file, it may take some time." => "產生壓縮檔, 它可能需要一段時間.", "Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0", "Upload Error" => "上傳發生錯誤", "Close" => "關閉", +"Pending" => "等候中", "1 file uploading" => "1 個檔案正在上傳", "{count} files uploading" => "{count} 個檔案正在上傳", "Upload cancelled." => "上傳取消", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", +"URL cannot be empty." => "URL不能為空白.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留", +"{count} files scanned" => "{count} 個檔案已掃描", "error while scanning" => "掃描時發生錯誤", "Name" => "名稱", "Size" => "大小", @@ -43,6 +56,7 @@ "New" => "新增", "Text file" => "文字檔", "Folder" => "資料夾", +"From link" => "從連結", "Upload" => "上傳", "Cancel upload" => "取消上傳", "Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", diff --git a/apps/files_encryption/l10n/bg_BG.php b/apps/files_encryption/l10n/bg_BG.php new file mode 100644 index 00000000000..cb1613ef375 --- /dev/null +++ b/apps/files_encryption/l10n/bg_BG.php @@ -0,0 +1,6 @@ + "Криптиране", +"Enable Encryption" => "Включване на криптирането", +"None" => "Няма", +"Exclude the following file types from encryption" => "Изключване на следните файлови типове от криптирането" +); diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index 48779581846..1f2c29d54c5 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -1,4 +1,18 @@ "Достъпът е даден", +"Grant access" => "Даване на достъп", +"Fill out all required fields" => "Попълнете всички задължителни полета", +"External Storage" => "Външно хранилище", +"Backend" => "Администрация", +"Configuration" => "Конфигурация", +"Options" => "Опции", +"None set" => "Няма избрано", +"All Users" => "Всички потребители", "Groups" => "Групи", -"Delete" => "Изтриване" +"Users" => "Потребители", +"Delete" => "Изтриване", +"Enable User External Storage" => "Вкл. на поддръжка за външно потр. хранилище", +"Allow users to mount their own external storage" => "Позволено е на потребителите да ползват тяхно лично външно хранилище", +"SSL root certificates" => "SSL основни сертификати", +"Import Root Certificate" => "Импортиране на основен сертификат" ); diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php new file mode 100644 index 00000000000..ac94358c4f9 --- /dev/null +++ b/apps/files_sharing/l10n/bg_BG.php @@ -0,0 +1,9 @@ + "Парола", +"Submit" => "Потвърждение", +"%s shared the folder %s with you" => "%s сподели папката %s с Вас", +"%s shared the file %s with you" => "%s сподели файла %s с Вас", +"Download" => "Изтегляне", +"No preview available for" => "Няма наличен преглед за", +"web services under your control" => "уеб услуги под Ваш контрол" +); diff --git a/apps/files_versions/l10n/bg_BG.php b/apps/files_versions/l10n/bg_BG.php new file mode 100644 index 00000000000..98b5f4113ae --- /dev/null +++ b/apps/files_versions/l10n/bg_BG.php @@ -0,0 +1,6 @@ + "История", +"Versions" => "Версии", +"This will delete all existing backup versions of your files" => "Това действие ще изтрие всички налични архивни версии на Вашите файлове", +"Enable" => "Включено" +); diff --git a/apps/user_ldap/l10n/bg_BG.php b/apps/user_ldap/l10n/bg_BG.php new file mode 100644 index 00000000000..c064534a6b8 --- /dev/null +++ b/apps/user_ldap/l10n/bg_BG.php @@ -0,0 +1,4 @@ + "Парола", +"Help" => "Помощ" +); diff --git a/apps/user_webdavauth/l10n/fr.php b/apps/user_webdavauth/l10n/fr.php index 339931c7cee..238c8d3a2fb 100644 --- a/apps/user_webdavauth/l10n/fr.php +++ b/apps/user_webdavauth/l10n/fr.php @@ -1,3 +1,4 @@ "URL : http://" +"URL: http://" => "URL : http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "Owncloud enverra les identifiants de sécurité de l'utilisateur à cet URL et interprète les http 401 et 403 comme des erreurs d'identification et tous les autres codes seront considérés comme une identification valide." ); diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 0033324cb1d..a7cba523be2 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -1,62 +1,19 @@ "Категорията вече съществува:", -"No categories selected for deletion." => "Няма избрани категории за изтриване", "Settings" => "Настройки", -"Cancel" => "Отказ", -"No" => "Не", -"Yes" => "Да", -"Ok" => "Добре", -"Error" => "Грешка", +"seconds ago" => "преди секунди", +"1 minute ago" => "преди 1 минута", +"1 hour ago" => "преди 1 час", +"today" => "днес", +"yesterday" => "вчера", +"last month" => "последният месец", +"last year" => "последната година", +"years ago" => "последните години", "Password" => "Парола", -"You will receive a link to reset your password via Email." => "Ще получите връзка за нулиране на паролата Ви.", -"Username" => "Потребител", -"Request reset" => "Нулиране на заявка", -"Your password was reset" => "Вашата парола е нулирана", -"New password" => "Нова парола", -"Reset password" => "Нулиране на парола", "Personal" => "Лични", "Users" => "Потребители", -"Apps" => "Програми", +"Apps" => "Приложения", "Admin" => "Админ", "Help" => "Помощ", -"Access forbidden" => "Достъпът е забранен", -"Cloud not found" => "облакът не намерен", -"Edit categories" => "Редактиране на категориите", "Add" => "Добавяне", -"Create an admin account" => "Създаване на админ профил", -"Advanced" => "Разширено", -"Data folder" => "Директория за данни", -"Configure the database" => "Конфигуриране на базата", -"will be used" => "ще се ползва", -"Database user" => "Потребител за базата", -"Database password" => "Парола за базата", -"Database name" => "Име на базата", -"Database host" => "Хост за базата", -"Finish setup" => "Завършване на настройките", -"Sunday" => "Неделя", -"Monday" => "Понеделник", -"Tuesday" => "Вторник", -"Wednesday" => "Сряда", -"Thursday" => "Четвъртък", -"Friday" => "Петък", -"Saturday" => "Събота", -"January" => "Януари", -"February" => "Февруари", -"March" => "Март", -"April" => "Април", -"May" => "Май", -"June" => "Юни", -"July" => "Юли", -"August" => "Август", -"September" => "Септември", -"October" => "Октомври", -"November" => "Ноември", -"December" => "Декември", -"Log out" => "Изход", -"Lost your password?" => "Забравена парола?", -"remember" => "запомни", -"Log in" => "Вход", -"You are logged out." => "Вие излязохте.", -"prev" => "пред.", -"next" => "следващо" +"web services under your control" => "уеб услуги под Ваш контрол" ); diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 1208aec5a53..5758afc09ba 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -128,6 +128,7 @@ "You are logged out." => "Wylogowano użytkownika.", "prev" => "wstecz", "next" => "naprzód", +"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę.", "Security Warning!" => "Ostrzeżenie o zabezpieczeniach!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Sprawdź swoje hasło.
Ze względów bezpieczeństwa możesz zostać czasami poproszony o wprowadzenie hasła ponownie.", "Verify" => "Zweryfikowane" diff --git a/core/l10n/sv.php b/core/l10n/sv.php index a7698fb30ce..7020e4b28d6 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -128,6 +128,7 @@ "You are logged out." => "Du är utloggad.", "prev" => "föregående", "next" => "nästa", +"Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund.", "Security Warning!" => "Säkerhetsvarning!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Bekräfta ditt lösenord.
Av säkerhetsskäl kan du ibland bli ombedd att ange ditt lösenord igen.", "Verify" => "Verifiera" diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 45c7596e609..def8c31a21a 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -26,6 +26,8 @@ "The app name is not specified." => "沒有詳述APP名稱.", "Error while sharing" => "分享時發生錯誤", "Error while unsharing" => "取消分享時發生錯誤", +"Error while changing permissions" => "修改權限時發生錯誤", +"Shared with you and the group {group} by {owner}" => "由 {owner} 分享給您和 {group}", "Shared with you by {owner}" => "{owner} 已經和您分享", "Share with" => "與分享", "Share with link" => "使用連結分享", @@ -34,6 +36,8 @@ "Set expiration date" => "設置到期日", "Expiration date" => "到期日", "Share via email:" => "透過email分享:", +"No people found" => "沒有找到任何人", +"Resharing is not allowed" => "不允許重新分享", "Shared in {item} with {user}" => "已和 {user} 分享 {item}", "Unshare" => "取消共享", "can edit" => "可編輯", @@ -43,6 +47,7 @@ "delete" => "刪除", "share" => "分享", "Password protected" => "密碼保護", +"Error unsetting expiration date" => "解除過期日設定失敗", "Error setting expiration date" => "錯誤的到期日設定", "ownCloud password reset" => "ownCloud 密碼重設", "Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: (聯結) ", @@ -66,6 +71,8 @@ "Add" => "添加", "Security Warning" => "安全性警告", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "沒有可用的隨機數字產生器, 請啟用 PHP 中 OpenSSL 擴充功能.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", "Create an admin account" => "建立一個管理者帳號", "Advanced" => "進階", "Data folder" => "資料夾", @@ -98,6 +105,9 @@ "December" => "十二月", "web services under your control" => "網路服務已在你控制", "Log out" => "登出", +"Automatic logon rejected!" => "自動登入被拒!", +"If you did not change your password recently, your account may be compromised!" => "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!", +"Please change your password to secure your account again." => "請更改您的密碼以再次取得您的帳戶的控制權。", "Lost your password?" => "忘記密碼?", "remember" => "記住", "Log in" => "登入", @@ -105,5 +115,6 @@ "prev" => "上一頁", "next" => "下一頁", "Security Warning!" => "安全性警告!", +"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "請輸入您的密碼。
基於安全性的理由,您有時候可能會被要求再次輸入密碼。", "Verify" => "驗證" ); diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 91d0318792f..b57cae5c403 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -18,6 +18,20 @@ 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/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index d4e0355bead..dc719e9d36a 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: 2011-07-25 16:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" @@ -85,15 +85,15 @@ msgstr "" #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" -msgstr "" +msgstr "Настройки" #: js/js.js:711 msgid "seconds ago" -msgstr "" +msgstr "преди секунди" #: js/js.js:712 msgid "1 minute ago" -msgstr "" +msgstr "преди 1 минута" #: js/js.js:713 msgid "{minutes} minutes ago" @@ -101,7 +101,7 @@ msgstr "" #: js/js.js:714 msgid "1 hour ago" -msgstr "" +msgstr "преди 1 час" #: js/js.js:715 msgid "{hours} hours ago" @@ -109,11 +109,11 @@ msgstr "" #: js/js.js:716 msgid "today" -msgstr "" +msgstr "днес" #: js/js.js:717 msgid "yesterday" -msgstr "" +msgstr "вчера" #: js/js.js:718 msgid "{days} days ago" @@ -121,7 +121,7 @@ msgstr "" #: js/js.js:719 msgid "last month" -msgstr "" +msgstr "последният месец" #: js/js.js:720 msgid "{months} months ago" @@ -133,11 +133,11 @@ msgstr "" #: js/js.js:722 msgid "last year" -msgstr "" +msgstr "последната година" #: js/js.js:723 msgid "years ago" -msgstr "" +msgstr "последните години" #: js/oc-dialogs.js:126 msgid "Choose" @@ -213,7 +213,7 @@ msgstr "" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" -msgstr "" +msgstr "Парола" #: js/share.js:172 msgid "Email link to person" @@ -342,23 +342,23 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Лични" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Потребители" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "Приложения" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "Админ" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Помощ" #: templates/403.php:12 msgid "Access forbidden" @@ -374,7 +374,7 @@ msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "" +msgstr "Добавяне" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" @@ -524,7 +524,7 @@ msgstr "" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "" +msgstr "уеб услуги под Ваш контрол" #: templates/layout.user.php:45 msgid "Log out" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index c416d7b2d74..14ac7f3c7b6 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov , 2011. +# Stefan Ilivanov , 2011,2013. # Yasen Pramatarov , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+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" @@ -19,6 +19,20 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" @@ -48,7 +62,7 @@ msgstr "" #: ajax/upload.php:28 msgid "Missing a temporary folder" -msgstr "" +msgstr "Липсва временна папка" #: ajax/upload.php:29 msgid "Failed to write to disk" @@ -64,7 +78,7 @@ msgstr "" #: appinfo/app.php:10 msgid "Files" -msgstr "" +msgstr "Файлове" #: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" @@ -72,11 +86,11 @@ msgstr "" #: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" -msgstr "" +msgstr "Изтриване" #: js/fileactions.js:181 msgid "Rename" -msgstr "" +msgstr "Преименуване" #: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" @@ -84,7 +98,7 @@ msgstr "" #: js/filelist.js:205 js/filelist.js:207 msgid "replace" -msgstr "" +msgstr "препокриване" #: js/filelist.js:205 msgid "suggest name" @@ -92,7 +106,7 @@ msgstr "" #: js/filelist.js:205 js/filelist.js:207 msgid "cancel" -msgstr "" +msgstr "отказ" #: js/filelist.js:254 msgid "replaced {new_name}" @@ -100,7 +114,7 @@ msgstr "" #: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" -msgstr "" +msgstr "възтановяване" #: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" @@ -158,7 +172,7 @@ msgstr "" #: js/files.js:357 js/files.js:393 msgid "Upload cancelled." -msgstr "" +msgstr "Качването е спряно." #: js/files.js:464 msgid "" @@ -183,15 +197,15 @@ msgstr "" #: js/files.js:808 templates/index.php:64 msgid "Name" -msgstr "" +msgstr "Име" #: js/files.js:809 templates/index.php:75 msgid "Size" -msgstr "" +msgstr "Размер" #: js/files.js:810 templates/index.php:77 msgid "Modified" -msgstr "" +msgstr "Променено" #: js/files.js:829 msgid "1 folder" @@ -215,7 +229,7 @@ msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Максимален размер за качване" #: templates/admin.php:10 msgid "max. possible: " @@ -231,7 +245,7 @@ msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "" +msgstr "Ползвайте 0 за без ограничения" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" @@ -239,11 +253,11 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Запис" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "Ново" #: templates/index.php:10 msgid "Text file" @@ -251,7 +265,7 @@ msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "" +msgstr "Папка" #: templates/index.php:14 msgid "From link" @@ -259,7 +273,7 @@ msgstr "" #: templates/index.php:18 msgid "Upload" -msgstr "" +msgstr "Качване" #: templates/index.php:41 msgid "Cancel upload" @@ -267,15 +281,15 @@ msgstr "" #: templates/index.php:56 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "Няма нищо тук. Качете нещо." #: templates/index.php:70 msgid "Download" -msgstr "" +msgstr "Изтегляне" #: templates/index.php:102 msgid "Upload too large" -msgstr "" +msgstr "Файлът който сте избрали за качване е прекалено голям" #: templates/index.php:104 msgid "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 4a39877f9b5..c5aca629edc 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:51+0000\n" +"Last-Translator: Stefan Ilivanov \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +20,16 @@ msgstr "" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Криптиране" #: templates/settings.php:6 msgid "Enable Encryption" -msgstr "" +msgstr "Включване на криптирането" #: templates/settings.php:7 msgid "None" -msgstr "" +msgstr "Няма" #: templates/settings.php:12 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Изключване на следните файлови типове от криптирането" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 07efdf04dde..656df3768cc 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:47+0000\n" +"Last-Translator: Stefan Ilivanov \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Достъпът е даден" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" @@ -27,11 +28,11 @@ msgstr "" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Даване на достъп" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Попълнете всички задължителни полета" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." @@ -56,7 +57,7 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Външно хранилище" #: templates/settings.php:8 templates/settings.php:22 msgid "Mount point" @@ -64,15 +65,15 @@ msgstr "" #: templates/settings.php:9 msgid "Backend" -msgstr "" +msgstr "Администрация" #: templates/settings.php:10 msgid "Configuration" -msgstr "" +msgstr "Конфигурация" #: templates/settings.php:11 msgid "Options" -msgstr "" +msgstr "Опции" #: templates/settings.php:12 msgid "Applicable" @@ -84,37 +85,37 @@ msgstr "" #: templates/settings.php:85 msgid "None set" -msgstr "" +msgstr "Няма избрано" #: templates/settings.php:86 msgid "All Users" -msgstr "" +msgstr "Всички потребители" #: templates/settings.php:87 msgid "Groups" -msgstr "" +msgstr "Групи" #: templates/settings.php:95 msgid "Users" -msgstr "" +msgstr "Потребители" #: templates/settings.php:108 templates/settings.php:109 #: templates/settings.php:144 templates/settings.php:145 msgid "Delete" -msgstr "" +msgstr "Изтриване" #: templates/settings.php:124 msgid "Enable User External Storage" -msgstr "" +msgstr "Вкл. на поддръжка за външно потр. хранилище" #: templates/settings.php:125 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Позволено е на потребителите да ползват тяхно лично външно хранилище" #: templates/settings.php:136 msgid "SSL root certificates" -msgstr "" +msgstr "SSL основни сертификати" #: templates/settings.php:153 msgid "Import Root Certificate" -msgstr "" +msgstr "Импортиране на основен сертификат" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index b19492a550b..0d7fe218e8c 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:45+0000\n" +"Last-Translator: Stefan Ilivanov \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,30 +20,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Парола" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Потвърждение" #: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s сподели папката %s с Вас" #: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s сподели файла %s с Вас" #: templates/public.php:22 templates/public.php:38 msgid "Download" -msgstr "" +msgstr "Изтегляне" #: templates/public.php:37 msgid "No preview available for" -msgstr "" +msgstr "Няма наличен преглед за" #: templates/public.php:43 msgid "web services under your control" -msgstr "" +msgstr "уеб услуги под Ваш контрол" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index c1f03bc1998..0b1e6c05270 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:49+0000\n" +"Last-Translator: Stefan Ilivanov \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,15 +24,15 @@ msgstr "" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "История" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Версии" #: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Това действие ще изтрие всички налични архивни версии на Вашите файлове" #: templates/settings.php:3 msgid "Files Versioning" @@ -39,4 +40,4 @@ msgstr "" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Включено" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index d32a2dfcb20..516eee347ab 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:43+0000\n" +"Last-Translator: Stefan Ilivanov \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,134 +20,134 @@ msgstr "" #: app.php:301 msgid "Help" -msgstr "" +msgstr "Помощ" #: app.php:308 msgid "Personal" -msgstr "" +msgstr "Лични" #: app.php:313 msgid "Settings" -msgstr "" +msgstr "Настройки" #: app.php:318 msgid "Users" -msgstr "" +msgstr "Потребители" #: app.php:325 msgid "Apps" -msgstr "" +msgstr "Приложения" #: app.php:327 msgid "Admin" -msgstr "" +msgstr "Админ" #: files.php:365 msgid "ZIP download is turned off." -msgstr "" +msgstr "Изтеглянето като ZIP е изключено." #: files.php:366 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Файловете трябва да се изтеглят един по един." #: files.php:366 files.php:391 msgid "Back to Files" -msgstr "" +msgstr "Назад към файловете" #: files.php:390 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Приложението не е включено." #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Възникна проблем с идентификацията" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Ключът е изтекъл, моля презаредете страницата" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Файлове" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Текст" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Снимки" #: template.php:103 msgid "seconds ago" -msgstr "" +msgstr "преди секунди" #: template.php:104 msgid "1 minute ago" -msgstr "" +msgstr "преди 1 минута" #: template.php:105 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "преди %d минути" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "преди 1 час" #: template.php:107 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "преди %d часа" #: template.php:108 msgid "today" -msgstr "" +msgstr "днес" #: template.php:109 msgid "yesterday" -msgstr "" +msgstr "вчера" #: template.php:110 #, php-format msgid "%d days ago" -msgstr "" +msgstr "преди %d дни" #: template.php:111 msgid "last month" -msgstr "" +msgstr "последният месец" #: template.php:112 #, php-format msgid "%d months ago" -msgstr "" +msgstr "преди %d месеца" #: template.php:113 msgid "last year" -msgstr "" +msgstr "последната година" #: template.php:114 msgid "years ago" -msgstr "" +msgstr "последните години" #: updater.php:75 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s е налична. Получете повече информация" #: updater.php:77 msgid "up to date" -msgstr "" +msgstr "е актуална" #: updater.php:80 msgid "updates check is disabled" -msgstr "" +msgstr "проверката за обновления е изключена" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Невъзможно откриване на категорията \"%s\"" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 774f68a7ee1..1e14fd56cd5 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: 2011-07-25 16:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" @@ -58,7 +58,7 @@ msgstr "" #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Възникна проблем с идентификацията" #: ajax/removeuser.php:24 msgid "Unable to delete user" @@ -88,7 +88,7 @@ msgstr "" #: js/apps.js:28 js/apps.js:55 msgid "Enable" -msgstr "" +msgstr "Включено" #: js/personal.js:69 msgid "Saving..." @@ -165,7 +165,7 @@ msgstr "" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" -msgstr "" +msgstr "Парола" #: templates/personal.php:22 msgid "Your password was changed" @@ -193,7 +193,7 @@ msgstr "" #: templates/personal.php:33 msgid "Email" -msgstr "" +msgstr "E-mail" #: templates/personal.php:34 msgid "Your email address" @@ -235,11 +235,11 @@ msgstr "" #: templates/users.php:21 templates/users.php:81 msgid "Name" -msgstr "" +msgstr "Име" #: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" -msgstr "" +msgstr "Групи" #: templates/users.php:32 msgid "Create" @@ -271,4 +271,4 @@ msgstr "" #: templates/users.php:161 msgid "Delete" -msgstr "" +msgstr "Изтриване" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index bc621909341..e45d6efc2fb 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: 2012-08-12 22:45+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" @@ -60,7 +60,7 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "Парола" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." @@ -180,4 +180,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Помощ" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 4e8475171c8..8cad0bc2694 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -18,6 +18,20 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index a8bfbc51336..919095b8997 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -23,6 +23,20 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" @@ -171,11 +185,11 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "La URL no pot ser buida" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 0b959886042..0e7e866a144 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslán. Neznámá chyba" @@ -168,11 +182,11 @@ msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušen #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL nemůže být prázdná" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/da/files.po b/l10n/da/files.po index 0a8c4d05119..b2d80372d34 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -25,6 +25,20 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." @@ -173,7 +187,7 @@ msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuler #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URLen kan ikke være tom." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/de/files.po b/l10n/de/files.po index 5bf3f95305a..b87748be1aa 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -35,6 +35,20 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" @@ -183,7 +197,7 @@ msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload a #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Die URL darf nicht leer sein." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 366e965b6cb..ec85e5580e9 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+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" @@ -36,6 +36,20 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" @@ -184,7 +198,7 @@ msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upl #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Die URL darf nicht leer sein." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/el/files.po b/l10n/el/files.po index dbac2bf8a9e..6dbee32887a 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -24,6 +24,20 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" @@ -172,7 +186,7 @@ msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέ #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Η URL δεν πρέπει να είναι κενή." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 3e25e7bc068..9989b6eb9b5 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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,6 +19,20 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." @@ -167,7 +181,7 @@ msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL ne povas esti malplena." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/es/files.po b/l10n/es/files.po index 0ecf49cede7..7ea7d7330ce 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -25,6 +25,20 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Fallo no se subió el fichero" @@ -173,7 +187,7 @@ msgstr "La subida del archivo está en proceso. Salir de la página ahora cancel #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "La URL no puede estar vacía." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 0ffc39a7aa6..d3f2c7ebc15 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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,6 +19,20 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" @@ -167,7 +181,7 @@ msgstr "La subida del archivo está en proceso. Si salís de la página ahora, l #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "La URL no puede estar vacía" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index cca8c5dab85..444a31d0214 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -19,6 +19,20 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" @@ -167,7 +181,7 @@ msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle ülesl #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL ei saa olla tühi." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index e575e56c4e1..0cc98cedbd1 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" @@ -168,7 +182,7 @@ msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du. #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URLa ezin da hutsik egon." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 38ecc85ef7d..ea5bfc082a3 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index b35241e5b6a..bb2f0da1820 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -22,6 +22,20 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" @@ -119,11 +133,11 @@ msgstr "" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' on virheellinen nimi tiedostolle." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Tiedoston nimi ei voi olla tyhjä." #: js/files.js:45 msgid "" @@ -170,7 +184,7 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Verkko-osoite ei voi olla tyhjä" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -258,7 +272,7 @@ msgstr "Kansio" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Linkistä" #: templates/index.php:18 msgid "Upload" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 8e5c52a6d69..3230fbb0c6d 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -29,6 +29,20 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été chargé. Erreur inconnue" @@ -177,11 +191,11 @@ msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "L'URL ne peut-être vide" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index 4917efe0505..ee515cab580 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Christophe Lherieau , 2013. # , 2012. # Robert Di Rosa <>, 2012. # Romain DEP. , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-28 23:13+0000\n" -"Last-Translator: ouafnico \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 14:46+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" @@ -29,4 +30,4 @@ msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "Owncloud enverra les identifiants de sécurité de l'utilisateur à cet URL et interprète les http 401 et 403 comme des erreurs d'identification et tous les autres codes seront considérés comme une identification valide." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index cba7bd650c1..2390a546dbc 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -19,6 +19,20 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Non se subiu ningún ficheiro. Erro descoñecido." @@ -167,7 +181,7 @@ msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL non pode quedar baleiro." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/he/files.po b/l10n/he/files.po index e93795fb25d..cbf762beda7 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." @@ -169,7 +183,7 @@ msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד ת #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "קישור אינו יכול להיות ריק." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index b20dbb788e8..c555c20841b 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 7d7b02fd4d1..e69aea6cf78 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/hu/files.po b/l10n/hu/files.po index 600b37964f5..4956069f94d 100644 --- a/l10n/hu/files.po +++ b/l10n/hu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 213d6168db3..bf6a28272e1 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" @@ -169,7 +183,7 @@ msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a fel #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Az URL nem lehet semmi." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 587a5efe02f..48fee82947c 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -19,6 +19,20 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 6984dd0ee54..cd2442d53bd 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" @@ -168,7 +182,7 @@ msgstr "" #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "tautan tidak boleh kosong" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/is/files.po b/l10n/is/files.po index 6276c7b4e00..d627daf38bf 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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,6 +18,20 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" @@ -166,7 +180,7 @@ msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending mis #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Vefslóð má ekki vera tóm." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/it/files.po b/l10n/it/files.po index 64cad51ff92..162104cd8c2 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" @@ -169,11 +183,11 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "L'URL non può essere vuoto." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index f3790f0f9a2..9f417264265 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" @@ -169,11 +183,11 @@ msgstr "ファイル転送を実行中です。今このページから移動す #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URLは空にできません。" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index f1a23bb260f..27c92e92ba5 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+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" @@ -18,6 +18,20 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index d31779d730d..1cbad6bb34e 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" @@ -169,7 +183,7 @@ msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL을 입력해야 합니다." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index dd24d811c53..e85f7e13045 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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,6 +17,20 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" @@ -165,7 +179,7 @@ msgstr "" #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 37c47936f03..e664d38cc35 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -18,6 +18,20 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index cb1637670d3..0b5d2d78f5b 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ 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/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index b7b9f2ce1ea..7b978c86d82 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -19,6 +19,20 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index ac3fce69d33..5c3bf733238 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" @@ -168,7 +182,7 @@ msgstr "Подигање на датотека е во тек. Напуштењ #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Адресата неможе да биде празна." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 430797847d4..5ae3ad9c1a6 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index e8d80a8549d..d6d18d6614c 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -26,6 +26,20 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." @@ -174,7 +188,7 @@ msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL-en kan ikke være tom." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 87bdade255a..9471312dac3 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -28,6 +28,20 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" @@ -176,7 +190,7 @@ msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de u #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL kan niet leeg zijn." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index be388e42dbb..28e98a9cd57 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -19,6 +19,20 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 389d8fc73e0..63681ee8348 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -18,6 +18,20 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 7650db8a55d..d4c9b685578 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012. +# Cyryl Sochacki , 2012-2013. # Kamil Domański , 2011. # , 2012. # Marcin Małecki , 2011, 2012. @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 08:40+0000\n" +"Last-Translator: Cyryl Sochacki \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" @@ -93,55 +93,55 @@ msgstr "Błąd usunięcia %s z ulubionych." msgid "Settings" msgstr "Ustawienia" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minute temu" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 godzine temu" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "dziś" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "ostani miesiąc" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ostatni rok" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "lat temu" @@ -577,7 +577,7 @@ msgstr "naprzód" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 997678ba5a7..64357ad8259 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012. +# Cyryl Sochacki , 2012-2013. # Marcin Małecki , 2011-2012. # , 2011. # , 2012. @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -24,6 +24,20 @@ 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/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Plik nie został załadowany. Nieznany błąd" @@ -61,11 +75,11 @@ msgstr "Błąd zapisu na dysk" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Za mało miejsca" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Zła ścieżka." #: appinfo/app.php:10 msgid "Files" @@ -121,11 +135,11 @@ msgstr "usunięto {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' jest nieprawidłową nazwą pliku." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Nazwa pliku nie może być pusta." #: js/files.js:45 msgid "" @@ -172,11 +186,11 @@ msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zost #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL nie może być pusty." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nazwa folderu nieprawidłowa. Wykorzystanie \"Shared\" jest zarezerwowane przez Owncloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 50ee10108d8..5f22822bc4d 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012. +# Cyryl Sochacki , 2012-2013. # , 2012. # Kamil Domański , 2011. # Marcin Małecki , 2011, 2012. @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 08:51+0000\n" +"Last-Translator: Cyryl Sochacki \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" @@ -127,27 +127,27 @@ msgstr "-licencjonowane przez \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "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:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 7f0d53fee34..105d7c96385 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -25,6 +25,20 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi transferido. Erro desconhecido" @@ -173,7 +187,7 @@ msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL não pode ficar em branco" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index e3af44436bc..0ae481a5b93 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -22,6 +22,20 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" @@ -170,7 +184,7 @@ msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "O URL não pode estar vazio." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index a52871f402b..055036e3d83 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -22,6 +22,20 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" @@ -170,7 +184,7 @@ msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerup #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Adresa URL nu poate fi goală." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 8f6c9565309..05c00236195 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -27,6 +27,20 @@ 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/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" @@ -175,7 +189,7 @@ msgstr "Файл в процессе загрузки. Покинув стран #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Ссылка не может быть пустой." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index ac7059821d7..5c40bd57bd1 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: ru_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/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" @@ -167,7 +181,7 @@ msgstr "Процесс загрузки файла. Если покинуть с #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL не должен быть пустым." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 11ed7c5d453..b905772406b 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -19,6 +19,20 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" @@ -167,7 +181,7 @@ msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "යොමුව හිස් විය නොහැක" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 2cdb6444590..1d4d69bb59e 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" @@ -169,7 +183,7 @@ msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL nemôže byť prázdne" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 1830b257af0..5ed732142e8 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nobena datoteka ni naložena. Neznana napaka." @@ -169,7 +183,7 @@ msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošilja #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Naslov URL ne sme biti prazen." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index de7fb9dc0e1..57c754a69e0 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -17,6 +17,20 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 87237d1608e..74593611902 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ 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/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 88f665807ac..81511f85a80 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -18,6 +18,20 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index ba0480c2ab7..2a96ecd716e 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -6,16 +6,16 @@ # Christer Eriksson , 2012. # Daniel Sandman , 2012. # , 2011. -# Magnus Höglund , 2012. +# Magnus Höglund , 2012-2013. # , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 07:40+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -89,55 +89,55 @@ msgstr "Fel vid borttagning av %s från favoriter." msgid "Settings" msgstr "Inställningar" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "i dag" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "i går" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "förra månaden" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "månader sedan" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "förra året" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "år sedan" @@ -573,7 +573,7 @@ msgstr "nästa" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Uppdaterar ownCloud till version %s, detta kan ta en stund." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index ab8cb18858d..16e2e102563 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -23,6 +23,20 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" @@ -120,11 +134,11 @@ msgstr "raderade {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' är ett ogiltigt filnamn." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Filnamn kan inte vara tomt." #: js/files.js:45 msgid "" @@ -171,11 +185,11 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL kan inte vara tom." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 3d07c851a95..5c90380e9ab 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -18,6 +18,20 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" @@ -166,7 +180,7 @@ msgstr "கோப்பு பதிவேற்றம் செயல்பா #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL வெறுமையாக இருக்கமுடியாது." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5427372f7ab..ed620b3d817 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\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 e4cd6b3fe97..3b19c76ccf2 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,20 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 65df77d5574..725d407f1b5 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\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 ceeff849fb8..2216112fdd3 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\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 7713ffeb8ed..c6bad656955 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\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 6cd39fb586a..5f6b249e535 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\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 2e21994f8e1..c5c54f1e478 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\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 9305c50aa37..cda81e89909 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\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 7368c2c5073..d1776300b9f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\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 c24434bebe4..241d9102a86 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\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 b0b1b317fda..290a7cebd89 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -19,6 +19,20 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" @@ -167,7 +181,7 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL ไม่สามารถเว้นว่างได้" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 4e3a4f7b763..641b6c26f92 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -22,6 +22,20 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" @@ -170,7 +184,7 @@ msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işlem #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL boş olamaz." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index a7c8eb48db0..12e46e92ae8 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ 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/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" @@ -168,7 +182,7 @@ msgstr "Виконується завантаження файлу. Закрит #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL не може бути пустим." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index d8c69f7cf39..972bed79676 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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,6 +21,20 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 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" @@ -169,7 +183,7 @@ msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi t #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL không được để trống." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 959861ec8a4..b066b89ba00 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "没有上传文件。未知错误" @@ -167,7 +181,7 @@ msgstr "文件正在上传。关闭页面会取消上传。" #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "网址不能为空。" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 902c189173c..9d7a6aacba4 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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,6 +22,20 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" @@ -170,7 +184,7 @@ msgstr "文件正在上传中。现在离开此页会导致上传动作被取消 #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL不能为空" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index f992ea0de48..56eb4f59e2b 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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,6 +17,20 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 5452634a4bf..bcdc1a3f2f8 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -6,13 +6,14 @@ # Donahue Chuang , 2012. # , 2012. # Ming Yi Wu , 2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 07:49+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,55 +87,55 @@ msgstr "" msgid "Settings" msgstr "設定" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 個小時前" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} 個小時前" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "今天" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "昨天" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "上個月" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "幾個月前" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "去年" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "幾年前" @@ -187,11 +188,11 @@ msgstr "取消分享時發生錯誤" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "修改權限時發生錯誤" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "由 {owner} 分享給您和 {group}" #: js/share.js:153 msgid "Shared with you by {owner}" @@ -236,11 +237,11 @@ msgstr "透過email分享:" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "沒有找到任何人" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "不允許重新分享" #: js/share.js:275 msgid "Shared in {item} with {user}" @@ -280,7 +281,7 @@ msgstr "密碼保護" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +msgstr "解除過期日設定失敗" #: js/share.js:566 msgid "Error setting expiration date" @@ -389,7 +390,7 @@ msgstr "沒有可用的隨機數字產生器, 請啟用 PHP 中 OpenSSL 擴充 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。" #: templates/installation.php:32 msgid "" @@ -398,7 +399,7 @@ msgid "" "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 "" +msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" #: templates/installation.php:36 msgid "Create an admin account" @@ -531,17 +532,17 @@ msgstr "登出" #: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "自動登入被拒!" #: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!" #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "請更改您的密碼以再次取得您的帳戶的控制權。" #: templates/login.php:19 msgid "Lost your password?" @@ -580,7 +581,7 @@ msgstr "安全性警告!" msgid "" "Please verify your password.
For security reasons you may be " "occasionally asked to enter your password again." -msgstr "" +msgstr "請輸入您的密碼。
基於安全性的理由,您有時候可能會被要求再次輸入密碼。" #: templates/verify.php:16 msgid "Verify" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 280e082e48b..e2be3a8a9f3 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -6,13 +6,14 @@ # Donahue Chuang , 2012. # , 2012. # Eddy Chang , 2012. +# , 2013. # ywang , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +22,20 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳. 未知的錯誤." @@ -32,7 +47,7 @@ msgstr "無錯誤,檔案上傳成功" #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" #: ajax/upload.php:24 msgid "" @@ -58,11 +73,11 @@ msgstr "寫入硬碟失敗" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "沒有足夠的可用空間" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "無效的資料夾。" #: appinfo/app.php:10 msgid "Files" @@ -90,7 +105,7 @@ msgstr "取代" #: js/filelist.js:205 msgid "suggest name" -msgstr "" +msgstr "建議檔名" #: js/filelist.js:205 js/filelist.js:207 msgid "cancel" @@ -110,25 +125,25 @@ msgstr "使用 {new_name} 取代 {old_name}" #: js/filelist.js:288 msgid "unshared {files}" -msgstr "" +msgstr "停止分享 {files}" #: js/filelist.js:290 msgid "deleted {files}" -msgstr "" +msgstr "已刪除 {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' 是不合法的檔名。" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "檔名不能為空。" #: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。" #: js/files.js:186 msgid "generating ZIP-file, it may take some time." @@ -148,7 +163,7 @@ msgstr "關閉" #: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" -msgstr "" +msgstr "等候中" #: js/files.js:280 msgid "1 file uploading" @@ -169,15 +184,15 @@ msgstr "檔案上傳中. 離開此頁面將會取消上傳." #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL不能為空白." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留" #: js/files.js:727 msgid "{count} files scanned" -msgstr "" +msgstr "{count} 個檔案已掃描" #: js/files.js:735 msgid "error while scanning" @@ -257,7 +272,7 @@ msgstr "資料夾" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "從連結" #: templates/index.php:18 msgid "Upload" diff --git a/l10n/zu_ZA/files.po b/l10n/zu_ZA/files.po index bf2e0ce6151..d9c0a65c13d 100644 --- a/l10n/zu_ZA/files.po +++ b/l10n/zu_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: zu_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index 3eb0660d944..31f37458b81 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -1,4 +1,34 @@ "Лично", -"Authentication error" => "Проблем с идентификацията" +"Help" => "Помощ", +"Personal" => "Лични", +"Settings" => "Настройки", +"Users" => "Потребители", +"Apps" => "Приложения", +"Admin" => "Админ", +"ZIP download is turned off." => "Изтеглянето като ZIP е изключено.", +"Files need to be downloaded one by one." => "Файловете трябва да се изтеглят един по един.", +"Back to Files" => "Назад към файловете", +"Selected files too large to generate zip file." => "Избраните файлове са прекалено големи за генерирането на ZIP архив.", +"Application is not enabled" => "Приложението не е включено.", +"Authentication error" => "Възникна проблем с идентификацията", +"Token expired. Please reload page." => "Ключът е изтекъл, моля презаредете страницата", +"Files" => "Файлове", +"Text" => "Текст", +"Images" => "Снимки", +"seconds ago" => "преди секунди", +"1 minute ago" => "преди 1 минута", +"%d minutes ago" => "преди %d минути", +"1 hour ago" => "преди 1 час", +"%d hours ago" => "преди %d часа", +"today" => "днес", +"yesterday" => "вчера", +"%d days ago" => "преди %d дни", +"last month" => "последният месец", +"%d months ago" => "преди %d месеца", +"last year" => "последната година", +"years ago" => "последните години", +"%s is available. Get more information" => "%s е налична. Получете повече информация", +"up to date" => "е актуална", +"updates check is disabled" => "проверката за обновления е изключена", +"Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"" ); diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 89066d2baa9..853e12812ed 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -1,29 +1,9 @@ "Е-пощата е записана", -"Invalid email" => "Неправилна е-поща", -"OpenID Changed" => "OpenID е сменено", -"Invalid request" => "Невалидна заявка", -"Authentication error" => "Проблем с идентификацията", -"Language changed" => "Езика е сменен", -"Disable" => "Изключване", -"Enable" => "Включване", -"Saving..." => "Записване...", -"Select an App" => "Изберете програма", -"Clients" => "Клиенти", +"Authentication error" => "Възникна проблем с идентификацията", +"Enable" => "Включено", "Password" => "Парола", -"Unable to change your password" => "Невъзможна промяна на паролата", -"Current password" => "Текуща парола", -"New password" => "Нова парола", -"show" => "показва", -"Change password" => "Промяна на парола", -"Email" => "Е-поща", -"Your email address" => "Адресът на е-пощата ви", -"Fill in an email address to enable password recovery" => "Въведете е-поща за възстановяване на паролата", -"Language" => "Език", -"Help translate" => "Помощ за превода", +"Email" => "E-mail", "Name" => "Име", "Groups" => "Групи", -"Create" => "Ново", -"Other" => "Друго", "Delete" => "Изтриване" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 1008726d36e..87fd9fb3317 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -23,8 +23,17 @@ "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "-licensed by " => "-licencjonowane przez ", +"User Documentation" => "Dokumentacja użytkownika", +"Administrator Documentation" => "Dokumentacja Administratora", +"Online Documentation" => "Dokumentacja Online", +"Forum" => "Forum", +"Bugtracker" => "Zgłaszanie błędów", +"Commercial Support" => "Wsparcie komercyjne", "You have used %s of the available %s" => "Korzystasz z %s z dostępnych %s", "Clients" => "Klienci", +"Download Desktop Clients" => "Pobierz klienta dla Komputera", +"Download Android Client" => "Pobierz klienta dla Androida", +"Download iOS Client" => "Pobierz klienta dla iOS", "Password" => "Hasło", "Your password was changed" => "Twoje hasło zostało zmienione", "Unable to change your password" => "Nie można zmienić hasła", @@ -37,11 +46,18 @@ "Fill in an email address to enable password recovery" => "Proszę wprowadzić adres e-mail, aby uzyskać możliwość odzyskania hasła", "Language" => "Język", "Help translate" => "Pomóż w tłumaczeniu", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików", +"Version" => "Wersja", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Stwirzone przez społeczność ownCloud, the kod źródłowy na licencji AGPL.", "Name" => "Nazwa", "Groups" => "Grupy", "Create" => "Utwórz", +"Default Storage" => "Domyślny magazyn", +"Unlimited" => "Bez limitu", "Other" => "Inne", "Group Admin" => "Grupa Admin", +"Storage" => "Magazyn", +"Default" => "Domyślny", "Delete" => "Usuń" ); -- cgit v1.2.3