From 4cc3a3096a5ad28a070db12424db586c40457243 Mon Sep 17 00:00:00 2001 From: Steven Date: Mon, 13 Feb 2012 17:15:31 +0100 Subject: [PATCH 01/68] Server verhindert beim OSX Client einen Delete --- 3rdparty/Sabre/DAV/Server.php | 2 +- apps/calendar/lib/connector_sabre.php | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/3rdparty/Sabre/DAV/Server.php b/3rdparty/Sabre/DAV/Server.php index 3d76d4f191..28c69188a3 100644 --- a/3rdparty/Sabre/DAV/Server.php +++ b/3rdparty/Sabre/DAV/Server.php @@ -648,7 +648,7 @@ class Sabre_DAV_Server { * @return void */ protected function httpDelete($uri) { - + if (!$this->broadcastEvent('beforeUnbind',array($uri))) return; $this->tree->delete($uri); diff --git a/apps/calendar/lib/connector_sabre.php b/apps/calendar/lib/connector_sabre.php index 263fb7ffde..47bf4f202e 100644 --- a/apps/calendar/lib/connector_sabre.php +++ b/apps/calendar/lib/connector_sabre.php @@ -206,6 +206,10 @@ class OC_Connector_Sabre_CalDAV extends Sabre_CalDAV_Backend_Abstract { * @return void */ public function deleteCalendar($calendarId) { + if(preg_match( '=iCal/[1-4]?.*Mac OS X/10.[1-6](.[0-9])?=', $_SERVER['HTTP_USER_AGENT'] )){ + throw new Sabre_DAV_Exception_Forbidden("Action is not possible with OSX 10.6.x", 403); + } + OC_Calendar_Calendar::deleteCalendar($calendarId); } From acb196e17fb6d01a808e8758b5f852447cc03d99 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Sat, 7 Jul 2012 15:18:50 +0200 Subject: [PATCH 02/68] add group_admin table --- db_structure.xml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/db_structure.xml b/db_structure.xml index 94567b4d53..f6dedab0a1 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -233,6 +233,32 @@ + + + *dbprefix*group_admin + + + + + gid + text + + true + 64 + + + + uid + text + + true + 64 + + + + +
+ *dbprefix*groups From d0b625352cc8acc160e22cb2f4e9ae8e10f753f6 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Mon, 9 Jul 2012 21:51:19 +0200 Subject: [PATCH 03/68] some work on subadmins --- lib/group.php | 13 +++++ lib/subadmin.php | 107 +++++++++++++++++++++++++++++++++++ lib/util.php | 22 ++++++- settings/templates/users.php | 22 ++++++- settings/users.php | 25 +++++--- 5 files changed, 178 insertions(+), 11 deletions(-) create mode 100644 lib/subadmin.php diff --git a/lib/group.php b/lib/group.php index ceee5fa4ed..fb280c157e 100644 --- a/lib/group.php +++ b/lib/group.php @@ -271,4 +271,17 @@ class OC_Group { } return $users; } + + /** + * @brief get a list of all users in several groups + * @param array $gids + * @returns array with user ids + */ + public static function usersInGroups($gids){ + $users = array(); + foreach($gids as $gid){ + $users = array_merge(array_diff(self::usersInGroup($gid), $users), $users); + } + return $users; + } } diff --git a/lib/subadmin.php b/lib/subadmin.php new file mode 100644 index 0000000000..aad657b024 --- /dev/null +++ b/lib/subadmin.php @@ -0,0 +1,107 @@ +. + * + */ + +/** + * This class provides all methods needed for managing groups. + * + * Hooks provided: + * post_createSubAdmin($gid) + * post_deleteSubAdmin($gid) + */ +class OC_SubAdmin{ + + /** + * @brief add a SubAdmin + * @param $uid uid of the SubAdmin + * @param $gid gid of the group + * @return boolean + */ + public static function createSubAdmin($uid, $gid){ + $stmt = OC_DB::prepare('INSERT INTO *PREFIX*group_admin (gid,uid) VALUES(?,?)'); + $result = $stmt->execute(array($gid, $uid)); + if(OC_DB::isError($result)){ + return false; + } + OC_Hook::emit( "OC_SubAdmin", "post_createSubAdmin", array( "gid" => $gid )); + return true; + } + + /** + * @brief delete a SubAdmin + * @param $uid uid of the SubAdmin + * @param $gid gid of the group + * @return boolean + */ + public static function deleteSubAdmin($uid, $gid){ + $stmt = OC_DB::prepare('DELETE FROM *PREFIX*group_admin WHERE gid = ? AND uid = ?'); + $result = $stmt->execute(array($gid, $uid)); + if(OC_DB::isError($result)){ + return false; + } + OC_Hook::emit( "OC_SubAdmin", "post_deleteSubAdmin", array( "gid" => $gid )); + return true; + } + + /** + * @brief get groups of a SubAdmin + * @param $uid uid of the SubAdmin + * @return array + */ + public static function getSubAdminsGroups($uid){ + $stmt = OC_DB::prepare('SELECT gid FROM *PREFIX*group_admin WHERE uid = ?'); + $result = $stmt->execute(array($gid, $uid)); + $gids = array(); + while($row = $result->fetchRow()){ + $gids[] = $row['gid']; + } + return $gids; + } + + /** + * @brief get SubAdmins of a group + * @param $gid gid of the group + * @return array + */ + public static function getGroupsSubAdmins($gid){ + $stmt = OC_DB::prepare('SELECT uid FROM *PREFIX*group_admin WHERE gid = ?'); + $result = $stmt->execute(array($gid, $uid)); + $uids = array(); + while($row = $result->fetchRow()){ + $uids[] = $row['uid']; + } + return $uids; + } + + /** + * @brief get all SubAdmins + * @return array + */ + public static function getAllSubAdmins(){ + $stmt = OC_DB::prepare('SELECT * FROM *PREFIX*group_admin'); + $result = $stmt->execute(array($gid, $uid)); + $subadmins = array(); + while($row = $result->fetchRow()){ + $subadmins[] = $row; + } + return $subadmins; + } +} diff --git a/lib/util.php b/lib/util.php index 2a7b8a922f..de9171edc8 100755 --- a/lib/util.php +++ b/lib/util.php @@ -66,7 +66,7 @@ class OC_Util { * @return array */ public static function getVersion(){ - return array(4,80,1); + return array(4,81,2); } /** @@ -320,6 +320,26 @@ class OC_Util { } } + /** + * Check if the user is a subadmin, redirects to home if not + * @return array $groups where the current user is subadmin + */ + public static function checkSubAdminUser(){ + // Check if we are a user + self::checkLoggedIn(); + if(OC_Group::inGroup(OC_User::getUser(),'admin')){ + return OC_Group::getGroups(); + } + $stmt = OC_DB::prepare('SELECT COUNT(*) as count FROM *PREFIX*group_admin WHERE uid = ?'); + $result = $stmt->execute(array(OC_User::getUser())); + $result = $result->fetchRow(); + if($result['count'] == 0){ + header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' )); + exit(); + } + return $groups; + } + /** * Redirect to the user default page */ diff --git a/settings/templates/users.php b/settings/templates/users.php index 5511242456..b16aa1ae16 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -1,13 +1,14 @@ - * This file is licensed under the Affero General Public License version 3 or later. * See the COPYING-README file. */ - $allGroups=array(); foreach($_["groups"] as $group) { $allGroups[]=$group['name']; } +$_['subadmingroups'] = $_['groups']; ?>
@@ -60,6 +61,9 @@ foreach($_["groups"] as $group) {
+ + + @@ -84,6 +88,20 @@ foreach($_["groups"] as $group) { + + + - + @@ -74,9 +78,10 @@ $_['subadmingroups'] = $_['groups'];
t('Name')?> t( 'Password' ); ?> t( 'Groups' ); ?>t('SubAdmins'); ?> t( 'Quota' ); ?>  
+
'); + var select=$('
t( 'Password' ); ?> t( 'Groups' ); ?> t('SubAdmins'); ?>t('SubAdmin'); ?> t( 'Quota' ); ?>   ●●●●●●● set new password + alt="set new password" title="set new password"/> diff --git a/settings/users.php b/settings/users.php index e066956291..60ffc337a7 100644 --- a/settings/users.php +++ b/settings/users.php @@ -19,20 +19,20 @@ $groups = array(); $isadmin = OC_Group::inGroup(OC_User::getUser(),'admin')?true:false; if($isadmin){ - $groups = OC_Group::getGroups(); + $accessiblegroups = OC_Group::getGroups(); $accessibleusers = OC_User::getUsers(); $subadmins = OC_SubAdmin::getAllSubAdmins(); }else{ - $groups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()); - $accessibleusers = OC_Group::usersInGroups($groups); + $accessiblegroups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()); + $accessibleusers = OC_Group::usersInGroups($accessiblegroups); $subadmins = false; } foreach($accessibleusers as $i){ - $users[] = array( "name" => $i, "groups" => join( ", ", /*array_intersect(*/OC_Group::getUserGroups($i)/*, OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()))*/),'quota'=>OC_Preferences::getValue($i,'files','quota','default')); + $users[] = array( "name" => $i, "groups" => join( ", ", /*array_intersect(*/OC_Group::getUserGroups($i)/*, OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()))*/),'quota'=>OC_Preferences::getValue($i,'files','quota','default'),'subadmin'=>implode(', ',OC_SubAdmin::getSubAdminsGroups($i))); } -foreach( $groups as $i ){ +foreach( $accessiblegroups as $i ){ // Do some more work here soon $groups[] = array( "name" => $i ); } @@ -55,7 +55,9 @@ if (\OC_App::isEnabled( "files_sharing" ) ) { $tmpl = new OC_Template( "settings", "users", "user" ); $tmpl->assign( "users", $users ); $tmpl->assign( "groups", $groups ); +$tmpl->assign( 'isadmin', $isadmin); $tmpl->assign( 'subadmins', $subadmins); +$tmpl->assign( 'numofgroups', count($accessiblegroups)); $tmpl->assign( 'quota_preset', $quotaPreset); $tmpl->assign( 'default_quota', $defaultQuota); $tmpl->assign( 'share_notice', $shareNotice); From 044134a289339e0b7dbcbfa9f5603efca1dfea81 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Sun, 15 Jul 2012 16:32:57 +0200 Subject: [PATCH 05/68] add another file which was missing in the previous commit --- settings/ajax/togglesubadmins.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 settings/ajax/togglesubadmins.php diff --git a/settings/ajax/togglesubadmins.php b/settings/ajax/togglesubadmins.php new file mode 100644 index 0000000000..8e91af62c5 --- /dev/null +++ b/settings/ajax/togglesubadmins.php @@ -0,0 +1,23 @@ + Date: Wed, 18 Jul 2012 15:27:31 +0200 Subject: [PATCH 06/68] fix changepassword.php for subadmins --- settings/ajax/changepassword.php | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index 4ba6813517..a5122bdd9d 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -11,7 +11,28 @@ $oldPassword=isset($_POST["oldpassword"])?$_POST["oldpassword"]:''; OC_JSON::checkLoggedIn(); OCP\JSON::callCheck(); -if( (!OC_Group::inGroup( OC_User::getUser(), 'admin' ) && ($username!=OC_User::getUser() || !OC_User::checkPassword($username,$oldPassword)))) { +$userstatus = null; +if(OC_Group::inGroup(OC_User::getUser(), 'admin')){ + $userstatus = 'admin'; +} +if(OC_SubAdmin::isSubAdmin(OC_User::getUser())){ + $accessiblegroups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()); + $isuseraccessible = false; + foreach($accessiblegroups as $accessiblegroup){ + if(OC_Group::inGroup($username, $accessiblegroup)){ + $isuseraccessible = true; + break; + } + } + if($isuseraccessible){ + $userstatus = 'subadmin'; + } +} +if(OC_User::getUser() == $username && OC_User::checkPassword($username,$oldPassword)){ + $userstatus = 'user'; +} + +if(is_null($userstatus)){ OC_JSON::error( array( "data" => array( "message" => "Authentication error" ))); exit(); } From f503aea09999e55bb2e51e87fbdd769092a97501 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Wed, 18 Jul 2012 15:28:12 +0200 Subject: [PATCH 07/68] remove unused code from togglesubadmins.php --- settings/ajax/togglesubadmins.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/settings/ajax/togglesubadmins.php b/settings/ajax/togglesubadmins.php index 8e91af62c5..42db845030 100644 --- a/settings/ajax/togglesubadmins.php +++ b/settings/ajax/togglesubadmins.php @@ -6,10 +6,6 @@ require_once('../../lib/base.php'); OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); -$success = true; -$error = "add user to"; -$action = "add"; - $username = $_POST["username"]; $group = OC_Util::sanitizeHTML($_POST["group"]); From a5bebb86a59a156d00bbd36f477696ddd38ca092 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Wed, 18 Jul 2012 17:10:53 +0200 Subject: [PATCH 08/68] add checkSubAdminUser method to OC_JSON class --- lib/json.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/json.php b/lib/json.php index c49b831c12..b0d3d91865 100644 --- a/lib/json.php +++ b/lib/json.php @@ -64,6 +64,18 @@ class OC_JSON{ exit(); } } + + /** + * Check if the user is a subadmin, send json error msg if not + */ + public static function checkSubAdminUser(){ + self::checkLoggedIn(); + if(!OC_Group::inGroup(OC_User::getUser(),'admin') && !OC_SubAdmin::isSubAdmin(OC_User::getUser())){ + $l = OC_L10N::get('core'); + self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); + exit(); + } + } /** * Send json error msg From fb6468936e2b65d7d14f6b86ff3933f6fe0a6cc4 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Wed, 18 Jul 2012 17:23:40 +0200 Subject: [PATCH 09/68] fix removeuser.php for subadmins --- settings/ajax/removeuser.php | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/settings/ajax/removeuser.php b/settings/ajax/removeuser.php index 230815217c..01b2839639 100644 --- a/settings/ajax/removeuser.php +++ b/settings/ajax/removeuser.php @@ -3,11 +3,27 @@ // Init owncloud require_once('../../lib/base.php'); -OC_JSON::checkAdminUser(); +OC_JSON::checkSubAdminUser(); OCP\JSON::callCheck(); $username = $_POST["username"]; +if(!OC_Group::inGroup(OC_User::getUser(), 'admin') && OC_SubAdmin::isSubAdmin(OC_User::getUser())){ + $accessiblegroups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()); + $isuseraccessible = false; + foreach($accessiblegroups as $accessiblegroup){ + if(OC_Group::inGroup($username, $accessiblegroup)){ + $isuseraccessible = true; + break; + } + } + if(!$isuseraccessible){ + $l = OC_L10N::get('core'); + self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); + exit(); + } +} + // Return Success story if( OC_User::deleteUser( $username )){ OC_JSON::success(array("data" => array( "username" => $username ))); From 6e139f16e4a245fb77d97d495fd8f1ce991a733b Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 19 Jul 2012 16:30:58 +0200 Subject: [PATCH 10/68] add isUserAccessible method to OC_SubAdmin class --- lib/subadmin.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/subadmin.php b/lib/subadmin.php index b6f0b3007f..330876536d 100644 --- a/lib/subadmin.php +++ b/lib/subadmin.php @@ -122,4 +122,17 @@ class OC_SubAdmin{ } return false; } + + public static function isUserAccessible($subadmin, $user){ + if(!self::isSubAdmin($subadmin)){ + return false; + } + $accessiblegroups = self::getSubAdminsGroups($subadmin); + foreach($accessiblegroups as $accessiblegroup){ + if(OC_Group::inGroup($user, $accessiblegroup)){ + return true; + } + } + return false; + } } From ffc55f351013b46c841ed1c477de6328169ac4cd Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 19 Jul 2012 16:35:14 +0200 Subject: [PATCH 11/68] simplify code of remoteuser.php --- settings/ajax/removeuser.php | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/settings/ajax/removeuser.php b/settings/ajax/removeuser.php index 01b2839639..1439cfe373 100644 --- a/settings/ajax/removeuser.php +++ b/settings/ajax/removeuser.php @@ -8,20 +8,10 @@ OCP\JSON::callCheck(); $username = $_POST["username"]; -if(!OC_Group::inGroup(OC_User::getUser(), 'admin') && OC_SubAdmin::isSubAdmin(OC_User::getUser())){ - $accessiblegroups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()); - $isuseraccessible = false; - foreach($accessiblegroups as $accessiblegroup){ - if(OC_Group::inGroup($username, $accessiblegroup)){ - $isuseraccessible = true; - break; - } - } - if(!$isuseraccessible){ - $l = OC_L10N::get('core'); - self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); - exit(); - } +if(!OC_Group::inGroup(OC_User::getUser(), 'admin') && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)){ + $l = OC_L10N::get('core'); + self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); + exit(); } // Return Success story From 2fc834230a8e5cae4070d0c1f0053e0dc20db1b3 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 19 Jul 2012 16:37:41 +0200 Subject: [PATCH 12/68] fix setqouta for subadmins --- settings/ajax/setquota.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/settings/ajax/setquota.php b/settings/ajax/setquota.php index 2b412c0f2f..55e936515e 100644 --- a/settings/ajax/setquota.php +++ b/settings/ajax/setquota.php @@ -8,11 +8,17 @@ // Init owncloud require_once('../../lib/base.php'); -OC_JSON::checkAdminUser(); +OC_JSON::checkSubAdminUser(); OCP\JSON::callCheck(); $username = isset($_POST["username"])?$_POST["username"]:''; +if(!OC_Group::inGroup(OC_User::getUser(), 'admin') && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)){ + $l = OC_L10N::get('core'); + self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); + exit(); +} + //make sure the quota is in the expected format $quota=$_POST["quota"]; if($quota!='none' and $quota!='default'){ From 05bc541276192c9f1bbe82ea9989872d5f25f49c Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 19 Jul 2012 16:43:46 +0200 Subject: [PATCH 13/68] add some doc for lib/subadmin.php --- lib/subadmin.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lib/subadmin.php b/lib/subadmin.php index 330876536d..26cf64304d 100644 --- a/lib/subadmin.php +++ b/lib/subadmin.php @@ -101,7 +101,9 @@ class OC_SubAdmin{ /** * @brief checks if a user is a SubAdmin of a group - * @return array + * @param $uid uid of the subadmin + * @param $gid gid of the group + * @return bool */ public static function isSubAdminofGroup($uid, $gid){ $stmt = OC_DB::prepare('SELECT COUNT(*) as count FROM *PREFIX*group_admin where uid = ? AND gid = ?'); @@ -113,6 +115,11 @@ class OC_SubAdmin{ return false; } + /** + * @brief checks if a user is a SubAdmin + * @param $uid uid of the subadmin + * @return bool + */ public static function isSubAdmin($uid){ $stmt = OC_DB::prepare('SELECT COUNT(*) as count FROM *PREFIX*group_admin WHERE uid = ?'); $result = $stmt->execute(array($uid)); @@ -123,6 +130,12 @@ class OC_SubAdmin{ return false; } + /** + * @brief checks if a user is a accessible by a subadmin + * @param $subadmin uid of the subadmin + * @param $user uid of the user + * @return bool + */ public static function isUserAccessible($subadmin, $user){ if(!self::isSubAdmin($subadmin)){ return false; From 6cf418f2fae60dd5f7d3dd1cf77977f6faa0dfcb Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 19 Jul 2012 18:00:33 +0200 Subject: [PATCH 14/68] fix copy&paste fail and deny subadmins to set the default qouta --- settings/ajax/removeuser.php | 2 +- settings/ajax/setquota.php | 4 ++-- settings/templates/users.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/settings/ajax/removeuser.php b/settings/ajax/removeuser.php index 1439cfe373..bfab13a68c 100644 --- a/settings/ajax/removeuser.php +++ b/settings/ajax/removeuser.php @@ -10,7 +10,7 @@ $username = $_POST["username"]; if(!OC_Group::inGroup(OC_User::getUser(), 'admin') && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)){ $l = OC_L10N::get('core'); - self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); + OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } diff --git a/settings/ajax/setquota.php b/settings/ajax/setquota.php index 55e936515e..2a30b1d97e 100644 --- a/settings/ajax/setquota.php +++ b/settings/ajax/setquota.php @@ -13,9 +13,9 @@ OCP\JSON::callCheck(); $username = isset($_POST["username"])?$_POST["username"]:''; -if(!OC_Group::inGroup(OC_User::getUser(), 'admin') && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)){ +if(($username == '' && !OC_Group::inGroup(OC_User::getUser(), 'admin')) || (!OC_Group::inGroup(OC_User::getUser(), 'admin') && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username))){ $l = OC_L10N::get('core'); - self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); + OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } diff --git a/settings/templates/users.php b/settings/templates/users.php index 649fce107d..9f246423d2 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -32,7 +32,7 @@ $_['subadmingroups'] = array_flip($items);
t('Default Quota');?>:
- >
diff --git a/settings/users.php b/settings/users.php index 60ffc337a7..e88c4d1d9c 100644 --- a/settings/users.php +++ b/settings/users.php @@ -55,7 +55,7 @@ if (\OC_App::isEnabled( "files_sharing" ) ) { $tmpl = new OC_Template( "settings", "users", "user" ); $tmpl->assign( "users", $users ); $tmpl->assign( "groups", $groups ); -$tmpl->assign( 'isadmin', $isadmin); +$tmpl->assign( 'isadmin', (int) $isadmin); $tmpl->assign( 'subadmins', $subadmins); $tmpl->assign( 'numofgroups', count($accessiblegroups)); $tmpl->assign( 'quota_preset', $quotaPreset); From bf9b6e9ccc6b2677247aa0a8348337248e7cd25e Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Fri, 20 Jul 2012 17:18:40 +0200 Subject: [PATCH 20/68] don't show label 'add group' for subadmins and remove some debug code --- settings/js/users.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/settings/js/users.js b/settings/js/users.js index f1fb0f5f6d..c184db4374 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -83,7 +83,6 @@ $(document).ready(function(){ } function applyMultiplySelect(element){ - console.log(element); var checked=[]; var user=element.data('username'); if($(element).attr('class') == 'groupsselect'){ @@ -114,9 +113,15 @@ $(document).ready(function(){ } }) }; + var label; + if(isadmin){ + label = t('files', 'add group'); + }else{ + label = null; + } element.multiSelect({ createCallback:addGroup, - createText:'add group', + createText:label, checked:checked, oncheck:checkHandeler, onuncheck:checkHandeler, @@ -142,8 +147,6 @@ $(document).ready(function(){ }; var addSubAdmin = function(group) { - console.log('addSubAdmin called'); - console.log(group); $('select[multiple]').each(function(index, element) { if ($(element).find('option[value="'+group +'"]').length == 0) { $(element).append(''); @@ -294,7 +297,6 @@ $(document).ready(function(){ } else { groups = result.data.groups; - console.log(groups); var tr=$('#content table tbody tr').first().clone(); tr.attr('data-uid',username); tr.find('td.name').text(username); From 88f66460a36f7809289313b30ef4fbe58bd8cced Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Sat, 21 Jul 2012 13:10:51 +0200 Subject: [PATCH 21/68] some js improvements for subadmins --- settings/js/users.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/settings/js/users.js b/settings/js/users.js index c184db4374..e46c6446b8 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -94,6 +94,9 @@ $(document).ready(function(){ if(user==OC.currentUser && group=='admin'){ return false; } + if(!isadmin && checked.length == 1 && checked[0] == group){ + return false; + } $.post( OC.filePath('settings','ajax','togglegroups.php'), { From 11725efd7e897be9588042e02f5d7a83d20d4d86 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Sat, 21 Jul 2012 16:43:39 +0200 Subject: [PATCH 22/68] add some hooks for subadmins --- lib/subadmin.php | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/lib/subadmin.php b/lib/subadmin.php index 04e6143081..0806f27a6b 100644 --- a/lib/subadmin.php +++ b/lib/subadmin.php @@ -19,7 +19,8 @@ * License along with this library. If not, see . * */ - +OC_Hook::connect('OC_User', 'post_deleteUser', 'OC_SubAdmin', 'post_deleteUser'); +OC_Hook::connect('OC_User', 'post_deleteGroup', 'OC_SubAdmin', 'post_deleteGroup'); /** * This class provides all methods needed for managing groups. * @@ -155,4 +156,26 @@ class OC_SubAdmin{ public static function isGroupAccessible($subadmin, $group){ return self::isSubAdminofGroup($subadmin, $group); } + + /** + * @brief delete all SubAdmins by uid + * @param $parameters + * @return boolean + */ + public static function post_deleteUser($parameters){ + $stmt = OC_DB::prepare('DELETE FROM *PREFIX*group_admin WHERE uid = ?'); + $result = $stmt->execute(array($parameters['uid'])); + return true; + } + + /** + * @brief delete all SubAdmins8 by gid + * @param $parameters + * @return boolean + */ + public static function post_deleteGroup($parameters){ + $stmt = OC_DB::prepare('DELETE FROM *PREFIX*group_admin WHERE gid = ?'); + $result = $stmt->execute(array($parameters['gid'])); + return true; + } } From 381e493a8c777a4e5e95fd72c6a7ed8114c3c978 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 25 Jul 2012 23:07:10 +0200 Subject: [PATCH 23/68] Rename functions getETagPropertyForFile -> getETagPropertyForPath removeETagPropertyForFile -> removeETagPropertyForPath --- lib/connector/sabre/directory.php | 2 +- lib/connector/sabre/file.php | 4 ++-- lib/connector/sabre/node.php | 4 ++-- lib/filesystem.php | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index 0842fc4fc6..7003a92027 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -52,7 +52,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa $newPath = $this->path . '/' . $name; OC_Filesystem::file_put_contents($newPath,$data); - return OC_Connector_Sabre_Node::getETagPropertyForFile($newPath); + return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); } /** diff --git a/lib/connector/sabre/file.php b/lib/connector/sabre/file.php index 80f0a0ab4d..4fd5059107 100644 --- a/lib/connector/sabre/file.php +++ b/lib/connector/sabre/file.php @@ -47,7 +47,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D OC_Filesystem::file_put_contents($this->path,$data); - return OC_Connector_Sabre_Node::getETagPropertyForFile($this->path); + return OC_Connector_Sabre_Node::getETagPropertyForPath($this->path); } /** @@ -98,7 +98,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D if (isset($properties[self::GETETAG_PROPERTYNAME])) { return $properties[self::GETETAG_PROPERTYNAME]; } - return $this->getETagPropertyForFile($this->path); + return $this->getETagPropertyForPath($this->path); } /** diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index 663970487f..77aff92cc3 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -208,7 +208,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * @param string $path Path of the file * @return string|null Returns null if the ETag can not effectively be determined */ - static public function getETagPropertyForFile($path) { + static public function getETagPropertyForPath($path) { $tag = OC_Filesystem::hash('md5', $path); if (empty($tag)) { return null; @@ -223,7 +223,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * Remove the ETag from the cache. * @param string $path Path of the file */ - static public function removeETagPropertyForFile($path) { + static public function removeETagPropertyForPath($path) { $query = OC_DB::prepare( 'DELETE FROM *PREFIX*properties WHERE userid = ? AND propertypath = ? AND propertyname = ?' ); $query->execute( array( OC_User::getUser(), $path, self::GETETAG_PROPERTYNAME )); } diff --git a/lib/filesystem.php b/lib/filesystem.php index 81370d4e17..c87bc9ed9c 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -475,7 +475,7 @@ class OC_Filesystem{ static public function removeETagHook($params) { $path=$params['path']; - OC_Connector_Sabre_Node::removeETagPropertyForFile($path); + OC_Connector_Sabre_Node::removeETagPropertyForPath($path); } } OC_Hook::connect('OC_Filesystem','post_write', 'OC_Filesystem','removeETagHook'); From 783d67be6285d730ab7f365e3643bde0c116611a Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 25 Jul 2012 23:08:53 +0200 Subject: [PATCH 24/68] Create uniqid ETag for directories --- lib/connector/sabre/directory.php | 20 ++++++++++++++++++++ lib/connector/sabre/file.php | 9 +++++++++ lib/connector/sabre/node.php | 11 ++++++++++- lib/filesystem.php | 1 + 4 files changed, 40 insertions(+), 1 deletion(-) diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index 7003a92027..7f8434c715 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -170,5 +170,25 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa } + /** + * Returns a list of properties for this nodes.; + * + * The properties list is a list of propertynames the client requested, + * encoded as xmlnamespace#tagName, for example: + * http://www.example.org/namespace#author + * If the array is empty, all properties should be returned + * + * @param array $properties + * @return void + */ + public function getProperties($properties) { + $props = parent::getProperties($properties); + if (in_array(self::GETETAG_PROPERTYNAME, $properties) + && !isset($props[self::GETETAG_PROPERTYNAME])) { + $props[self::GETETAG_PROPERTYNAME] = + OC_Connector_Sabre_Node::getETagPropertyForPath($this->path); + } + return $props; + } } diff --git a/lib/connector/sabre/file.php b/lib/connector/sabre/file.php index 4fd5059107..9d571fceb0 100644 --- a/lib/connector/sabre/file.php +++ b/lib/connector/sabre/file.php @@ -101,6 +101,15 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D return $this->getETagPropertyForPath($this->path); } + /** + * Creates a ETag for this path. + * @param string $path Path of the file + * @return string|null Returns null if the ETag can not effectively be determined + */ + static protected function createETag($path) { + return OC_Filesystem::hash('md5', $path); + } + /** * Returns the mime-type for a file * diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index 77aff92cc3..22506f27cf 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -203,13 +203,22 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr return $props; } + /** + * Creates a ETag for this path. + * @param string $path Path of the file + * @return string|null Returns null if the ETag can not effectively be determined + */ + static protected function createETag($path) { + return uniqid('', true); + } + /** * Returns the ETag surrounded by double-quotes for this path. * @param string $path Path of the file * @return string|null Returns null if the ETag can not effectively be determined */ static public function getETagPropertyForPath($path) { - $tag = OC_Filesystem::hash('md5', $path); + $tag = self::createETag($path); if (empty($tag)) { return null; } diff --git a/lib/filesystem.php b/lib/filesystem.php index c87bc9ed9c..d88b30c2f6 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -476,6 +476,7 @@ class OC_Filesystem{ static public function removeETagHook($params) { $path=$params['path']; OC_Connector_Sabre_Node::removeETagPropertyForPath($path); + OC_Connector_Sabre_Node::removeETagPropertyForPath(dirname($path)); } } OC_Hook::connect('OC_Filesystem','post_write', 'OC_Filesystem','removeETagHook'); From efbd7ca16626f6d066c19354710e29f50bbfddc9 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 26 Jul 2012 01:12:58 +0200 Subject: [PATCH 25/68] Updated packages --- apps/files_imageviewer/js/jquery.fancybox-1.3.4.js | 4 +--- apps/files_imageviewer/js/jquery.fancybox-1.3.4.pack.js | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/files_imageviewer/js/jquery.fancybox-1.3.4.js b/apps/files_imageviewer/js/jquery.fancybox-1.3.4.js index a1db7b6198..e5493cd939 100644 --- a/apps/files_imageviewer/js/jquery.fancybox-1.3.4.js +++ b/apps/files_imageviewer/js/jquery.fancybox-1.3.4.js @@ -124,9 +124,7 @@ } else if (href.indexOf("#") === 0) { type = 'inline'; - } else { - type = 'ajax'; - } + } } if (!type) { diff --git a/apps/files_imageviewer/js/jquery.fancybox-1.3.4.pack.js b/apps/files_imageviewer/js/jquery.fancybox-1.3.4.pack.js index e5ee2ae359..260f2c2d46 100644 --- a/apps/files_imageviewer/js/jquery.fancybox-1.3.4.pack.js +++ b/apps/files_imageviewer/js/jquery.fancybox-1.3.4.pack.js @@ -1 +1 @@ -(function(B){var L,T,Q,M,d,m,J,A,O,z,C=0,H={},j=[],e=0,G={},y=[],f=null,o=new Image(),i=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,k=/[^\.]\.(swf)\s*$/i,p,N=1,h=0,t="",b,c,P=false,s=B.extend(B("
")[0],{prop:0}),S=B.browser.msie&&B.browser.version<7&&!window.XMLHttpRequest,r=function(){T.hide();o.onerror=o.onload=null;if(f){f.abort()}L.empty()},x=function(){if(false===H.onError(j,C,H)){T.hide();P=false;return}H.titleShow=false;H.width="auto";H.height="auto";L.html('

The requested content cannot be loaded.
Please try again later.

');n()},w=function(){var Z=j[C],W,Y,ab,aa,V,X;r();H=B.extend({},B.fn.fancybox.defaults,(typeof B(Z).data("fancybox")=="undefined"?H:B(Z).data("fancybox")));X=H.onStart(j,C,H);if(X===false){P=false;return}else{if(typeof X=="object"){H=B.extend(H,X)}}ab=H.title||(Z.nodeName?B(Z).attr("title"):Z.title)||"";if(Z.nodeName&&!H.orig){H.orig=B(Z).children("img:first").length?B(Z).children("img:first"):B(Z)}if(ab===""&&H.orig&&H.titleFromAlt){ab=H.orig.attr("alt")}ab=ab.replace(//,">");W=H.href||(Z.nodeName?B(Z).attr("href"):Z.href)||null;if((/^(?:javascript)/i).test(W)||W=="#"){W=null}if(H.type){Y=H.type;if(!W){W=H.content}}else{if(H.content){Y="html"}else{if(W){if(W.match(i)){Y="image"}else{if(W.match(k)){Y="swf"}else{if(B(Z).hasClass("iframe")){Y="iframe"}else{if(W.indexOf("#")===0){Y="inline"}else{Y="ajax"}}}}}}}if(!Y){x();return}if(Y=="inline"){Z=W.substr(W.indexOf("#"));Y=B(Z).length>0?"inline":"ajax"}H.type=Y;H.href=W;H.title=ab;if(H.autoDimensions){if(H.type=="html"||H.type=="inline"||H.type=="ajax"){H.width="auto";H.height="auto"}else{H.autoDimensions=false}}if(H.modal){H.overlayShow=true;H.hideOnOverlayClick=false;H.hideOnContentClick=false;H.enableEscapeButton=false;H.showCloseButton=false}H.padding=parseInt(H.padding,10);H.margin=parseInt(H.margin,10);L.css("padding",(H.padding+H.margin));B(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){B(this).replaceWith(m.children())});switch(Y){case"html":L.html(H.content);n();break;case"inline":if(B(Z).parent().is("#fancybox-content")===true){P=false;return}B('
').hide().insertBefore(B(Z)).bind("fancybox-cleanup",function(){B(this).replaceWith(m.children())}).bind("fancybox-cancel",function(){B(this).replaceWith(L.children())});B(Z).appendTo(L);n();break;case"image":P=false;B.fancybox.showActivity();o=new Image();o.onerror=function(){x()};o.onload=function(){P=true;o.onerror=o.onload=null;F()};o.src=W;break;case"swf":H.scrolling="no";aa='';V="";B.each(H.swf,function(ac,ad){aa+='';V+=" "+ac+'="'+ad+'"'});aa+='";L.html(aa);n();break;case"ajax":P=false;B.fancybox.showActivity();H.ajax.win=H.ajax.success;f=B.ajax(B.extend({},H.ajax,{url:W,data:H.ajax.data||{},error:function(ac,ae,ad){if(ac.status>0){x()}},success:function(ad,af,ac){var ae=typeof ac=="object"?ac:f;if(ae.status==200){if(typeof H.ajax.win=="function"){X=H.ajax.win(W,ad,af,ac);if(X===false){T.hide();return}else{if(typeof X=="string"||typeof X=="object"){ad=X}}}L.html(ad);n()}}}));break;case"iframe":E();break}},n=function(){var V=H.width,W=H.height;if(V.toString().indexOf("%")>-1){V=parseInt((B(window).width()-(H.margin*2))*parseFloat(V)/100,10)+"px"}else{V=V=="auto"?"auto":V+"px"}if(W.toString().indexOf("%")>-1){W=parseInt((B(window).height()-(H.margin*2))*parseFloat(W)/100,10)+"px"}else{W=W=="auto"?"auto":W+"px"}L.wrapInner('
');H.width=L.width();H.height=L.height();E()},F=function(){H.width=o.width;H.height=o.height;B("").attr({id:"fancybox-img",src:o.src,alt:H.title}).appendTo(L);E()},E=function(){var W,V;T.hide();if(M.is(":visible")&&false===G.onCleanup(y,e,G)){B.event.trigger("fancybox-cancel");P=false;return}P=true;B(m.add(Q)).unbind();B(window).unbind("resize.fb scroll.fb");B(document).unbind("keydown.fb");if(M.is(":visible")&&G.titlePosition!=="outside"){M.css("height",M.height())}y=j;e=C;G=H;if(G.overlayShow){Q.css({"background-color":G.overlayColor,opacity:G.overlayOpacity,cursor:G.hideOnOverlayClick?"pointer":"auto",height:B(document).height()});if(!Q.is(":visible")){if(S){B("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"})}Q.show()}}else{Q.hide()}c=R();l();if(M.is(":visible")){B(J.add(O).add(z)).hide();W=M.position(),b={top:W.top,left:W.left,width:M.width(),height:M.height()};V=(b.width==c.width&&b.height==c.height);m.fadeTo(G.changeFade,0.3,function(){var X=function(){m.html(L.contents()).fadeTo(G.changeFade,1,v)};B.event.trigger("fancybox-change");m.empty().removeAttr("filter").css({"border-width":G.padding,width:c.width-G.padding*2,height:H.autoDimensions?"auto":c.height-h-G.padding*2});if(V){X()}else{s.prop=0;B(s).animate({prop:1},{duration:G.changeSpeed,easing:G.easingChange,step:U,complete:X})}});return}M.removeAttr("style");m.css("border-width",G.padding);if(G.transitionIn=="elastic"){b=I();m.html(L.contents());M.show();if(G.opacity){c.opacity=0}s.prop=0;B(s).animate({prop:1},{duration:G.speedIn,easing:G.easingIn,step:U,complete:v});return}if(G.titlePosition=="inside"&&h>0){A.show()}m.css({width:c.width-G.padding*2,height:H.autoDimensions?"auto":c.height-h-G.padding*2}).html(L.contents());M.css(c).fadeIn(G.transitionIn=="none"?0:G.speedIn,v)},D=function(V){if(V&&V.length){if(G.titlePosition=="float"){return'
'+V+'
'}return'
'+V+"
"}return false},l=function(){t=G.title||"";h=0;A.empty().removeAttr("style").removeClass();if(G.titleShow===false){A.hide();return}t=B.isFunction(G.titleFormat)?G.titleFormat(t,y,e,G):D(t);if(!t||t===""){A.hide();return}A.addClass("fancybox-title-"+G.titlePosition).html(t).appendTo("body").show();switch(G.titlePosition){case"inside":A.css({width:c.width-(G.padding*2),marginLeft:G.padding,marginRight:G.padding});h=A.outerHeight(true);A.appendTo(d);c.height+=h;break;case"over":A.css({marginLeft:G.padding,width:c.width-(G.padding*2),bottom:G.padding}).appendTo(d);break;case"float":A.css("left",parseInt((A.width()-c.width-40)/2,10)*-1).appendTo(M);break;default:A.css({width:c.width-(G.padding*2),paddingLeft:G.padding,paddingRight:G.padding}).appendTo(M);break}A.hide()},g=function(){if(G.enableEscapeButton||G.enableKeyboardNav){B(document).bind("keydown.fb",function(V){if(V.keyCode==27&&G.enableEscapeButton){V.preventDefault();B.fancybox.close()}else{if((V.keyCode==37||V.keyCode==39)&&G.enableKeyboardNav&&V.target.tagName!=="INPUT"&&V.target.tagName!=="TEXTAREA"&&V.target.tagName!=="SELECT"){V.preventDefault();B.fancybox[V.keyCode==37?"prev":"next"]()}}})}if(!G.showNavArrows){O.hide();z.hide();return}if((G.cyclic&&y.length>1)||e!==0){O.show()}if((G.cyclic&&y.length>1)||e!=(y.length-1)){z.show()}},v=function(){if(!B.support.opacity){m.get(0).style.removeAttribute("filter");M.get(0).style.removeAttribute("filter")}if(H.autoDimensions){m.css("height","auto")}M.css("height","auto");if(t&&t.length){A.show()}if(G.showCloseButton){J.show()}g();if(G.hideOnContentClick){m.bind("click",B.fancybox.close)}if(G.hideOnOverlayClick){Q.bind("click",B.fancybox.close)}B(window).bind("resize.fb",B.fancybox.resize);if(G.centerOnScroll){B(window).bind("scroll.fb",B.fancybox.center)}if(G.type=="iframe"){B('').appendTo(m)}M.show();P=false;B.fancybox.center();G.onComplete(y,e,G);K()},K=function(){var V,W;if((y.length-1)>e){V=y[e+1].href;if(typeof V!=="undefined"&&V.match(i)){W=new Image();W.src=V}}if(e>0){V=y[e-1].href;if(typeof V!=="undefined"&&V.match(i)){W=new Image();W.src=V}}},U=function(W){var V={width:parseInt(b.width+(c.width-b.width)*W,10),height:parseInt(b.height+(c.height-b.height)*W,10),top:parseInt(b.top+(c.top-b.top)*W,10),left:parseInt(b.left+(c.left-b.left)*W,10)};if(typeof c.opacity!=="undefined"){V.opacity=W<0.5?0.5:W}M.css(V);m.css({width:V.width-G.padding*2,height:V.height-(h*W)-G.padding*2})},u=function(){return[B(window).width()-(G.margin*2),B(window).height()-(G.margin*2),B(document).scrollLeft()+G.margin,B(document).scrollTop()+G.margin]},R=function(){var V=u(),Z={},W=G.autoScale,X=G.padding*2,Y;if(G.width.toString().indexOf("%")>-1){Z.width=parseInt((V[0]*parseFloat(G.width))/100,10)}else{Z.width=G.width+X}if(G.height.toString().indexOf("%")>-1){Z.height=parseInt((V[1]*parseFloat(G.height))/100,10)}else{Z.height=G.height+X}if(W&&(Z.width>V[0]||Z.height>V[1])){if(H.type=="image"||H.type=="swf"){Y=(G.width)/(G.height);if((Z.width)>V[0]){Z.width=V[0];Z.height=parseInt(((Z.width-X)/Y)+X,10)}if((Z.height)>V[1]){Z.height=V[1];Z.width=parseInt(((Z.height-X)*Y)+X,10)}}else{Z.width=Math.min(Z.width,V[0]);Z.height=Math.min(Z.height,V[1])}}Z.top=parseInt(Math.max(V[3]-20,V[3]+((V[1]-Z.height-40)*0.5)),10);Z.left=parseInt(Math.max(V[2]-20,V[2]+((V[0]-Z.width-40)*0.5)),10);return Z},q=function(V){var W=V.offset();W.top+=parseInt(V.css("paddingTop"),10)||0;W.left+=parseInt(V.css("paddingLeft"),10)||0;W.top+=parseInt(V.css("border-top-width"),10)||0;W.left+=parseInt(V.css("border-left-width"),10)||0;W.width=V.width();W.height=V.height();return W},I=function(){var Y=H.orig?B(H.orig):false,X={},W,V;if(Y&&Y.length){W=q(Y);X={width:W.width+(G.padding*2),height:W.height+(G.padding*2),top:W.top-G.padding-20,left:W.left-G.padding-20}}else{V=u();X={width:G.padding*2,height:G.padding*2,top:parseInt(V[3]+V[1]*0.5,10),left:parseInt(V[2]+V[0]*0.5,10)}}return X},a=function(){if(!T.is(":visible")){clearInterval(p);return}B("div",T).css("top",(N*-40)+"px");N=(N+1)%12};B.fn.fancybox=function(V){if(!B(this).length){return this}B(this).data("fancybox",B.extend({},V,(B.metadata?B(this).metadata():{}))).unbind("click.fb").bind("click.fb",function(X){X.preventDefault();if(P){return}P=true;B(this).blur();j=[];C=0;var W=B(this).attr("rel")||"";if(!W||W==""||W==="nofollow"){j.push(this)}else{j=B("a[rel="+W+"], area[rel="+W+"]");C=j.index(this)}w();return});return this};B.fancybox=function(Y){var X;if(P){return}P=true;X=typeof arguments[1]!=="undefined"?arguments[1]:{};j=[];C=parseInt(X.index,10)||0;if(B.isArray(Y)){for(var W=0,V=Y.length;Wj.length||C<0){C=0}w()};B.fancybox.showActivity=function(){clearInterval(p);T.show();p=setInterval(a,66)};B.fancybox.hideActivity=function(){T.hide()};B.fancybox.next=function(){return B.fancybox.pos(e+1)};B.fancybox.prev=function(){return B.fancybox.pos(e-1)};B.fancybox.pos=function(V){if(P){return}V=parseInt(V);j=y;if(V>-1&&V1){C=V>=y.length?0:y.length-1;w()}}return};B.fancybox.cancel=function(){if(P){return}P=true;B.event.trigger("fancybox-cancel");r();H.onCancel(j,C,H);P=false};B.fancybox.close=function(){if(P||M.is(":hidden")){return}P=true;if(G&&false===G.onCleanup(y,e,G)){P=false;return}r();B(J.add(O).add(z)).hide();B(m.add(Q)).unbind();B(window).unbind("resize.fb scroll.fb");B(document).unbind("keydown.fb");m.find("iframe").attr("src",S&&/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank");if(G.titlePosition!=="inside"){A.empty()}M.stop();function V(){Q.fadeOut("fast");A.empty().hide();M.hide();B.event.trigger("fancybox-cleanup");m.empty();G.onClosed(y,e,G);y=H=[];e=C=0;G=H={};P=false}if(G.transitionOut=="elastic"){b=I();var W=M.position();c={top:W.top,left:W.left,width:M.width(),height:M.height()};if(G.opacity){c.opacity=1}A.empty().hide();s.prop=1;B(s).animate({prop:0},{duration:G.speedOut,easing:G.easingOut,step:U,complete:V})}else{M.fadeOut(G.transitionOut=="none"?0:G.speedOut,V)}};B.fancybox.resize=function(){if(Q.is(":visible")){Q.css("height",B(document).height())}B.fancybox.center(true)};B.fancybox.center=function(){var V,W;if(P){return}W=arguments[0]===true?1:0;V=u();if(!W&&(M.width()>V[0]||M.height()>V[1])){return}M.stop().animate({top:parseInt(Math.max(V[3]-20,V[3]+((V[1]-m.height()-40)*0.5)-G.padding)),left:parseInt(Math.max(V[2]-20,V[2]+((V[0]-m.width()-40)*0.5)-G.padding))},typeof arguments[0]=="number"?arguments[0]:200)};B.fancybox.init=function(){if(B("#fancybox-wrap").length){return}B("body").append(L=B('
'),T=B('
'),Q=B('
'),M=B('
'));d=B('
').append('
').appendTo(M);d.append(m=B('
'),J=B(''),A=B('
'),O=B(''),z=B(''));J.click(B.fancybox.close);T.click(B.fancybox.cancel);O.click(function(V){V.preventDefault();B.fancybox.prev()});z.click(function(V){V.preventDefault();B.fancybox.next()});if(B.fn.mousewheel){M.bind("mousewheel.fb",function(V,W){if(P){V.preventDefault()}else{if(B(V.target).get(0).clientHeight==0||B(V.target).get(0).scrollHeight===B(V.target).get(0).clientHeight){V.preventDefault();B.fancybox[W>0?"prev":"next"]()}}})}if(!B.support.opacity){M.addClass("fancybox-ie")}if(S){T.addClass("fancybox-ie6");M.addClass("fancybox-ie6");B('').prependTo(d)}};B.fn.fancybox.defaults={padding:10,margin:40,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.7,overlayColor:"#777",titleShow:true,titlePosition:"float",titleFormat:null,titleFromAlt:false,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",easingIn:"swing",easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,enableKeyboardNav:true,onStart:function(){},onCancel:function(){},onComplete:function(){},onCleanup:function(){},onClosed:function(){},onError:function(){}};B(document).ready(function(){B.fancybox.init()})})(jQuery); \ No newline at end of file +(function(B){var L,T,Q,M,d,m,J,A,O,z,C=0,H={},j=[],e=0,G={},y=[],f=null,o=new Image(),i=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,k=/[^\.]\.(swf)\s*$/i,p,N=1,h=0,t="",b,c,P=false,s=B.extend(B("
")[0],{prop:0}),S=B.browser.msie&&B.browser.version<7&&!window.XMLHttpRequest,r=function(){T.hide();o.onerror=o.onload=null;if(f){f.abort()}L.empty()},x=function(){if(false===H.onError(j,C,H)){T.hide();P=false;return}H.titleShow=false;H.width="auto";H.height="auto";L.html('

The requested content cannot be loaded.
Please try again later.

');n()},w=function(){var Z=j[C],W,Y,ab,aa,V,X;r();H=B.extend({},B.fn.fancybox.defaults,(typeof B(Z).data("fancybox")=="undefined"?H:B(Z).data("fancybox")));X=H.onStart(j,C,H);if(X===false){P=false;return}else{if(typeof X=="object"){H=B.extend(H,X)}}ab=H.title||(Z.nodeName?B(Z).attr("title"):Z.title)||"";if(Z.nodeName&&!H.orig){H.orig=B(Z).children("img:first").length?B(Z).children("img:first"):B(Z)}if(ab===""&&H.orig&&H.titleFromAlt){ab=H.orig.attr("alt")}ab=ab.replace(//,">");W=H.href||(Z.nodeName?B(Z).attr("href"):Z.href)||null;if((/^(?:javascript)/i).test(W)||W=="#"){W=null}if(H.type){Y=H.type;if(!W){W=H.content}}else{if(H.content){Y="html"}else{if(W){if(W.match(i)){Y="image"}else{if(W.match(k)){Y="swf"}else{if(B(Z).hasClass("iframe")){Y="iframe"}else{if(W.indexOf("#")===0){Y="inline"}}}}}}}if(!Y){x();return}if(Y=="inline"){Z=W.substr(W.indexOf("#"));Y=B(Z).length>0?"inline":"ajax"}H.type=Y;H.href=W;H.title=ab;if(H.autoDimensions){if(H.type=="html"||H.type=="inline"||H.type=="ajax"){H.width="auto";H.height="auto"}else{H.autoDimensions=false}}if(H.modal){H.overlayShow=true;H.hideOnOverlayClick=false;H.hideOnContentClick=false;H.enableEscapeButton=false;H.showCloseButton=false}H.padding=parseInt(H.padding,10);H.margin=parseInt(H.margin,10);L.css("padding",(H.padding+H.margin));B(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){B(this).replaceWith(m.children())});switch(Y){case"html":L.html(H.content);n();break;case"inline":if(B(Z).parent().is("#fancybox-content")===true){P=false;return}B('
').hide().insertBefore(B(Z)).bind("fancybox-cleanup",function(){B(this).replaceWith(m.children())}).bind("fancybox-cancel",function(){B(this).replaceWith(L.children())});B(Z).appendTo(L);n();break;case"image":P=false;B.fancybox.showActivity();o=new Image();o.onerror=function(){x()};o.onload=function(){P=true;o.onerror=o.onload=null;F()};o.src=W;break;case"swf":H.scrolling="no";aa='';V="";B.each(H.swf,function(ac,ad){aa+='';V+=" "+ac+'="'+ad+'"'});aa+='";L.html(aa);n();break;case"ajax":P=false;B.fancybox.showActivity();H.ajax.win=H.ajax.success;f=B.ajax(B.extend({},H.ajax,{url:W,data:H.ajax.data||{},error:function(ac,ae,ad){if(ac.status>0){x()}},success:function(ad,af,ac){var ae=typeof ac=="object"?ac:f;if(ae.status==200){if(typeof H.ajax.win=="function"){X=H.ajax.win(W,ad,af,ac);if(X===false){T.hide();return}else{if(typeof X=="string"||typeof X=="object"){ad=X}}}L.html(ad);n()}}}));break;case"iframe":E();break}},n=function(){var V=H.width,W=H.height;if(V.toString().indexOf("%")>-1){V=parseInt((B(window).width()-(H.margin*2))*parseFloat(V)/100,10)+"px"}else{V=V=="auto"?"auto":V+"px"}if(W.toString().indexOf("%")>-1){W=parseInt((B(window).height()-(H.margin*2))*parseFloat(W)/100,10)+"px"}else{W=W=="auto"?"auto":W+"px"}L.wrapInner('
');H.width=L.width();H.height=L.height();E()},F=function(){H.width=o.width;H.height=o.height;B("").attr({id:"fancybox-img",src:o.src,alt:H.title}).appendTo(L);E()},E=function(){var W,V;T.hide();if(M.is(":visible")&&false===G.onCleanup(y,e,G)){B.event.trigger("fancybox-cancel");P=false;return}P=true;B(m.add(Q)).unbind();B(window).unbind("resize.fb scroll.fb");B(document).unbind("keydown.fb");if(M.is(":visible")&&G.titlePosition!=="outside"){M.css("height",M.height())}y=j;e=C;G=H;if(G.overlayShow){Q.css({"background-color":G.overlayColor,opacity:G.overlayOpacity,cursor:G.hideOnOverlayClick?"pointer":"auto",height:B(document).height()});if(!Q.is(":visible")){if(S){B("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"})}Q.show()}}else{Q.hide()}c=R();l();if(M.is(":visible")){B(J.add(O).add(z)).hide();W=M.position(),b={top:W.top,left:W.left,width:M.width(),height:M.height()};V=(b.width==c.width&&b.height==c.height);m.fadeTo(G.changeFade,0.3,function(){var X=function(){m.html(L.contents()).fadeTo(G.changeFade,1,v)};B.event.trigger("fancybox-change");m.empty().removeAttr("filter").css({"border-width":G.padding,width:c.width-G.padding*2,height:H.autoDimensions?"auto":c.height-h-G.padding*2});if(V){X()}else{s.prop=0;B(s).animate({prop:1},{duration:G.changeSpeed,easing:G.easingChange,step:U,complete:X})}});return}M.removeAttr("style");m.css("border-width",G.padding);if(G.transitionIn=="elastic"){b=I();m.html(L.contents());M.show();if(G.opacity){c.opacity=0}s.prop=0;B(s).animate({prop:1},{duration:G.speedIn,easing:G.easingIn,step:U,complete:v});return}if(G.titlePosition=="inside"&&h>0){A.show()}m.css({width:c.width-G.padding*2,height:H.autoDimensions?"auto":c.height-h-G.padding*2}).html(L.contents());M.css(c).fadeIn(G.transitionIn=="none"?0:G.speedIn,v)},D=function(V){if(V&&V.length){if(G.titlePosition=="float"){return'
'+V+'
'}return'
'+V+"
"}return false},l=function(){t=G.title||"";h=0;A.empty().removeAttr("style").removeClass();if(G.titleShow===false){A.hide();return}t=B.isFunction(G.titleFormat)?G.titleFormat(t,y,e,G):D(t);if(!t||t===""){A.hide();return}A.addClass("fancybox-title-"+G.titlePosition).html(t).appendTo("body").show();switch(G.titlePosition){case"inside":A.css({width:c.width-(G.padding*2),marginLeft:G.padding,marginRight:G.padding});h=A.outerHeight(true);A.appendTo(d);c.height+=h;break;case"over":A.css({marginLeft:G.padding,width:c.width-(G.padding*2),bottom:G.padding}).appendTo(d);break;case"float":A.css("left",parseInt((A.width()-c.width-40)/2,10)*-1).appendTo(M);break;default:A.css({width:c.width-(G.padding*2),paddingLeft:G.padding,paddingRight:G.padding}).appendTo(M);break}A.hide()},g=function(){if(G.enableEscapeButton||G.enableKeyboardNav){B(document).bind("keydown.fb",function(V){if(V.keyCode==27&&G.enableEscapeButton){V.preventDefault();B.fancybox.close()}else{if((V.keyCode==37||V.keyCode==39)&&G.enableKeyboardNav&&V.target.tagName!=="INPUT"&&V.target.tagName!=="TEXTAREA"&&V.target.tagName!=="SELECT"){V.preventDefault();B.fancybox[V.keyCode==37?"prev":"next"]()}}})}if(!G.showNavArrows){O.hide();z.hide();return}if((G.cyclic&&y.length>1)||e!==0){O.show()}if((G.cyclic&&y.length>1)||e!=(y.length-1)){z.show()}},v=function(){if(!B.support.opacity){m.get(0).style.removeAttribute("filter");M.get(0).style.removeAttribute("filter")}if(H.autoDimensions){m.css("height","auto")}M.css("height","auto");if(t&&t.length){A.show()}if(G.showCloseButton){J.show()}g();if(G.hideOnContentClick){m.bind("click",B.fancybox.close)}if(G.hideOnOverlayClick){Q.bind("click",B.fancybox.close)}B(window).bind("resize.fb",B.fancybox.resize);if(G.centerOnScroll){B(window).bind("scroll.fb",B.fancybox.center)}if(G.type=="iframe"){B('').appendTo(m)}M.show();P=false;B.fancybox.center();G.onComplete(y,e,G);K()},K=function(){var V,W;if((y.length-1)>e){V=y[e+1].href;if(typeof V!=="undefined"&&V.match(i)){W=new Image();W.src=V}}if(e>0){V=y[e-1].href;if(typeof V!=="undefined"&&V.match(i)){W=new Image();W.src=V}}},U=function(W){var V={width:parseInt(b.width+(c.width-b.width)*W,10),height:parseInt(b.height+(c.height-b.height)*W,10),top:parseInt(b.top+(c.top-b.top)*W,10),left:parseInt(b.left+(c.left-b.left)*W,10)};if(typeof c.opacity!=="undefined"){V.opacity=W<0.5?0.5:W}M.css(V);m.css({width:V.width-G.padding*2,height:V.height-(h*W)-G.padding*2})},u=function(){return[B(window).width()-(G.margin*2),B(window).height()-(G.margin*2),B(document).scrollLeft()+G.margin,B(document).scrollTop()+G.margin]},R=function(){var V=u(),Z={},W=G.autoScale,X=G.padding*2,Y;if(G.width.toString().indexOf("%")>-1){Z.width=parseInt((V[0]*parseFloat(G.width))/100,10)}else{Z.width=G.width+X}if(G.height.toString().indexOf("%")>-1){Z.height=parseInt((V[1]*parseFloat(G.height))/100,10)}else{Z.height=G.height+X}if(W&&(Z.width>V[0]||Z.height>V[1])){if(H.type=="image"||H.type=="swf"){Y=(G.width)/(G.height);if((Z.width)>V[0]){Z.width=V[0];Z.height=parseInt(((Z.width-X)/Y)+X,10)}if((Z.height)>V[1]){Z.height=V[1];Z.width=parseInt(((Z.height-X)*Y)+X,10)}}else{Z.width=Math.min(Z.width,V[0]);Z.height=Math.min(Z.height,V[1])}}Z.top=parseInt(Math.max(V[3]-20,V[3]+((V[1]-Z.height-40)*0.5)),10);Z.left=parseInt(Math.max(V[2]-20,V[2]+((V[0]-Z.width-40)*0.5)),10);return Z},q=function(V){var W=V.offset();W.top+=parseInt(V.css("paddingTop"),10)||0;W.left+=parseInt(V.css("paddingLeft"),10)||0;W.top+=parseInt(V.css("border-top-width"),10)||0;W.left+=parseInt(V.css("border-left-width"),10)||0;W.width=V.width();W.height=V.height();return W},I=function(){var Y=H.orig?B(H.orig):false,X={},W,V;if(Y&&Y.length){W=q(Y);X={width:W.width+(G.padding*2),height:W.height+(G.padding*2),top:W.top-G.padding-20,left:W.left-G.padding-20}}else{V=u();X={width:G.padding*2,height:G.padding*2,top:parseInt(V[3]+V[1]*0.5,10),left:parseInt(V[2]+V[0]*0.5,10)}}return X},a=function(){if(!T.is(":visible")){clearInterval(p);return}B("div",T).css("top",(N*-40)+"px");N=(N+1)%12};B.fn.fancybox=function(V){if(!B(this).length){return this}B(this).data("fancybox",B.extend({},V,(B.metadata?B(this).metadata():{}))).unbind("click.fb").bind("click.fb",function(X){X.preventDefault();if(P){return}P=true;B(this).blur();j=[];C=0;var W=B(this).attr("rel")||"";if(!W||W==""||W==="nofollow"){j.push(this)}else{j=B("a[rel="+W+"], area[rel="+W+"]");C=j.index(this)}w();return});return this};B.fancybox=function(Y){var X;if(P){return}P=true;X=typeof arguments[1]!=="undefined"?arguments[1]:{};j=[];C=parseInt(X.index,10)||0;if(B.isArray(Y)){for(var W=0,V=Y.length;Wj.length||C<0){C=0}w()};B.fancybox.showActivity=function(){clearInterval(p);T.show();p=setInterval(a,66)};B.fancybox.hideActivity=function(){T.hide()};B.fancybox.next=function(){return B.fancybox.pos(e+1)};B.fancybox.prev=function(){return B.fancybox.pos(e-1)};B.fancybox.pos=function(V){if(P){return}V=parseInt(V);j=y;if(V>-1&&V1){C=V>=y.length?0:y.length-1;w()}}return};B.fancybox.cancel=function(){if(P){return}P=true;B.event.trigger("fancybox-cancel");r();H.onCancel(j,C,H);P=false};B.fancybox.close=function(){if(P||M.is(":hidden")){return}P=true;if(G&&false===G.onCleanup(y,e,G)){P=false;return}r();B(J.add(O).add(z)).hide();B(m.add(Q)).unbind();B(window).unbind("resize.fb scroll.fb");B(document).unbind("keydown.fb");m.find("iframe").attr("src",S&&/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank");if(G.titlePosition!=="inside"){A.empty()}M.stop();function V(){Q.fadeOut("fast");A.empty().hide();M.hide();B.event.trigger("fancybox-cleanup");m.empty();G.onClosed(y,e,G);y=H=[];e=C=0;G=H={};P=false}if(G.transitionOut=="elastic"){b=I();var W=M.position();c={top:W.top,left:W.left,width:M.width(),height:M.height()};if(G.opacity){c.opacity=1}A.empty().hide();s.prop=1;B(s).animate({prop:0},{duration:G.speedOut,easing:G.easingOut,step:U,complete:V})}else{M.fadeOut(G.transitionOut=="none"?0:G.speedOut,V)}};B.fancybox.resize=function(){if(Q.is(":visible")){Q.css("height",B(document).height())}B.fancybox.center(true)};B.fancybox.center=function(){var V,W;if(P){return}W=arguments[0]===true?1:0;V=u();if(!W&&(M.width()>V[0]||M.height()>V[1])){return}M.stop().animate({top:parseInt(Math.max(V[3]-20,V[3]+((V[1]-m.height()-40)*0.5)-G.padding)),left:parseInt(Math.max(V[2]-20,V[2]+((V[0]-m.width()-40)*0.5)-G.padding))},typeof arguments[0]=="number"?arguments[0]:200)};B.fancybox.init=function(){if(B("#fancybox-wrap").length){return}B("body").append(L=B('
'),T=B('
'),Q=B('
'),M=B('
'));d=B('
').append('
').appendTo(M);d.append(m=B('
'),J=B(''),A=B('
'),O=B(''),z=B(''));J.click(B.fancybox.close);T.click(B.fancybox.cancel);O.click(function(V){V.preventDefault();B.fancybox.prev()});z.click(function(V){V.preventDefault();B.fancybox.next()});if(B.fn.mousewheel){M.bind("mousewheel.fb",function(V,W){if(P){V.preventDefault()}else{if(B(V.target).get(0).clientHeight==0||B(V.target).get(0).scrollHeight===B(V.target).get(0).clientHeight){V.preventDefault();B.fancybox[W>0?"prev":"next"]()}}})}if(!B.support.opacity){M.addClass("fancybox-ie")}if(S){T.addClass("fancybox-ie6");M.addClass("fancybox-ie6");B('').prependTo(d)}};B.fn.fancybox.defaults={padding:10,margin:40,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.7,overlayColor:"#777",titleShow:true,titlePosition:"float",titleFormat:null,titleFromAlt:false,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",easingIn:"swing",easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,enableKeyboardNav:true,onStart:function(){},onCancel:function(){},onComplete:function(){},onCleanup:function(){},onClosed:function(){},onError:function(){}};B(document).ready(function(){B.fancybox.init()})})(jQuery); \ No newline at end of file From 1554d7a2c01a97305d67f9ba04f736814705e839 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 26 Jul 2012 00:06:51 +0200 Subject: [PATCH 26/68] Check for admin user --- core/ajax/appconfig.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/ajax/appconfig.php b/core/ajax/appconfig.php index f815d71063..de91d458ed 100644 --- a/core/ajax/appconfig.php +++ b/core/ajax/appconfig.php @@ -6,6 +6,7 @@ */ require_once ("../../lib/base.php"); +OC_Util::checkAdminUser(); OC_JSON::checkLoggedIn(); $action=isset($_POST['action'])?$_POST['action']:$_GET['action']; $result=false; From d425740dc2efb2328daa27d291253e0229619330 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 26 Jul 2012 01:19:46 +0200 Subject: [PATCH 27/68] Remove unused files --- core/ajax/userlist.php | 46 -------------------------------------- core/ajax/validateuser.php | 38 ------------------------------- 2 files changed, 84 deletions(-) delete mode 100644 core/ajax/userlist.php delete mode 100644 core/ajax/validateuser.php diff --git a/core/ajax/userlist.php b/core/ajax/userlist.php deleted file mode 100644 index 85ca004ae6..0000000000 --- a/core/ajax/userlist.php +++ /dev/null @@ -1,46 +0,0 @@ -. -* -*/ - -$RUNTIME_NOAPPS = TRUE; //no apps, yet -require_once('../../lib/base.php'); - -if(!OC_User::isLoggedIn()){ - if(!isset($_SERVER['PHP_AUTH_USER'])){ - header('WWW-Authenticate: Basic realm="ownCloud Server"'); - header('HTTP/1.0 401 Unauthorized'); - echo 'Valid credentials must be supplied'; - exit(); - } else { - if(!OC_User::checkPassword($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])){ - exit(); - } - } -} - -$users = array(); - -foreach( OC_User::getUsers() as $i ){ - $users[] = array( "username" => $i, "groups" => join( ", ", OC_Group::getUserGroups( $i ) )); -} - -OC_JSON::encodedPrint($users); diff --git a/core/ajax/validateuser.php b/core/ajax/validateuser.php deleted file mode 100644 index 78ec451fac..0000000000 --- a/core/ajax/validateuser.php +++ /dev/null @@ -1,38 +0,0 @@ -. -* -*/ - -$RUNTIME_NOAPPS = TRUE; //no apps, yet -require_once('../../lib/base.php'); - -if(!isset($_SERVER['PHP_AUTH_USER'])){ - header('WWW-Authenticate: Basic realm="ownCloud Server"'); - header('HTTP/1.0 401 Unauthorized'); - echo 'Valid credentials must be supplied'; - exit(); -} else { - if(OC_User::checkPassword($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])){ - OC_JSON::encodedPrint(array("username" => $_SERVER["PHP_AUTH_USER"], "user_valid" => "true")); - } else { - OC_JSON::encodedPrint(array("username" => $_SERVER["PHP_AUTH_USER"], "user_valid" => "false")); - } -} From d24326ecce85fd103e186cfc3a00ebf8423bf4dc Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 26 Jul 2012 01:38:20 +0200 Subject: [PATCH 28/68] Updated style --- core/ajax/appconfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ajax/appconfig.php b/core/ajax/appconfig.php index de91d458ed..84e0710c74 100644 --- a/core/ajax/appconfig.php +++ b/core/ajax/appconfig.php @@ -7,7 +7,7 @@ require_once ("../../lib/base.php"); OC_Util::checkAdminUser(); -OC_JSON::checkLoggedIn(); + $action=isset($_POST['action'])?$_POST['action']:$_GET['action']; $result=false; switch($action){ From 42c22bee369c46f29b84e665b2edd8c2875fdaf0 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 26 Jul 2012 02:02:50 +0200 Subject: [PATCH 29/68] [tx-robot] updated from transifex --- apps/calendar/l10n/it.php | 50 +- apps/contacts/l10n/it.php | 103 +++- apps/files/l10n/es.php | 14 +- apps/files/l10n/it.php | 14 +- apps/gallery/l10n/es.php | 8 +- apps/gallery/l10n/it.php | 8 +- l10n/es/files.po | 69 +-- l10n/es/gallery.po | 65 +-- l10n/es/settings.po | 63 +-- l10n/it/calendar.po | 405 ++++++++++------ l10n/it/contacts.po | 916 ++++++++++++++++++----------------- l10n/it/files.po | 68 +-- l10n/it/gallery.po | 64 +-- l10n/it/settings.po | 62 +-- l10n/templates/bookmarks.pot | 2 +- l10n/templates/calendar.pot | 2 +- l10n/templates/contacts.pot | 2 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/gallery.pot | 2 +- l10n/templates/media.pot | 2 +- l10n/templates/settings.pot | 2 +- settings/l10n/es.php | 7 + settings/l10n/it.php | 7 + 24 files changed, 1095 insertions(+), 844 deletions(-) diff --git a/apps/calendar/l10n/it.php b/apps/calendar/l10n/it.php index cdb2d99c82..b91e8b0df0 100644 --- a/apps/calendar/l10n/it.php +++ b/apps/calendar/l10n/it.php @@ -1,12 +1,23 @@ "Non tutti i calendari sono mantenuti completamente in cache", +"Everything seems to be completely cached" => "Tutto sembra essere mantenuto completamente in cache", "No calendars found." => "Nessun calendario trovato.", "No events found." => "Nessun evento trovato.", "Wrong calendar" => "Calendario sbagliato", +"The file contained either no events or all events are already saved in your calendar." => "Il file non conteneva alcun evento o tutti gli eventi erano già salvati nel tuo calendario.", +"events has been saved in the new calendar" => "gli eventi sono stati salvati nel nuovo calendario", +"Import failed" => "Importazione non riuscita", +"events has been saved in your calendar" => "gli eventi sono stati salvati nel tuo calendario", "New Timezone:" => "Nuovo fuso orario:", "Timezone changed" => "Fuso orario cambiato", "Invalid request" => "Richiesta non valida", "Calendar" => "Calendario", +"ddd" => "ggg", +"ddd M/d" => "ggg M/g", +"dddd M/d" => "gggg M/g", +"MMMM yyyy" => "MMMM aaaa", "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" => "MMM d[ yyyy]{ '—'[ MMM] d yyyy}", +"dddd, MMM d, yyyy" => "gggg, MMM g, aaaa", "Birthday" => "Compleanno", "Business" => "Azienda", "Call" => "Chiama", @@ -22,7 +33,9 @@ "Projects" => "Progetti", "Questions" => "Domande", "Work" => "Lavoro", +"by" => "da", "unnamed" => "senza nome", +"New Calendar" => "Nuovo calendario", "Does not repeat" => "Non ripetere", "Daily" => "Giornaliero", "Weekly" => "Settimanale", @@ -67,8 +80,26 @@ "by day and month" => "per giorno e mese", "Date" => "Data", "Cal." => "Cal.", +"Sun." => "Dom.", +"Mon." => "Lun.", +"Tue." => "Mar.", +"Wed." => "Mer.", +"Thu." => "Gio.", +"Fri." => "Ven.", +"Sat." => "Sab.", +"Jan." => "Gen.", +"Feb." => "Feb.", +"Mar." => "Mar.", +"Apr." => "Apr.", +"May." => "Mag.", +"Jun." => "Giu.", +"Jul." => "Lug.", +"Aug." => "Ago.", +"Sep." => "Set.", +"Oct." => "Ott.", +"Nov." => "Nov.", +"Dec." => "Dic.", "All day" => "Tutti il giorno", -"New Calendar" => "Nuovo calendario", "Missing fields" => "Campi mancanti", "Title" => "Titolo", "From Date" => "Dal giorno", @@ -132,18 +163,17 @@ "Interval" => "Intervallo", "End" => "Fine", "occurrences" => "occorrenze", -"Import a calendar file" => "Importa un file di calendario", -"Please choose the calendar" => "Scegli il calendario", "create a new calendar" => "Crea un nuovo calendario", +"Import a calendar file" => "Importa un file di calendario", +"Please choose a calendar" => "Scegli un calendario", "Name of new calendar" => "Nome del nuovo calendario", +"Take an available name!" => "Usa un nome disponibile!", +"A Calendar with this name already exists. If you continue anyhow, these calendars will be merged." => "Un calendario con questo nome esiste già. Se continui, i due calendari saranno uniti.", "Import" => "Importa", -"Importing calendar" => "Importazione del calendario in corso", -"Calendar imported successfully" => "Calendario importato correttamente", "Close Dialog" => "Chiudi la finestra di dialogo", "Create a new event" => "Crea un nuovo evento", "View an event" => "Visualizza un evento", "No categories selected" => "Nessuna categoria selezionata", -"Select category" => "Seleziona una categoria", "of" => "di", "at" => "alle", "Timezone" => "Fuso orario", @@ -152,7 +182,13 @@ "24h" => "24h", "12h" => "12h", "First day of the week" => "Primo giorno della settimana", -"Calendar CalDAV syncing address:" => "Indirizzo sincronizzazione calendario CalDAV:", +"Cache" => "Cache", +"Clear cache for repeating events" => "Cancella gli eventi che si ripetono dalla cache", +"Calendar CalDAV syncing addresses" => "Indirizzi di sincronizzazione calendari CalDAV", +"more info" => "ulteriori informazioni", +"Primary address (Kontact et al)" => "Indirizzo principale (Kontact e altri)", +"iOS/OS X" => "iOS/OS X", +"Read only iCalendar link(s)" => "Collegamento(i) iCalendar sola lettura", "Users" => "Utenti", "select users" => "seleziona utenti", "Editable" => "Modificabile", diff --git a/apps/contacts/l10n/it.php b/apps/contacts/l10n/it.php index 2a5478e6c4..820104b777 100644 --- a/apps/contacts/l10n/it.php +++ b/apps/contacts/l10n/it.php @@ -1,10 +1,13 @@ "Errore nel (dis)attivare la rubrica.", "There was an error adding the contact." => "Si è verificato un errore nell'aggiunta del contatto.", +"element name is not set." => "il nome dell'elemento non è impostato.", +"id is not set." => "ID non impostato.", +"Could not parse contact: " => "Impossibile elaborare il contatto: ", "Cannot add empty property." => "Impossibile aggiungere una proprietà vuota.", "At least one of the address fields has to be filled out." => "Deve essere riempito almeno un indirizzo.", "Trying to add duplicate property: " => "P", -"Error adding contact property." => "Errore durante l'aggiunta della proprietà del contatto.", +"Error adding contact property: " => "Errore durante l'aggiunta della proprietà del contatto: ", "No ID provided" => "Nessun ID fornito", "Error setting checksum." => "Errore di impostazione del codice di controllo.", "No categories selected for deletion." => "Nessuna categoria selezionata per l'eliminazione.", @@ -12,22 +15,23 @@ "No contacts found." => "Nessun contatto trovato.", "Missing ID" => "ID mancante", "Error parsing VCard for ID: \"" => "Errore in fase di elaborazione del file VCard per l'ID: \"", -"Cannot add addressbook with an empty name." => "Impossibile aggiungere una rubrica senza nome.", -"Error adding addressbook." => "Errore durante l'aggiunta della rubrica.", -"Error activating addressbook." => "Errore durante l'attivazione della rubrica.", "No contact ID was submitted." => "Nessun ID di contatto inviato.", "Error reading contact photo." => "Errore di lettura della foto del contatto.", "Error saving temporary file." => "Errore di salvataggio del file temporaneo.", "The loading photo is not valid." => "La foto caricata non è valida.", -"id is not set." => "ID non impostato.", "Information about vCard is incorrect. Please reload the page." => "Informazioni sulla vCard non corrette. Ricarica la pagina.", "Error deleting contact property." => "Errore durante l'eliminazione della proprietà del contatto.", "Contact ID is missing." => "Manca l'ID del contatto.", -"Missing contact id." => "ID di contatto mancante.", "No photo path was submitted." => "Non è stato inviato alcun percorso a una foto.", "File doesn't exist:" => "Il file non esiste:", "Error loading image." => "Errore di caricamento immagine.", -"element name is not set." => "il nome dell'elemento non è impostato.", +"Error getting contact object." => "Errore di recupero dell'oggetto contatto.", +"Error getting PHOTO property." => "Errore di recupero della proprietà FOTO.", +"Error saving contact." => "Errore di salvataggio del contatto.", +"Error resizing image" => "Errore di ridimensionamento dell'immagine", +"Error cropping image" => "Errore di ritaglio dell'immagine", +"Error creating temporary image" => "Errore durante la creazione dell'immagine temporanea", +"Error finding image: " => "Errore durante la ricerca dell'immagine: ", "checksum is not set." => "il codice di controllo non è impostato.", "Information about vCard is incorrect. Please reload the page: " => "Le informazioni della vCard non sono corrette. Ricarica la pagina: ", "Something went FUBAR. " => "Qualcosa è andato storto. ", @@ -41,8 +45,27 @@ "The uploaded file was only partially uploaded" => "Il file è stato inviato solo parzialmente", "No file was uploaded" => "Nessun file è stato inviato", "Missing a temporary folder" => "Manca una cartella temporanea", +"Couldn't save temporary image: " => "Impossibile salvare l'immagine temporanea: ", +"Couldn't load temporary image: " => "Impossibile caricare l'immagine temporanea: ", +"No file was uploaded. Unknown error" => "Nessun file è stato inviato. Errore sconosciuto", "Contacts" => "Contatti", -"Drop a VCF file to import contacts." => "Rilascia un file VCF per importare i contatti.", +"Sorry, this functionality has not been implemented yet" => "Siamo spiacenti, questa funzionalità non è stata ancora implementata", +"Not implemented" => "Non implementata", +"Couldn't get a valid address." => "Impossibile ottenere un indirizzo valido.", +"Error" => "Errore", +"Contact" => "Contatto", +"New" => "Nuovo", +"New Contact" => "Nuovo contatto", +"This property has to be non-empty." => "Questa proprietà non può essere vuota.", +"Couldn't serialize elements." => "Impossibile serializzare gli elementi.", +"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' invocata senza l'argomento di tipo. Segnalalo a bugs.owncloud.org", +"Edit name" => "Modifica il nome", +"No files selected for upload." => "Nessun file selezionato per l'invio", +"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Il file che stai cercando di inviare supera la dimensione massima per l'invio dei file su questo server.", +"Select type" => "Seleziona il tipo", +"Result: " => "Risultato: ", +" imported, " => " importato, ", +" failed." => " non riuscito.", "Addressbook not found." => "Rubrica non trovata.", "This is not your addressbook." => "Questa non è la tua rubrica.", "Contact could not be found." => "Il contatto non può essere trovato.", @@ -60,25 +83,54 @@ "Video" => "Video", "Pager" => "Cercapersone", "Internet" => "Internet", +"Birthday" => "Compleanno", +"Business" => "Lavoro", +"Call" => "Chiama", +"Clients" => "Client", +"Deliverer" => "Corriere", +"Holidays" => "Festività", +"Ideas" => "Idee", +"Journey" => "Viaggio", +"Jubilee" => "Anniversario", +"Meeting" => "Riunione", +"Other" => "Altro", +"Personal" => "Personale", +"Projects" => "Progetti", +"Questions" => "Domande", "{name}'s Birthday" => "Data di nascita di {name}", -"Contact" => "Contatto", "Add Contact" => "Aggiungi contatto", +"Import" => "Importa", "Addressbooks" => "Rubriche", +"Close" => "Chiudi", +"Keyboard shortcuts" => "Scorciatoie da tastiera", +"Navigation" => "Navigazione", +"Next contact in list" => "Contatto successivo in elenco", +"Previous contact in list" => "Contatto precedente in elenco", +"Expand/collapse current addressbook" => "Espandi/Contrai la rubrica corrente", +"Next/previous addressbook" => "Rubrica successiva/precedente", +"Actions" => "Azioni", +"Refresh contacts list" => "Aggiorna l'elenco dei contatti", +"Add new contact" => "Aggiungi un nuovo contatto", +"Add new addressbook" => "Aggiungi una nuova rubrica", +"Delete current contact" => "Elimina il contatto corrente", "Configure Address Books" => "Configura rubrica", "New Address Book" => "Nuova rubrica", -"Import from VCF" => "Importa da VCF", "CardDav Link" => "Link CardDav", "Download" => "Scarica", "Edit" => "Modifica", "Delete" => "Elimina", -"Download contact" => "Scarica contatto", -"Delete contact" => "Elimina contatto", "Drop photo to upload" => "Rilascia una foto da inviare", +"Delete current photo" => "Elimina la foto corrente", +"Edit current photo" => "Modifica la foto corrente", +"Upload new photo" => "Invia una nuova foto", +"Select photo from ownCloud" => "Seleziona la foto da ownCloud", "Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formato personalizzato, nome breve, nome completo, invertito o invertito con virgola", "Edit name details" => "Modifica dettagli del nome", "Nickname" => "Pseudonimo", "Enter nickname" => "Inserisci pseudonimo", -"Birthday" => "Compleanno", +"Web site" => "Sito web", +"http://www.somesite.com" => "http://www.somesite.com", +"Go to web site" => "Vai al sito web", "dd-mm-yyyy" => "gg-mm-aaaa", "Groups" => "Gruppi", "Separate groups with commas" => "Separa i gruppi con virgole", @@ -94,24 +146,24 @@ "Edit address details" => "Modifica dettagli dell'indirizzo", "Add notes here." => "Aggiungi qui le note.", "Add field" => "Aggiungi campo", -"Profile picture" => "Immagine del profilo", "Phone" => "Telefono", "Note" => "Nota", -"Delete current photo" => "Elimina la foto corrente", -"Edit current photo" => "Modifica la foto corrente", -"Upload new photo" => "Invia una nuova foto", -"Select photo from ownCloud" => "Seleziona la foto da ownCloud", +"Download contact" => "Scarica contatto", +"Delete contact" => "Elimina contatto", +"The temporary image has been removed from cache." => "L'immagine temporanea è stata rimossa dalla cache.", "Edit address" => "Modifica indirizzo", "Type" => "Tipo", "PO Box" => "Casella postale", +"Street address" => "Indirizzo", +"Street and number" => "Via e numero", "Extended" => "Esteso", -"Street" => "Via", +"Apartment number etc." => "Numero appartamento ecc.", "City" => "Città", "Region" => "Regione", +"E.g. state or province" => "Ad es. stato o provincia", "Zipcode" => "CAP", +"Postal code" => "CAP", "Country" => "Stato", -"Edit categories" => "Modifica categorie", -"Add" => "Aggiungi", "Addressbook" => "Rubrica", "Hon. prefixes" => "Prefissi onorifici", "Miss" => "Sig.na", @@ -143,15 +195,16 @@ "Please choose the addressbook" => "Scegli la rubrica", "create a new addressbook" => "crea una nuova rubrica", "Name of new addressbook" => "Nome della nuova rubrica", -"Import" => "Importa", "Importing contacts" => "Importazione contatti", -"Select address book to import to:" => "Seleziona la rubrica di destinazione:", -"Select from HD" => "Seleziona da disco", "You have no contacts in your addressbook." => "Non hai contatti nella rubrica.", "Add contact" => "Aggiungi contatto", "Configure addressbooks" => "Configura rubriche", +"Select Address Books" => "Seleziona rubriche", +"Enter name" => "Inserisci il nome", +"Enter description" => "Inserisci una descrizione", "CardDAV syncing addresses" => "Indirizzi di sincronizzazione CardDAV", "more info" => "altre informazioni", "Primary address (Kontact et al)" => "Indirizzo principale (Kontact e altri)", -"iOS/OS X" => "iOS/OS X" +"iOS/OS X" => "iOS/OS X", +"Read only vCard directory link(s)" => "Collegamento(i) cartella vCard sola lettura" ); diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 67bfb4702e..506218815b 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -7,8 +7,21 @@ "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "La escritura en disco ha fallado", "Files" => "Archivos", +"Unshare" => "No compartir", +"Delete" => "Eliminado", +"undo deletion" => "deshacer la eliminación", +"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", +"Upload Error" => "Error al subir el archivo", +"Pending" => "Pendiente", +"Upload cancelled." => "Subida cancelada.", +"Invalid name, '/' is not allowed." => "Nombre no válido, '/' no está permitido.", "Size" => "Tamaño", "Modified" => "Modificado", +"folder" => "carpeta", +"folders" => "carpetas", +"file" => "archivo", +"files" => "archivos", "File handling" => "Tratamiento de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", @@ -26,7 +39,6 @@ "Name" => "Nombre", "Share" => "Compartir", "Download" => "Descargar", -"Delete" => "Eliminado", "Upload too large" => "El archivo es demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor.", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor espere.", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 82871826c1..0bf113eba1 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -7,8 +7,21 @@ "Missing a temporary folder" => "Cartella temporanea mancante", "Failed to write to disk" => "Scrittura su disco non riuscita", "Files" => "File", +"Unshare" => "Rimuovi condivisione", +"Delete" => "Elimina", +"undo deletion" => "annulla l'eliminazione", +"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", +"Upload Error" => "Errore di invio", +"Pending" => "In corso", +"Upload cancelled." => "Invio annullato", +"Invalid name, '/' is not allowed." => "Nome non valido", "Size" => "Dimensione", "Modified" => "Modificato", +"folder" => "cartella", +"folders" => "cartelle", +"file" => "file", +"files" => "file", "File handling" => "Gestione file", "Maximum upload size" => "Dimensione massima upload", "max. possible: " => "numero mass.: ", @@ -26,7 +39,6 @@ "Name" => "Nome", "Share" => "Condividi", "Download" => "Scarica", -"Delete" => "Elimina", "Upload too large" => "Il file caricato è troppo grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "I file che stai provando a caricare superano la dimensione massima consentita su questo server.", "Files are being scanned, please wait." => "Scansione dei file in corso, attendi", diff --git a/apps/gallery/l10n/es.php b/apps/gallery/l10n/es.php index 03e8d6a456..aa425a0bd0 100644 --- a/apps/gallery/l10n/es.php +++ b/apps/gallery/l10n/es.php @@ -1,9 +1,9 @@ "Imágenes", -"Settings" => "Preferencias", -"Rescan" => "Refrescar", -"Stop" => "Parar", -"Share" => "Compartir", +"Share gallery" => "Compartir galería", +"Error: " => "Fallo ", +"Internal error" => "Fallo interno", +"Slideshow" => "Presentación", "Back" => "Atrás", "Remove confirmation" => "Borrar confirmación", "Do you want to remove album" => "¿Quieres eliminar el álbum", diff --git a/apps/gallery/l10n/it.php b/apps/gallery/l10n/it.php index e21a1d6524..ef8d596e7e 100644 --- a/apps/gallery/l10n/it.php +++ b/apps/gallery/l10n/it.php @@ -1,9 +1,9 @@ "Immagini", -"Settings" => "Impostazioni", -"Rescan" => "Nuova scansione", -"Stop" => "Ferma", -"Share" => "Condividi", +"Share gallery" => "Condividi la galleria", +"Error: " => "Errore: ", +"Internal error" => "Errore interno", +"Slideshow" => "Presentazione", "Back" => "Indietro", "Remove confirmation" => "Rimuovi conferma", "Do you want to remove album" => "Vuoi rimuovere l'album", diff --git a/l10n/es/files.po b/l10n/es/files.po index 4e4b0b0c2d..ccd3fc76a0 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -4,48 +4,49 @@ # # Translators: # Javier Llorente , 2012. +# , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/language/es/)\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"PO-Revision-Date: 2012-07-25 23:05+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" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 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:20 +#: ajax/upload.php:21 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:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentas subir solo se subió parcialmente" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "No se ha subido ningún archivo" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "La escritura en disco ha fallado" @@ -53,57 +54,65 @@ msgstr "La escritura en disco ha fallado" msgid "Files" msgstr "Archivos" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "No compartir" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Eliminado" + #: js/filelist.js:186 msgid "undo deletion" -msgstr "" +msgstr "deshacer la eliminación" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "generando un fichero ZIP, puede llevar un tiempo." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Error al subir el archivo" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Pendiente" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Subida cancelada." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Tamaño" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "carpeta" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "carpetas" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "archivo" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "archivos" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +182,6 @@ msgstr "Compartir" msgid "Download" msgstr "Descargar" -#: templates/index.php:56 -msgid "Delete" -msgstr "Eliminado" - #: templates/index.php:64 msgid "Upload too large" msgstr "El archivo es demasiado grande" diff --git a/l10n/es/gallery.po b/l10n/es/gallery.po index 94068028c6..8a67c77187 100644 --- a/l10n/es/gallery.po +++ b/l10n/es/gallery.po @@ -5,76 +5,41 @@ # Translators: # Javier Llorente , 2012. # , 2012. +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/language/es/)\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"PO-Revision-Date: 2012-07-25 23:13+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" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:37 +#: appinfo/app.php:39 msgid "Pictures" msgstr "Imágenes" -#: js/album_cover.js:44 +#: js/pictures.js:12 msgid "Share gallery" -msgstr "" +msgstr "Compartir galería" -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 +#: js/pictures.js:32 msgid "Error: " -msgstr "" +msgstr "Fallo " -#: js/album_cover.js:64 js/album_cover.js:100 +#: js/pictures.js:32 msgid "Internal error" -msgstr "" +msgstr "Fallo interno" -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Preferencias" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Refrescar" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Parar" - -#: templates/index.php:18 -msgid "Share" -msgstr "Compartir" +#: templates/index.php:27 +msgid "Slideshow" +msgstr "Presentación" #: templates/view_album.php:19 msgid "Back" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index a8cb655556..d594551c6e 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -7,16 +7,17 @@ # , 2011, 2012. # , 2011. # oSiNaReF <>, 2012. +# , 2012. # , 2011. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/language/es/)\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"PO-Revision-Date: 2012-07-25 23:06+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" "Content-Transfer-Encoding: 8bit\n" @@ -25,65 +26,69 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Correo salvado" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Correo Incorrecto" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID cambiado" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Solicitud no válida" -#: ajax/setlanguage.php:17 +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Idioma cambiado" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Desactivar" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Activar" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Salvando.." -#: personal.php:40 personal.php:41 +#: personal.php:41 personal.php:42 msgid "__language_name__" msgstr "Castellano" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "Advertencia de seguridad" + +#: templates/admin.php:28 msgid "Log" msgstr "Registro" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Más" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Añade tu aplicación" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Seleccionar una aplicación" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Revisa la web de apps apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-autorizado" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "por" @@ -175,34 +180,34 @@ msgstr "Ayúdanos a traducir" msgid "use this address to connect to your ownCloud in your file manager" msgstr "utiliza esta dirección para conectar a tu ownCloud desde tu gestor de archivos" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:15 templates/users.php:60 msgid "Name" msgstr "Nombre" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:17 templates/users.php:61 msgid "Password" msgstr "Contraseña" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:19 templates/users.php:62 templates/users.php:78 msgid "Groups" msgstr "Grupos" -#: templates/users.php:22 +#: templates/users.php:25 msgid "Create" msgstr "Crear" -#: templates/users.php:25 +#: templates/users.php:28 msgid "Default Quota" msgstr "Cuota predeterminada" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:47 templates/users.php:103 msgid "Other" msgstr "Otro" -#: templates/users.php:47 +#: templates/users.php:63 msgid "Quota" msgstr "Cuota" -#: templates/users.php:80 +#: templates/users.php:110 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/it/calendar.po b/l10n/it/calendar.po index ed36e36d84..67fa300db8 100644 --- a/l10n/it/calendar.po +++ b/l10n/it/calendar.po @@ -15,21 +15,29 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/language/it/)\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"PO-Revision-Date: 2012-07-25 20: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" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/categories/rescan.php:28 +#: ajax/cache/status.php:19 +msgid "Not all calendars are completely cached" +msgstr "Non tutti i calendari sono mantenuti completamente in cache" + +#: ajax/cache/status.php:21 +msgid "Everything seems to be completely cached" +msgstr "Tutto sembra essere mantenuto completamente in cache" + +#: ajax/categories/rescan.php:29 msgid "No calendars found." msgstr "Nessun calendario trovato." -#: ajax/categories/rescan.php:36 +#: ajax/categories/rescan.php:37 msgid "No events found." msgstr "Nessun evento trovato." @@ -37,43 +45,57 @@ msgstr "Nessun evento trovato." msgid "Wrong calendar" msgstr "Calendario sbagliato" +#: ajax/import/dropimport.php:29 ajax/import/import.php:64 +msgid "" +"The file contained either no events or all events are already saved in your " +"calendar." +msgstr "Il file non conteneva alcun evento o tutti gli eventi erano già salvati nel tuo calendario." + +#: ajax/import/dropimport.php:31 ajax/import/import.php:67 +msgid "events has been saved in the new calendar" +msgstr "gli eventi sono stati salvati nel nuovo calendario" + +#: ajax/import/import.php:56 +msgid "Import failed" +msgstr "Importazione non riuscita" + +#: ajax/import/import.php:69 +msgid "events has been saved in your calendar" +msgstr "gli eventi sono stati salvati nel tuo calendario" + #: ajax/settings/guesstimezone.php:25 msgid "New Timezone:" msgstr "Nuovo fuso orario:" -#: ajax/settings/settimezone.php:22 +#: ajax/settings/settimezone.php:23 msgid "Timezone changed" msgstr "Fuso orario cambiato" -#: ajax/settings/settimezone.php:24 +#: ajax/settings/settimezone.php:25 msgid "Invalid request" msgstr "Richiesta non valida" -#: appinfo/app.php:19 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:31 +#: appinfo/app.php:35 templates/calendar.php:15 +#: templates/part.eventform.php:33 templates/part.showevent.php:33 #: templates/settings.php:12 msgid "Calendar" msgstr "Calendario" -#: js/calendar.js:93 -msgid "Deletion failed" -msgstr "" - #: js/calendar.js:828 msgid "ddd" -msgstr "" +msgstr "ggg" #: js/calendar.js:829 msgid "ddd M/d" -msgstr "" +msgstr "ggg M/g" #: js/calendar.js:830 msgid "dddd M/d" -msgstr "" +msgstr "gggg M/g" #: js/calendar.js:833 msgid "MMMM yyyy" -msgstr "" +msgstr "MMMM aaaa" #: js/calendar.js:835 msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" @@ -81,256 +103,337 @@ msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" #: js/calendar.js:837 msgid "dddd, MMM d, yyyy" -msgstr "" +msgstr "gggg, MMM g, aaaa" -#: lib/app.php:125 +#: lib/app.php:121 msgid "Birthday" msgstr "Compleanno" -#: lib/app.php:126 +#: lib/app.php:122 msgid "Business" msgstr "Azienda" -#: lib/app.php:127 +#: lib/app.php:123 msgid "Call" msgstr "Chiama" -#: lib/app.php:128 +#: lib/app.php:124 msgid "Clients" msgstr "Clienti" -#: lib/app.php:129 +#: lib/app.php:125 msgid "Deliverer" msgstr "Consegna" -#: lib/app.php:130 +#: lib/app.php:126 msgid "Holidays" msgstr "Vacanze" -#: lib/app.php:131 +#: lib/app.php:127 msgid "Ideas" msgstr "Idee" -#: lib/app.php:132 +#: lib/app.php:128 msgid "Journey" msgstr "Viaggio" -#: lib/app.php:133 +#: lib/app.php:129 msgid "Jubilee" msgstr "Anniversario" -#: lib/app.php:134 +#: lib/app.php:130 msgid "Meeting" msgstr "Riunione" -#: lib/app.php:135 +#: lib/app.php:131 msgid "Other" msgstr "Altro" -#: lib/app.php:136 +#: lib/app.php:132 msgid "Personal" msgstr "Personale" -#: lib/app.php:137 +#: lib/app.php:133 msgid "Projects" msgstr "Progetti" -#: lib/app.php:138 +#: lib/app.php:134 msgid "Questions" msgstr "Domande" -#: lib/app.php:139 +#: lib/app.php:135 msgid "Work" msgstr "Lavoro" -#: lib/app.php:380 +#: lib/app.php:351 lib/app.php:361 +msgid "by" +msgstr "da" + +#: lib/app.php:359 lib/app.php:399 msgid "unnamed" msgstr "senza nome" -#: lib/object.php:330 +#: lib/import.php:184 templates/calendar.php:12 +#: templates/part.choosecalendar.php:22 +msgid "New Calendar" +msgstr "Nuovo calendario" + +#: lib/object.php:372 msgid "Does not repeat" msgstr "Non ripetere" -#: lib/object.php:331 +#: lib/object.php:373 msgid "Daily" msgstr "Giornaliero" -#: lib/object.php:332 +#: lib/object.php:374 msgid "Weekly" msgstr "Settimanale" -#: lib/object.php:333 +#: lib/object.php:375 msgid "Every Weekday" msgstr "Ogni giorno della settimana" -#: lib/object.php:334 +#: lib/object.php:376 msgid "Bi-Weekly" msgstr "Ogni due settimane" -#: lib/object.php:335 +#: lib/object.php:377 msgid "Monthly" msgstr "Mensile" -#: lib/object.php:336 +#: lib/object.php:378 msgid "Yearly" msgstr "Annuale" -#: lib/object.php:343 +#: lib/object.php:388 msgid "never" msgstr "mai" -#: lib/object.php:344 +#: lib/object.php:389 msgid "by occurrences" msgstr "per occorrenze" -#: lib/object.php:345 +#: lib/object.php:390 msgid "by date" msgstr "per data" -#: lib/object.php:352 +#: lib/object.php:400 msgid "by monthday" msgstr "per giorno del mese" -#: lib/object.php:353 +#: lib/object.php:401 msgid "by weekday" msgstr "per giorno della settimana" -#: lib/object.php:360 templates/settings.php:42 +#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 msgid "Monday" msgstr "Lunedì" -#: lib/object.php:361 +#: lib/object.php:412 templates/calendar.php:5 msgid "Tuesday" msgstr "Martedì" -#: lib/object.php:362 +#: lib/object.php:413 templates/calendar.php:5 msgid "Wednesday" msgstr "Mercoledì" -#: lib/object.php:363 +#: lib/object.php:414 templates/calendar.php:5 msgid "Thursday" msgstr "Giovedì" -#: lib/object.php:364 +#: lib/object.php:415 templates/calendar.php:5 msgid "Friday" msgstr "Venerdì" -#: lib/object.php:365 +#: lib/object.php:416 templates/calendar.php:5 msgid "Saturday" msgstr "Sabato" -#: lib/object.php:366 templates/settings.php:43 +#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 msgid "Sunday" msgstr "Domenica" -#: lib/object.php:373 +#: lib/object.php:427 msgid "events week of month" msgstr "settimana del mese degli eventi" -#: lib/object.php:374 +#: lib/object.php:428 msgid "first" msgstr "primo" -#: lib/object.php:375 +#: lib/object.php:429 msgid "second" msgstr "secondo" -#: lib/object.php:376 +#: lib/object.php:430 msgid "third" msgstr "terzo" -#: lib/object.php:377 +#: lib/object.php:431 msgid "fourth" msgstr "quarto" -#: lib/object.php:378 +#: lib/object.php:432 msgid "fifth" msgstr "quinto" -#: lib/object.php:379 +#: lib/object.php:433 msgid "last" msgstr "ultimo" -#: lib/object.php:401 +#: lib/object.php:467 templates/calendar.php:7 msgid "January" msgstr "Gennaio" -#: lib/object.php:402 +#: lib/object.php:468 templates/calendar.php:7 msgid "February" msgstr "Febbraio" -#: lib/object.php:403 +#: lib/object.php:469 templates/calendar.php:7 msgid "March" msgstr "Marzo" -#: lib/object.php:404 +#: lib/object.php:470 templates/calendar.php:7 msgid "April" msgstr "Aprile" -#: lib/object.php:405 +#: lib/object.php:471 templates/calendar.php:7 msgid "May" msgstr "Maggio" -#: lib/object.php:406 +#: lib/object.php:472 templates/calendar.php:7 msgid "June" msgstr "Giugno" -#: lib/object.php:407 +#: lib/object.php:473 templates/calendar.php:7 msgid "July" msgstr "Luglio" -#: lib/object.php:408 +#: lib/object.php:474 templates/calendar.php:7 msgid "August" msgstr "Agosto" -#: lib/object.php:409 +#: lib/object.php:475 templates/calendar.php:7 msgid "September" msgstr "Settembre" -#: lib/object.php:410 +#: lib/object.php:476 templates/calendar.php:7 msgid "October" msgstr "Ottobre" -#: lib/object.php:411 +#: lib/object.php:477 templates/calendar.php:7 msgid "November" msgstr "Novembre" -#: lib/object.php:412 +#: lib/object.php:478 templates/calendar.php:7 msgid "December" msgstr "Dicembre" -#: lib/object.php:418 +#: lib/object.php:488 msgid "by events date" msgstr "per data evento" -#: lib/object.php:419 +#: lib/object.php:489 msgid "by yearday(s)" msgstr "per giorno/i dell'anno" -#: lib/object.php:420 +#: lib/object.php:490 msgid "by weeknumber(s)" msgstr "per numero/i settimana" -#: lib/object.php:421 +#: lib/object.php:491 msgid "by day and month" msgstr "per giorno e mese" -#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +#: lib/search.php:35 lib/search.php:37 lib/search.php:40 msgid "Date" msgstr "Data" -#: lib/search.php:40 +#: lib/search.php:43 msgid "Cal." msgstr "Cal." +#: templates/calendar.php:6 +msgid "Sun." +msgstr "Dom." + +#: templates/calendar.php:6 +msgid "Mon." +msgstr "Lun." + +#: templates/calendar.php:6 +msgid "Tue." +msgstr "Mar." + +#: templates/calendar.php:6 +msgid "Wed." +msgstr "Mer." + +#: templates/calendar.php:6 +msgid "Thu." +msgstr "Gio." + +#: templates/calendar.php:6 +msgid "Fri." +msgstr "Ven." + +#: templates/calendar.php:6 +msgid "Sat." +msgstr "Sab." + +#: templates/calendar.php:8 +msgid "Jan." +msgstr "Gen." + +#: templates/calendar.php:8 +msgid "Feb." +msgstr "Feb." + +#: templates/calendar.php:8 +msgid "Mar." +msgstr "Mar." + +#: templates/calendar.php:8 +msgid "Apr." +msgstr "Apr." + +#: templates/calendar.php:8 +msgid "May." +msgstr "Mag." + +#: templates/calendar.php:8 +msgid "Jun." +msgstr "Giu." + +#: templates/calendar.php:8 +msgid "Jul." +msgstr "Lug." + +#: templates/calendar.php:8 +msgid "Aug." +msgstr "Ago." + +#: templates/calendar.php:8 +msgid "Sep." +msgstr "Set." + +#: templates/calendar.php:8 +msgid "Oct." +msgstr "Ott." + +#: templates/calendar.php:8 +msgid "Nov." +msgstr "Nov." + +#: templates/calendar.php:8 +msgid "Dec." +msgstr "Dic." + #: templates/calendar.php:11 msgid "All day" msgstr "Tutti il giorno" -#: templates/calendar.php:12 templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nuovo calendario" - #: templates/calendar.php:13 msgid "Missing fields" msgstr "Campi mancanti" @@ -364,27 +467,27 @@ msgstr "L'evento finisce prima d'iniziare" msgid "There was a database fail" msgstr "Si è verificato un errore del database" -#: templates/calendar.php:40 +#: templates/calendar.php:38 msgid "Week" msgstr "Settimana" -#: templates/calendar.php:41 +#: templates/calendar.php:39 msgid "Month" msgstr "Mese" -#: templates/calendar.php:42 +#: templates/calendar.php:40 msgid "List" msgstr "Elenco" -#: templates/calendar.php:48 +#: templates/calendar.php:44 msgid "Today" msgstr "Oggi" -#: templates/calendar.php:49 +#: templates/calendar.php:45 msgid "Calendars" msgstr "Calendari" -#: templates/calendar.php:67 +#: templates/calendar.php:59 msgid "There was a fail, while parsing the file." msgstr "Si è verificato un errore durante l'analisi del file." @@ -397,7 +500,7 @@ msgid "Your calendars" msgstr "I tuoi calendari" #: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:5 +#: templates/part.choosecalendar.rowfields.php:11 msgid "CalDav Link" msgstr "Collegamento CalDav" @@ -409,19 +512,19 @@ msgstr "Calendari condivisi" msgid "No shared calendars" msgstr "Nessun calendario condiviso" -#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.choosecalendar.rowfields.php:8 msgid "Share Calendar" msgstr "Condividi calendario" -#: templates/part.choosecalendar.rowfields.php:6 +#: templates/part.choosecalendar.rowfields.php:14 msgid "Download" msgstr "Scarica" -#: templates/part.choosecalendar.rowfields.php:7 +#: templates/part.choosecalendar.rowfields.php:17 msgid "Edit" msgstr "Modifica" -#: templates/part.choosecalendar.rowfields.php:8 +#: templates/part.choosecalendar.rowfields.php:20 #: templates/part.editevent.php:9 msgid "Delete" msgstr "Elimina" @@ -507,23 +610,23 @@ msgstr "Categorie separate con virgole" msgid "Edit categories" msgstr "Modifica le categorie" -#: templates/part.eventform.php:56 templates/part.showevent.php:55 +#: templates/part.eventform.php:56 templates/part.showevent.php:52 msgid "All Day Event" msgstr "Evento che occupa tutta la giornata" -#: templates/part.eventform.php:60 templates/part.showevent.php:59 +#: templates/part.eventform.php:60 templates/part.showevent.php:56 msgid "From" msgstr "Da" -#: templates/part.eventform.php:68 templates/part.showevent.php:67 +#: templates/part.eventform.php:68 templates/part.showevent.php:64 msgid "To" msgstr "A" -#: templates/part.eventform.php:76 templates/part.showevent.php:75 +#: templates/part.eventform.php:76 templates/part.showevent.php:72 msgid "Advanced options" msgstr "Opzioni avanzate" -#: templates/part.eventform.php:81 templates/part.showevent.php:80 +#: templates/part.eventform.php:81 templates/part.showevent.php:77 msgid "Location" msgstr "Luogo" @@ -531,7 +634,7 @@ msgstr "Luogo" msgid "Location of the Event" msgstr "Luogo dell'evento" -#: templates/part.eventform.php:89 templates/part.showevent.php:88 +#: templates/part.eventform.php:89 templates/part.showevent.php:85 msgid "Description" msgstr "Descrizione" @@ -539,84 +642,86 @@ msgstr "Descrizione" msgid "Description of the Event" msgstr "Descrizione dell'evento" -#: templates/part.eventform.php:100 templates/part.showevent.php:98 +#: templates/part.eventform.php:100 templates/part.showevent.php:95 msgid "Repeat" msgstr "Ripeti" -#: templates/part.eventform.php:107 templates/part.showevent.php:105 +#: templates/part.eventform.php:107 templates/part.showevent.php:102 msgid "Advanced" msgstr "Avanzato" -#: templates/part.eventform.php:151 templates/part.showevent.php:149 +#: templates/part.eventform.php:151 templates/part.showevent.php:146 msgid "Select weekdays" msgstr "Seleziona i giorni della settimana" #: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:162 templates/part.showevent.php:175 +#: templates/part.showevent.php:159 templates/part.showevent.php:172 msgid "Select days" msgstr "Seleziona i giorni" -#: templates/part.eventform.php:169 templates/part.showevent.php:167 +#: templates/part.eventform.php:169 templates/part.showevent.php:164 msgid "and the events day of year." msgstr "e il giorno dell'anno degli eventi." -#: templates/part.eventform.php:182 templates/part.showevent.php:180 +#: templates/part.eventform.php:182 templates/part.showevent.php:177 msgid "and the events day of month." msgstr "e il giorno del mese degli eventi." -#: templates/part.eventform.php:190 templates/part.showevent.php:188 +#: templates/part.eventform.php:190 templates/part.showevent.php:185 msgid "Select months" msgstr "Seleziona i mesi" -#: templates/part.eventform.php:203 templates/part.showevent.php:201 +#: templates/part.eventform.php:203 templates/part.showevent.php:198 msgid "Select weeks" msgstr "Seleziona le settimane" -#: templates/part.eventform.php:208 templates/part.showevent.php:206 +#: templates/part.eventform.php:208 templates/part.showevent.php:203 msgid "and the events week of year." msgstr "e la settimana dell'anno degli eventi." -#: templates/part.eventform.php:214 templates/part.showevent.php:212 +#: templates/part.eventform.php:214 templates/part.showevent.php:209 msgid "Interval" msgstr "Intervallo" -#: templates/part.eventform.php:220 templates/part.showevent.php:218 +#: templates/part.eventform.php:220 templates/part.showevent.php:215 msgid "End" msgstr "Fine" -#: templates/part.eventform.php:233 templates/part.showevent.php:231 +#: templates/part.eventform.php:233 templates/part.showevent.php:228 msgid "occurrences" msgstr "occorrenze" -#: templates/part.import.php:1 -msgid "Import a calendar file" -msgstr "Importa un file di calendario" - -#: templates/part.import.php:6 -msgid "Please choose the calendar" -msgstr "Scegli il calendario" - -#: templates/part.import.php:10 +#: templates/part.import.php:14 msgid "create a new calendar" msgstr "Crea un nuovo calendario" -#: templates/part.import.php:15 +#: templates/part.import.php:17 +msgid "Import a calendar file" +msgstr "Importa un file di calendario" + +#: templates/part.import.php:24 +msgid "Please choose a calendar" +msgstr "Scegli un calendario" + +#: templates/part.import.php:36 msgid "Name of new calendar" msgstr "Nome del nuovo calendario" -#: templates/part.import.php:17 +#: templates/part.import.php:44 +msgid "Take an available name!" +msgstr "Usa un nome disponibile!" + +#: templates/part.import.php:45 +msgid "" +"A Calendar with this name already exists. If you continue anyhow, these " +"calendars will be merged." +msgstr "Un calendario con questo nome esiste già. Se continui, i due calendari saranno uniti." + +#: templates/part.import.php:47 msgid "Import" msgstr "Importa" -#: templates/part.import.php:20 -msgid "Importing calendar" -msgstr "Importazione del calendario in corso" - -#: templates/part.import.php:23 -msgid "Calendar imported successfully" -msgstr "Calendario importato correttamente" - -#: templates/part.import.php:24 +#: templates/part.import.php:56 msgid "Close Dialog" msgstr "Chiudi la finestra di dialogo" @@ -632,15 +737,11 @@ msgstr "Visualizza un evento" msgid "No categories selected" msgstr "Nessuna categoria selezionata" -#: templates/part.showevent.php:25 -msgid "Select category" -msgstr "Seleziona una categoria" - #: templates/part.showevent.php:37 msgid "of" msgstr "di" -#: templates/part.showevent.php:62 templates/part.showevent.php:70 +#: templates/part.showevent.php:59 templates/part.showevent.php:67 msgid "at" msgstr "alle" @@ -668,9 +769,33 @@ msgstr "12h" msgid "First day of the week" msgstr "Primo giorno della settimana" -#: templates/settings.php:49 -msgid "Calendar CalDAV syncing address:" -msgstr "Indirizzo sincronizzazione calendario CalDAV:" +#: templates/settings.php:47 +msgid "Cache" +msgstr "Cache" + +#: templates/settings.php:48 +msgid "Clear cache for repeating events" +msgstr "Cancella gli eventi che si ripetono dalla cache" + +#: templates/settings.php:53 +msgid "Calendar CalDAV syncing addresses" +msgstr "Indirizzi di sincronizzazione calendari CalDAV" + +#: templates/settings.php:53 +msgid "more info" +msgstr "ulteriori informazioni" + +#: templates/settings.php:55 +msgid "Primary address (Kontact et al)" +msgstr "Indirizzo principale (Kontact e altri)" + +#: templates/settings.php:57 +msgid "iOS/OS X" +msgstr "iOS/OS X" + +#: templates/settings.php:59 +msgid "Read only iCalendar link(s)" +msgstr "Collegamento(i) iCalendar sola lettura" #: templates/share.dropdown.php:20 msgid "Users" diff --git a/l10n/it/contacts.po b/l10n/it/contacts.po index 0e1a62a6f9..64b9e1e0a1 100644 --- a/l10n/it/contacts.po +++ b/l10n/it/contacts.po @@ -11,101 +11,97 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/language/it/)\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"PO-Revision-Date: 2012-07-25 21: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" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/activation.php:19 ajax/updateaddressbook.php:32 +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 msgid "Error (de)activating addressbook." msgstr "Errore nel (dis)attivare la rubrica." -#: ajax/addcontact.php:59 +#: ajax/addcontact.php:47 msgid "There was an error adding the contact." msgstr "Si è verificato un errore nell'aggiunta del contatto." -#: ajax/addproperty.php:40 +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "il nome dell'elemento non è impostato." + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "ID non impostato." + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "Impossibile elaborare il contatto: " + +#: ajax/addproperty.php:56 msgid "Cannot add empty property." msgstr "Impossibile aggiungere una proprietà vuota." -#: ajax/addproperty.php:52 +#: ajax/addproperty.php:67 msgid "At least one of the address fields has to be filled out." msgstr "Deve essere riempito almeno un indirizzo." -#: ajax/addproperty.php:62 +#: ajax/addproperty.php:76 msgid "Trying to add duplicate property: " msgstr "P" -#: ajax/addproperty.php:120 -msgid "Error adding contact property." -msgstr "Errore durante l'aggiunta della proprietà del contatto." +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "Errore durante l'aggiunta della proprietà del contatto: " -#: ajax/categories/categoriesfor.php:15 +#: ajax/categories/categoriesfor.php:17 msgid "No ID provided" msgstr "Nessun ID fornito" -#: ajax/categories/categoriesfor.php:27 +#: ajax/categories/categoriesfor.php:34 msgid "Error setting checksum." msgstr "Errore di impostazione del codice di controllo." -#: ajax/categories/delete.php:29 +#: ajax/categories/delete.php:19 msgid "No categories selected for deletion." msgstr "Nessuna categoria selezionata per l'eliminazione." -#: ajax/categories/delete.php:36 ajax/categories/rescan.php:28 +#: ajax/categories/delete.php:26 msgid "No address books found." msgstr "Nessuna rubrica trovata." -#: ajax/categories/delete.php:44 ajax/categories/rescan.php:36 +#: ajax/categories/delete.php:34 msgid "No contacts found." msgstr "Nessun contatto trovato." -#: ajax/contactdetails.php:37 +#: ajax/contactdetails.php:31 msgid "Missing ID" msgstr "ID mancante" -#: ajax/contactdetails.php:41 +#: ajax/contactdetails.php:36 msgid "Error parsing VCard for ID: \"" msgstr "Errore in fase di elaborazione del file VCard per l'ID: \"" -#: ajax/createaddressbook.php:18 -msgid "Cannot add addressbook with an empty name." -msgstr "Impossibile aggiungere una rubrica senza nome." - -#: ajax/createaddressbook.php:24 -msgid "Error adding addressbook." -msgstr "Errore durante l'aggiunta della rubrica." - -#: ajax/createaddressbook.php:30 -msgid "Error activating addressbook." -msgstr "Errore durante l'attivazione della rubrica." - -#: ajax/currentphoto.php:34 ajax/oc_photo.php:37 ajax/uploadphoto.php:41 +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 #: ajax/uploadphoto.php:68 msgid "No contact ID was submitted." msgstr "Nessun ID di contatto inviato." -#: ajax/currentphoto.php:40 +#: ajax/currentphoto.php:36 msgid "Error reading contact photo." msgstr "Errore di lettura della foto del contatto." -#: ajax/currentphoto.php:52 +#: ajax/currentphoto.php:48 msgid "Error saving temporary file." msgstr "Errore di salvataggio del file temporaneo." -#: ajax/currentphoto.php:55 +#: ajax/currentphoto.php:51 msgid "The loading photo is not valid." msgstr "La foto caricata non è valida." -#: ajax/deletecard.php:37 ajax/saveproperty.php:58 -msgid "id is not set." -msgstr "ID non impostato." - #: ajax/deleteproperty.php:36 msgid "Information about vCard is incorrect. Please reload the page." msgstr "Informazioni sulla vCard non corrette. Ricarica la pagina." @@ -114,328 +110,387 @@ msgstr "Informazioni sulla vCard non corrette. Ricarica la pagina." msgid "Error deleting contact property." msgstr "Errore durante l'eliminazione della proprietà del contatto." -#: ajax/editname.php:37 +#: ajax/editname.php:31 msgid "Contact ID is missing." msgstr "Manca l'ID del contatto." -#: ajax/loadphoto.php:44 -msgid "Missing contact id." -msgstr "ID di contatto mancante." - -#: ajax/oc_photo.php:41 +#: ajax/oc_photo.php:32 msgid "No photo path was submitted." msgstr "Non è stato inviato alcun percorso a una foto." -#: ajax/oc_photo.php:48 +#: ajax/oc_photo.php:39 msgid "File doesn't exist:" msgstr "Il file non esiste:" -#: ajax/oc_photo.php:54 ajax/oc_photo.php:57 +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 msgid "Error loading image." msgstr "Errore di caricamento immagine." -#: ajax/savecrop.php:68 +#: ajax/savecrop.php:67 msgid "Error getting contact object." -msgstr "" +msgstr "Errore di recupero dell'oggetto contatto." -#: ajax/savecrop.php:75 +#: ajax/savecrop.php:76 msgid "Error getting PHOTO property." -msgstr "" +msgstr "Errore di recupero della proprietà FOTO." -#: ajax/savecrop.php:88 +#: ajax/savecrop.php:93 msgid "Error saving contact." -msgstr "" +msgstr "Errore di salvataggio del contatto." -#: ajax/savecrop.php:98 +#: ajax/savecrop.php:103 msgid "Error resizing image" -msgstr "" +msgstr "Errore di ridimensionamento dell'immagine" -#: ajax/savecrop.php:101 +#: ajax/savecrop.php:106 msgid "Error cropping image" -msgstr "" +msgstr "Errore di ritaglio dell'immagine" -#: ajax/savecrop.php:104 +#: ajax/savecrop.php:109 msgid "Error creating temporary image" -msgstr "" +msgstr "Errore durante la creazione dell'immagine temporanea" -#: ajax/savecrop.php:107 +#: ajax/savecrop.php:112 msgid "Error finding image: " -msgstr "" +msgstr "Errore durante la ricerca dell'immagine: " -#: ajax/saveproperty.php:55 -msgid "element name is not set." -msgstr "il nome dell'elemento non è impostato." - -#: ajax/saveproperty.php:61 +#: ajax/saveproperty.php:40 msgid "checksum is not set." msgstr "il codice di controllo non è impostato." -#: ajax/saveproperty.php:78 +#: ajax/saveproperty.php:59 msgid "Information about vCard is incorrect. Please reload the page: " msgstr "Le informazioni della vCard non sono corrette. Ricarica la pagina: " -#: ajax/saveproperty.php:83 +#: ajax/saveproperty.php:64 msgid "Something went FUBAR. " msgstr "Qualcosa è andato storto. " -#: ajax/saveproperty.php:150 +#: ajax/saveproperty.php:133 msgid "Error updating contact property." msgstr "Errore durante l'aggiornamento della proprietà del contatto." -#: ajax/updateaddressbook.php:20 +#: ajax/updateaddressbook.php:21 msgid "Cannot update addressbook with an empty name." msgstr "Impossibile aggiornare una rubrica senza nome." -#: ajax/updateaddressbook.php:26 +#: ajax/updateaddressbook.php:25 msgid "Error updating addressbook." msgstr "Errore durante l'aggiornamento della rubrica." -#: ajax/uploadimport.php:46 ajax/uploadimport.php:76 +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 msgid "Error uploading contacts to storage." msgstr "Errore di invio dei contatti in archivio." -#: ajax/uploadimport.php:59 ajax/uploadphoto.php:77 +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, il file è stato inviato correttamente" -#: ajax/uploadimport.php:60 ajax/uploadphoto.php:78 +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Il file inviato supera la direttiva upload_max_filesize nel php.ini" -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:79 +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file inviato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML" -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:80 +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato inviato solo parzialmente" -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:81 +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 msgid "No file was uploaded" msgstr "Nessun file è stato inviato" -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:82 +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 msgid "Missing a temporary folder" msgstr "Manca una cartella temporanea" -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:102 +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 msgid "Couldn't save temporary image: " -msgstr "" +msgstr "Impossibile salvare l'immagine temporanea: " -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:105 +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 msgid "Couldn't load temporary image: " -msgstr "" +msgstr "Impossibile caricare l'immagine temporanea: " #: ajax/uploadphoto.php:71 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: appinfo/app.php:17 templates/settings.php:3 +#: appinfo/app.php:19 templates/settings.php:3 msgid "Contacts" msgstr "Contatti" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Sorry, this functionality has not been implemented yet" -msgstr "" +msgstr "Siamo spiacenti, questa funzionalità non è stata ancora implementata" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Not implemented" -msgstr "" +msgstr "Non implementata" -#: js/contacts.js:29 +#: js/contacts.js:58 msgid "Couldn't get a valid address." -msgstr "" +msgstr "Impossibile ottenere un indirizzo valido." -#: js/contacts.js:29 js/contacts.js:334 js/contacts.js:341 js/contacts.js:355 -#: js/contacts.js:393 js/contacts.js:399 js/contacts.js:565 js/contacts.js:605 -#: js/contacts.js:631 js/contacts.js:668 js/contacts.js:747 js/contacts.js:753 -#: js/contacts.js:765 js/contacts.js:799 js/contacts.js:1056 -#: js/contacts.js:1064 js/contacts.js:1073 js/contacts.js:1130 -#: js/contacts.js:1146 js/contacts.js:1161 js/contacts.js:1173 -#: js/contacts.js:1196 js/contacts.js:1449 js/contacts.js:1457 -#: js/contacts.js:1483 js/contacts.js:1494 js/contacts.js:1509 -#: js/contacts.js:1526 js/contacts.js:1596 js/contacts.js:1644 -#: js/contacts.js:1654 js/contacts.js:1657 +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 msgid "Error" -msgstr "" +msgstr "Errore" -#: js/contacts.js:364 -msgid "Are you sure you want to delete this contact?" -msgstr "" - -#: js/contacts.js:364 -msgid "Warning" -msgstr "" - -#: js/contacts.js:605 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:631 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:747 js/contacts.js:765 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:781 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1056 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1064 js/contacts.js:1449 js/contacts.js:1634 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1119 -msgid "Select photo" -msgstr "" - -#: js/contacts.js:1257 js/contacts.js:1290 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1305 templates/part.importaddressbook.php:25 -msgid "Drop a VCF file to import contacts." -msgstr "Rilascia un file VCF per importare i contatti." - -#: js/contacts.js:1475 -msgid "Import done. Success/Failure: " -msgstr "" - -#: js/contacts.js:1476 -msgid "OK" -msgstr "" - -#: js/contacts.js:1494 -msgid "Displayname cannot be empty." -msgstr "" - -#: js/contacts.js:1634 -msgid "Upload too large" -msgstr "" - -#: js/contacts.js:1638 -msgid "Only image files can be used as profile picture." -msgstr "" - -#: js/contacts.js:1638 -msgid "Wrong file type" -msgstr "" - -#: js/contacts.js:1644 -msgid "" -"Your browser doesn't support AJAX upload. Please click on the profile " -"picture to select a photo to upload." -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: lib/app.php:30 -msgid "Addressbook not found." -msgstr "Rubrica non trovata." - -#: lib/app.php:34 -msgid "This is not your addressbook." -msgstr "Questa non è la tua rubrica." - -#: lib/app.php:45 -msgid "Contact could not be found." -msgstr "Il contatto non può essere trovato." - -#: lib/app.php:101 templates/part.contact.php:109 -msgid "Address" -msgstr "Indirizzo" - -#: lib/app.php:102 -msgid "Telephone" -msgstr "Telefono" - -#: lib/app.php:103 templates/part.contact.php:108 -msgid "Email" -msgstr "Email" - -#: lib/app.php:104 templates/part.contact.php:33 templates/part.contact.php:34 -#: templates/part.contact.php:104 -msgid "Organization" -msgstr "Organizzazione" - -#: lib/app.php:116 lib/app.php:123 lib/app.php:133 -msgid "Work" -msgstr "Lavoro" - -#: lib/app.php:117 lib/app.php:121 lib/app.php:134 -msgid "Home" -msgstr "Casa" - -#: lib/app.php:122 -msgid "Mobile" -msgstr "Cellulare" - -#: lib/app.php:124 -msgid "Text" -msgstr "Testo" - -#: lib/app.php:125 -msgid "Voice" -msgstr "Voce" - -#: lib/app.php:126 -msgid "Message" -msgstr "Messaggio" - -#: lib/app.php:127 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:128 -msgid "Video" -msgstr "Video" - -#: lib/app.php:129 -msgid "Pager" -msgstr "Cercapersone" - -#: lib/app.php:135 -msgid "Internet" -msgstr "Internet" - -#: lib/hooks.php:79 -msgid "{name}'s Birthday" -msgstr "Data di nascita di {name}" - -#: lib/search.php:22 +#: js/contacts.js:389 lib/search.php:15 msgid "Contact" msgstr "Contatto" -#: templates/index.php:13 +#: js/contacts.js:389 +msgid "New" +msgstr "Nuovo" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "Nuovo contatto" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "Questa proprietà non può essere vuota." + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "Impossibile serializzare gli elementi." + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "'deleteProperty' invocata senza l'argomento di tipo. Segnalalo a bugs.owncloud.org" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "Modifica il nome" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "Nessun file selezionato per l'invio" + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "Il file che stai cercando di inviare supera la dimensione massima per l'invio dei file su questo server." + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "Seleziona il tipo" + +#: js/loader.js:49 +msgid "Result: " +msgstr "Risultato: " + +#: js/loader.js:49 +msgid " imported, " +msgstr " importato, " + +#: js/loader.js:49 +msgid " failed." +msgstr " non riuscito." + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "Rubrica non trovata." + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "Questa non è la tua rubrica." + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "Il contatto non può essere trovato." + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "Indirizzo" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "Telefono" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "Email" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "Organizzazione" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "Lavoro" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "Casa" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "Cellulare" + +#: lib/app.php:123 +msgid "Text" +msgstr "Testo" + +#: lib/app.php:124 +msgid "Voice" +msgstr "Voce" + +#: lib/app.php:125 +msgid "Message" +msgstr "Messaggio" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Cercapersone" + +#: lib/app.php:134 +msgid "Internet" +msgstr "Internet" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "Compleanno" + +#: lib/app.php:170 +msgid "Business" +msgstr "Lavoro" + +#: lib/app.php:171 +msgid "Call" +msgstr "Chiama" + +#: lib/app.php:172 +msgid "Clients" +msgstr "Client" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "Corriere" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "Festività" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "Idee" + +#: lib/app.php:176 +msgid "Journey" +msgstr "Viaggio" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "Anniversario" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "Riunione" + +#: lib/app.php:179 +msgid "Other" +msgstr "Altro" + +#: lib/app.php:180 +msgid "Personal" +msgstr "Personale" + +#: lib/app.php:181 +msgid "Projects" +msgstr "Progetti" + +#: lib/app.php:182 +msgid "Questions" +msgstr "Domande" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "Data di nascita di {name}" + +#: templates/index.php:15 msgid "Add Contact" msgstr "Aggiungi contatto" -#: templates/index.php:14 +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "Importa" + +#: templates/index.php:20 msgid "Addressbooks" msgstr "Rubriche" +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "Chiudi" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "Scorciatoie da tastiera" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "Navigazione" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "Contatto successivo in elenco" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "Contatto precedente in elenco" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "Espandi/Contrai la rubrica corrente" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "Rubrica successiva/precedente" + +#: templates/index.php:54 +msgid "Actions" +msgstr "Azioni" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "Aggiorna l'elenco dei contatti" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "Aggiungi un nuovo contatto" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "Aggiungi una nuova rubrica" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "Elimina il contatto corrente" + #: templates/part.chooseaddressbook.php:1 msgid "Configure Address Books" msgstr "Configura rubrica" @@ -444,11 +499,7 @@ msgstr "Configura rubrica" msgid "New Address Book" msgstr "Nuova rubrica" -#: templates/part.chooseaddressbook.php:17 -msgid "Import from VCF" -msgstr "Importa da VCF" - -#: templates/part.chooseaddressbook.php:22 +#: templates/part.chooseaddressbook.php:21 #: templates/part.chooseaddressbook.rowfields.php:8 msgid "CardDav Link" msgstr "Link CardDav" @@ -462,186 +513,195 @@ msgid "Edit" msgstr "Modifica" #: templates/part.chooseaddressbook.rowfields.php:17 -#: templates/part.contact.php:34 templates/part.contact.php:36 -#: templates/part.contact.php:38 templates/part.contact.php:42 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 msgid "Delete" msgstr "Elimina" -#: templates/part.contact.php:12 -msgid "Download contact" -msgstr "Scarica contatto" - -#: templates/part.contact.php:13 -msgid "Delete contact" -msgstr "Elimina contatto" - -#: templates/part.contact.php:19 +#: templates/part.contact.php:16 msgid "Drop photo to upload" msgstr "Rilascia una foto da inviare" -#: templates/part.contact.php:29 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formato personalizzato, nome breve, nome completo, invertito o invertito con virgola" - -#: templates/part.contact.php:30 -msgid "Edit name details" -msgstr "Modifica dettagli del nome" - -#: templates/part.contact.php:35 templates/part.contact.php:105 -msgid "Nickname" -msgstr "Pseudonimo" - -#: templates/part.contact.php:36 -msgid "Enter nickname" -msgstr "Inserisci pseudonimo" - -#: templates/part.contact.php:37 templates/part.contact.php:106 -msgid "Birthday" -msgstr "Compleanno" - -#: templates/part.contact.php:38 -msgid "dd-mm-yyyy" -msgstr "gg-mm-aaaa" - -#: templates/part.contact.php:39 templates/part.contact.php:111 -msgid "Groups" -msgstr "Gruppi" - -#: templates/part.contact.php:41 -msgid "Separate groups with commas" -msgstr "Separa i gruppi con virgole" - -#: templates/part.contact.php:42 -msgid "Edit groups" -msgstr "Modifica gruppi" - -#: templates/part.contact.php:55 templates/part.contact.php:69 -msgid "Preferred" -msgstr "Preferito" - -#: templates/part.contact.php:56 -msgid "Please specify a valid email address." -msgstr "Specifica un indirizzo email valido" - -#: templates/part.contact.php:56 -msgid "Enter email address" -msgstr "Inserisci indirizzo email" - -#: templates/part.contact.php:60 -msgid "Mail to address" -msgstr "Invia per email" - -#: templates/part.contact.php:61 -msgid "Delete email address" -msgstr "Elimina l'indirizzo email" - -#: templates/part.contact.php:70 -msgid "Enter phone number" -msgstr "Inserisci il numero di telefono" - -#: templates/part.contact.php:74 -msgid "Delete phone number" -msgstr "Elimina il numero di telefono" - -#: templates/part.contact.php:84 -msgid "View on map" -msgstr "Visualizza sulla mappa" - -#: templates/part.contact.php:84 -msgid "Edit address details" -msgstr "Modifica dettagli dell'indirizzo" - -#: templates/part.contact.php:95 -msgid "Add notes here." -msgstr "Aggiungi qui le note." - -#: templates/part.contact.php:101 -msgid "Add field" -msgstr "Aggiungi campo" - -#: templates/part.contact.php:103 -msgid "Profile picture" -msgstr "Immagine del profilo" - -#: templates/part.contact.php:107 -msgid "Phone" -msgstr "Telefono" - -#: templates/part.contact.php:110 -msgid "Note" -msgstr "Nota" - -#: templates/part.contactphoto.php:8 +#: templates/part.contact.php:18 msgid "Delete current photo" msgstr "Elimina la foto corrente" -#: templates/part.contactphoto.php:9 +#: templates/part.contact.php:19 msgid "Edit current photo" msgstr "Modifica la foto corrente" -#: templates/part.contactphoto.php:10 +#: templates/part.contact.php:20 msgid "Upload new photo" msgstr "Invia una nuova foto" -#: templates/part.contactphoto.php:11 +#: templates/part.contact.php:21 msgid "Select photo from ownCloud" msgstr "Seleziona la foto da ownCloud" -#: templates/part.cropphoto.php:64 -msgid "The temporary image has been removed from cache." -msgstr "" +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr "Formato personalizzato, nome breve, nome completo, invertito o invertito con virgola" -#: templates/part.edit_address_dialog.php:9 +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "Modifica dettagli del nome" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "Pseudonimo" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "Inserisci pseudonimo" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" +msgstr "Sito web" + +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "http://www.somesite.com" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "Vai al sito web" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "gg-mm-aaaa" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "Gruppi" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "Separa i gruppi con virgole" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "Modifica gruppi" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "Preferito" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "Specifica un indirizzo email valido" + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "Inserisci indirizzo email" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "Invia per email" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "Elimina l'indirizzo email" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "Inserisci il numero di telefono" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "Elimina il numero di telefono" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "Visualizza sulla mappa" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "Modifica dettagli dell'indirizzo" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "Aggiungi qui le note." + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "Aggiungi campo" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "Telefono" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "Nota" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "Scarica contatto" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "Elimina contatto" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "L'immagine temporanea è stata rimossa dalla cache." + +#: templates/part.edit_address_dialog.php:6 msgid "Edit address" msgstr "Modifica indirizzo" -#: templates/part.edit_address_dialog.php:14 +#: templates/part.edit_address_dialog.php:10 msgid "Type" msgstr "Tipo" -#: templates/part.edit_address_dialog.php:22 -#: templates/part.edit_address_dialog.php:25 +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 msgid "PO Box" msgstr "Casella postale" -#: templates/part.edit_address_dialog.php:29 -#: templates/part.edit_address_dialog.php:32 +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "Indirizzo" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "Via e numero" + +#: templates/part.edit_address_dialog.php:30 msgid "Extended" msgstr "Esteso" -#: templates/part.edit_address_dialog.php:35 -#: templates/part.edit_address_dialog.php:38 -msgid "Street" -msgstr "Via" +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "Numero appartamento ecc." -#: templates/part.edit_address_dialog.php:41 -#: templates/part.edit_address_dialog.php:44 +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 msgid "City" msgstr "Città" -#: templates/part.edit_address_dialog.php:47 -#: templates/part.edit_address_dialog.php:50 +#: templates/part.edit_address_dialog.php:42 msgid "Region" msgstr "Regione" -#: templates/part.edit_address_dialog.php:53 -#: templates/part.edit_address_dialog.php:56 +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "Ad es. stato o provincia" + +#: templates/part.edit_address_dialog.php:48 msgid "Zipcode" msgstr "CAP" -#: templates/part.edit_address_dialog.php:59 -#: templates/part.edit_address_dialog.php:62 +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "CAP" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 msgid "Country" msgstr "Stato" -#: templates/part.edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Modifica categorie" - -#: templates/part.edit_categories_dialog.php:14 -msgid "Add" -msgstr "Aggiungi" - #: templates/part.edit_name_dialog.php:16 msgid "Addressbook" msgstr "Rubrica" @@ -747,7 +807,6 @@ msgid "Submit" msgstr "Invia" #: templates/part.editaddressbook.php:30 -#: templates/part.importaddressbook.php:34 msgid "Cancel" msgstr "Annulla" @@ -767,33 +826,10 @@ msgstr "crea una nuova rubrica" msgid "Name of new addressbook" msgstr "Nome della nuova rubrica" -#: templates/part.import.php:17 -msgid "Import" -msgstr "Importa" - #: templates/part.import.php:20 msgid "Importing contacts" msgstr "Importazione contatti" -#: templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/part.importaddressbook.php:12 -msgid "" -"Currently this import function doesn't work while encryption is enabled.
Please upload your VCF file with the file manager and click on it to " -"import." -msgstr "" - -#: templates/part.importaddressbook.php:16 -msgid "Select address book to import to:" -msgstr "Seleziona la rubrica di destinazione:" - -#: templates/part.importaddressbook.php:26 -msgid "Select from HD" -msgstr "Seleziona da disco" - #: templates/part.no_contacts.php:2 msgid "You have no contacts in your addressbook." msgstr "Non hai contatti nella rubrica." @@ -806,6 +842,18 @@ msgstr "Aggiungi contatto" msgid "Configure addressbooks" msgstr "Configura rubriche" +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "Seleziona rubriche" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "Inserisci il nome" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "Inserisci una descrizione" + #: templates/settings.php:4 msgid "CardDAV syncing addresses" msgstr "Indirizzi di sincronizzazione CardDAV" @@ -821,3 +869,7 @@ msgstr "Indirizzo principale (Kontact e altri)" #: templates/settings.php:8 msgid "iOS/OS X" msgstr "iOS/OS X" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "Collegamento(i) cartella vCard sola lettura" diff --git a/l10n/it/files.po b/l10n/it/files.po index 8db41dc647..196985d5f8 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,43 +11,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/language/it/)\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"PO-Revision-Date: 2012-07-25 20:35+0000\n" +"Last-Translator: Vincenzo Reale \n" +"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, file caricato con successo" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Il file caricato supera il valore upload_max_filesize in php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato parzialmente caricato" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Cartella temporanea mancante" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" @@ -55,57 +55,65 @@ msgstr "Scrittura su disco non riuscita" msgid "Files" msgstr "File" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "Rimuovi condivisione" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Elimina" + #: js/filelist.js:186 msgid "undo deletion" -msgstr "" +msgstr "annulla l'eliminazione" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "creazione file ZIP, potrebbe richiedere del tempo." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Errore di invio" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "In corso" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Invio annullato" #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Nome non valido" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Dimensione" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Modificato" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "cartella" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "cartelle" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "file" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "file" #: templates/admin.php:5 msgid "File handling" @@ -175,10 +183,6 @@ msgstr "Condividi" msgid "Download" msgstr "Scarica" -#: templates/index.php:56 -msgid "Delete" -msgstr "Elimina" - #: templates/index.php:64 msgid "Upload too large" msgstr "Il file caricato è troppo grande" diff --git a/l10n/it/gallery.po b/l10n/it/gallery.po index 794458ec1f..d60292cea1 100644 --- a/l10n/it/gallery.po +++ b/l10n/it/gallery.po @@ -10,71 +10,35 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/language/it/)\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"PO-Revision-Date: 2012-07-25 20:36+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" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:37 +#: appinfo/app.php:39 msgid "Pictures" msgstr "Immagini" -#: js/album_cover.js:44 +#: js/pictures.js:12 msgid "Share gallery" -msgstr "" +msgstr "Condividi la galleria" -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 +#: js/pictures.js:32 msgid "Error: " -msgstr "" +msgstr "Errore: " -#: js/album_cover.js:64 js/album_cover.js:100 +#: js/pictures.js:32 msgid "Internal error" -msgstr "" +msgstr "Errore interno" -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Impostazioni" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Nuova scansione" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Ferma" - -#: templates/index.php:18 -msgid "Share" -msgstr "Condividi" +#: templates/index.php:27 +msgid "Slideshow" +msgstr "Presentazione" #: templates/view_album.php:19 msgid "Back" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 56936ed81f..6ae91a7c78 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,10 +14,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/language/it/)\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"PO-Revision-Date: 2012-07-25 20:36+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" "Content-Transfer-Encoding: 8bit\n" @@ -26,65 +26,69 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email salvata" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Email non valida" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID modificato" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Richiesta non valida" -#: ajax/setlanguage.php:17 +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Lingua modificata" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Disabilita" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Abilita" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Salvataggio in corso..." -#: personal.php:40 personal.php:41 +#: personal.php:41 personal.php:42 msgid "__language_name__" msgstr "Italiano" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "Avviso di sicurezza" + +#: templates/admin.php:28 msgid "Log" msgstr "Registro" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Altro" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Aggiungi la tua applicazione" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Seleziona un'applicazione" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Vedere la pagina dell'applicazione su apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-rilasciato" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "da" @@ -176,34 +180,34 @@ msgstr "Migliora la traduzione" msgid "use this address to connect to your ownCloud in your file manager" msgstr "usa questo indirizzo per connetterti al tuo ownCloud dal gestore file" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:15 templates/users.php:60 msgid "Name" msgstr "Nome" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:17 templates/users.php:61 msgid "Password" msgstr "Password" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:19 templates/users.php:62 templates/users.php:78 msgid "Groups" msgstr "Gruppi" -#: templates/users.php:22 +#: templates/users.php:25 msgid "Create" msgstr "Crea" -#: templates/users.php:25 +#: templates/users.php:28 msgid "Default Quota" msgstr "Quota predefinita" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:47 templates/users.php:103 msgid "Other" msgstr "Altro" -#: templates/users.php:47 +#: templates/users.php:63 msgid "Quota" msgstr "Quote" -#: templates/users.php:80 +#: templates/users.php:110 msgid "Delete" msgstr "Elimina" diff --git a/l10n/templates/bookmarks.pot b/l10n/templates/bookmarks.pot index 3a9362d978..bae23f3a63 100644 --- a/l10n/templates/bookmarks.pot +++ b/l10n/templates/bookmarks.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-25 22:14+0200\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/calendar.pot b/l10n/templates/calendar.pot index c96214c465..60b6126208 100644 --- a/l10n/templates/calendar.pot +++ b/l10n/templates/calendar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-25 22:14+0200\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/contacts.pot b/l10n/templates/contacts.pot index 993fd3f877..cb2045e027 100644 --- a/l10n/templates/contacts.pot +++ b/l10n/templates/contacts.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-25 22:14+0200\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 4f0a33760a..6bcaf6d4c5 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-07-25 22:14+0200\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" "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 d3f9a451e4..a607c408a3 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-07-25 22:14+0200\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/gallery.pot b/l10n/templates/gallery.pot index 658db4f6e4..694bdf4a58 100644 --- a/l10n/templates/gallery.pot +++ b/l10n/templates/gallery.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-25 22:14+0200\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/media.pot b/l10n/templates/media.pot index adbef7481b..528fcdce23 100644 --- a/l10n/templates/media.pot +++ b/l10n/templates/media.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-25 22:14+0200\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\n" "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 5b9ddb8262..44a2173caf 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-07-25 22:14+0200\n" +"POT-Creation-Date: 2012-07-26 02:01+0200\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/es.php b/settings/l10n/es.php index c8ddb412ec..305728d3dc 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,12 +1,19 @@ "Correo salvado", +"Invalid email" => "Correo Incorrecto", "OpenID Changed" => "OpenID cambiado", "Invalid request" => "Solicitud no válida", "Language changed" => "Idioma cambiado", +"Disable" => "Desactivar", +"Enable" => "Activar", +"Saving..." => "Salvando..", "__language_name__" => "Castellano", +"Security Warning" => "Advertencia de seguridad", "Log" => "Registro", "More" => "Más", "Add your App" => "Añade tu aplicación", "Select an App" => "Seleccionar una aplicación", +"See application page at apps.owncloud.com" => "Revisa la web de apps apps.owncloud.com", "-licensed" => "-autorizado", "by" => "por", "Documentation" => "Documentación", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index a4b255546a..ca138cf8c1 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -1,12 +1,19 @@ "Email salvata", +"Invalid email" => "Email non valida", "OpenID Changed" => "OpenID modificato", "Invalid request" => "Richiesta non valida", "Language changed" => "Lingua modificata", +"Disable" => "Disabilita", +"Enable" => "Abilita", +"Saving..." => "Salvataggio in corso...", "__language_name__" => "Italiano", +"Security Warning" => "Avviso di sicurezza", "Log" => "Registro", "More" => "Altro", "Add your App" => "Aggiungi la tua applicazione", "Select an App" => "Seleziona un'applicazione", +"See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", "-licensed" => "-rilasciato", "by" => "da", "Documentation" => "Documentazione", From ba0ea210744479e7cbf092fe0115c4d27fff1c48 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 26 Jul 2012 08:04:12 +0200 Subject: [PATCH 30/68] [tx-robot] updated from transifex --- apps/calendar/l10n/vi.php | 135 ++++++ apps/contacts/l10n/vi.php | 48 ++ apps/files/l10n/vi.php | 31 ++ apps/gallery/l10n/vi.php | 11 + apps/media/l10n/vi.php | 14 + core/l10n/vi.php | 64 +++ l10n/ar_SA/calendar.po | 814 ++++++++++++++++++++++++++++++++ l10n/ar_SA/contacts.po | 871 ++++++++++++++++++++++++++++++++++ l10n/ar_SA/core.po | 268 +++++++++++ l10n/ar_SA/files.po | 198 ++++++++ l10n/ar_SA/gallery.po | 58 +++ l10n/ar_SA/media.po | 66 +++ l10n/ar_SA/settings.po | 206 +++++++++ l10n/id_ID/calendar.po | 814 ++++++++++++++++++++++++++++++++ l10n/id_ID/contacts.po | 871 ++++++++++++++++++++++++++++++++++ l10n/id_ID/core.po | 268 +++++++++++ l10n/id_ID/files.po | 198 ++++++++ l10n/id_ID/gallery.po | 58 +++ l10n/id_ID/media.po | 66 +++ l10n/id_ID/settings.po | 206 +++++++++ l10n/so/calendar.po | 814 ++++++++++++++++++++++++++++++++ l10n/so/contacts.po | 871 ++++++++++++++++++++++++++++++++++ l10n/so/core.po | 268 +++++++++++ l10n/so/files.po | 198 ++++++++ l10n/so/gallery.po | 58 +++ l10n/so/media.po | 66 +++ l10n/so/settings.po | 206 +++++++++ l10n/templates/bookmarks.pot | 2 +- l10n/templates/calendar.pot | 2 +- l10n/templates/contacts.pot | 2 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/gallery.pot | 2 +- l10n/templates/lib.pot | 112 +++++ l10n/templates/media.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/vi/calendar.po | 816 ++++++++++++++++++++++++++++++++ l10n/vi/contacts.po | 872 +++++++++++++++++++++++++++++++++++ l10n/vi/core.po | 269 +++++++++++ l10n/vi/files.po | 199 ++++++++ l10n/vi/gallery.po | 60 +++ l10n/vi/media.po | 67 +++ l10n/vi/settings.po | 208 +++++++++ settings/l10n/vi.php | 48 ++ 44 files changed, 10405 insertions(+), 8 deletions(-) create mode 100644 apps/calendar/l10n/vi.php create mode 100644 apps/contacts/l10n/vi.php create mode 100644 apps/files/l10n/vi.php create mode 100644 apps/gallery/l10n/vi.php create mode 100644 apps/media/l10n/vi.php create mode 100644 core/l10n/vi.php create mode 100644 l10n/ar_SA/calendar.po create mode 100644 l10n/ar_SA/contacts.po create mode 100644 l10n/ar_SA/core.po create mode 100644 l10n/ar_SA/files.po create mode 100644 l10n/ar_SA/gallery.po create mode 100644 l10n/ar_SA/media.po create mode 100644 l10n/ar_SA/settings.po create mode 100644 l10n/id_ID/calendar.po create mode 100644 l10n/id_ID/contacts.po create mode 100644 l10n/id_ID/core.po create mode 100644 l10n/id_ID/files.po create mode 100644 l10n/id_ID/gallery.po create mode 100644 l10n/id_ID/media.po create mode 100644 l10n/id_ID/settings.po create mode 100644 l10n/so/calendar.po create mode 100644 l10n/so/contacts.po create mode 100644 l10n/so/core.po create mode 100644 l10n/so/files.po create mode 100644 l10n/so/gallery.po create mode 100644 l10n/so/media.po create mode 100644 l10n/so/settings.po create mode 100644 l10n/templates/lib.pot create mode 100644 l10n/vi/calendar.po create mode 100644 l10n/vi/contacts.po create mode 100644 l10n/vi/core.po create mode 100644 l10n/vi/files.po create mode 100644 l10n/vi/gallery.po create mode 100644 l10n/vi/media.po create mode 100644 l10n/vi/settings.po create mode 100644 settings/l10n/vi.php diff --git a/apps/calendar/l10n/vi.php b/apps/calendar/l10n/vi.php new file mode 100644 index 0000000000..059b89e163 --- /dev/null +++ b/apps/calendar/l10n/vi.php @@ -0,0 +1,135 @@ + "Không tìm thấy lịch.", +"No events found." => "Không tìm thấy sự kiện nào", +"Wrong calendar" => "Sai lịch", +"New Timezone:" => "Múi giờ mới :", +"Timezone changed" => "Thay đổi múi giờ", +"Invalid request" => "Yêu cầu không hợp lệ", +"Calendar" => "Lịch", +"ddd" => "ddd", +"ddd M/d" => "ddd M/d", +"dddd M/d" => "dddd M/d", +"MMMM yyyy" => "MMMM yyyy", +"MMM d[ yyyy]{ '—'[ MMM] d yyyy}" => "MMM d[ yyyy]{ '—'[ MMM] d yyyy}", +"dddd, MMM d, yyyy" => "dddd, MMM d, yyyy", +"Birthday" => "Ngày sinh nhật", +"Business" => "Công việc", +"Call" => "Số điện thoại", +"Clients" => "Máy trạm", +"Holidays" => "Ngày lễ", +"Ideas" => "Ý tưởng", +"Jubilee" => "Lễ kỷ niệm", +"Meeting" => "Hội nghị", +"Other" => "Khác", +"Personal" => "Cá nhân", +"Projects" => "Dự án", +"Questions" => "Câu hỏi", +"Work" => "Công việc", +"New Calendar" => "Lịch mới", +"Does not repeat" => "Không lặp lại", +"Daily" => "Hàng ngày", +"Weekly" => "Hàng tuần", +"Every Weekday" => "Mỗi ngày trong tuần", +"Bi-Weekly" => "Hai tuần một lần", +"Monthly" => "Hàng tháng", +"Yearly" => "Hàng năm", +"never" => "không thay đổi", +"by occurrences" => "bởi xuất hiện", +"by date" => "bởi ngày", +"by monthday" => "bởi ngày trong tháng", +"by weekday" => "bởi ngày trong tuần", +"Monday" => "Thứ 2", +"Tuesday" => "Thứ 3", +"Wednesday" => "Thứ 4", +"Thursday" => "Thứ 5", +"Friday" => "Thứ ", +"Saturday" => "Thứ 7", +"Sunday" => "Chủ nhật", +"events week of month" => "sự kiện trong tuần của tháng", +"first" => "đầu tiên", +"second" => "Thứ hai", +"third" => "Thứ ba", +"fourth" => "Thứ tư", +"fifth" => "Thứ năm", +"January" => "Tháng 1", +"February" => "Tháng 2", +"March" => "Tháng 3", +"April" => "Tháng 4", +"May" => "Tháng 5", +"June" => "Tháng 6", +"July" => "Tháng 7", +"August" => "Tháng 8", +"September" => "Tháng 9", +"October" => "Tháng 10", +"November" => "Tháng 11", +"December" => "Tháng 12", +"by events date" => "Theo ngày tháng sự kiện", +"by weeknumber(s)" => "số tuần", +"by day and month" => "ngày, tháng", +"Date" => "Ngày", +"Cal." => "Cal.", +"All day" => "Tất cả các ngày", +"Title" => "Tiêu đề", +"From Date" => "Từ ngày", +"From Time" => "Từ thời gian", +"To Date" => "Tới ngày", +"To Time" => "Tới thời gian", +"The event ends before it starts" => "Sự kiện này kết thúc trước khi nó bắt đầu", +"Week" => "Tuần", +"Month" => "Tháng", +"List" => "Danh sách", +"Today" => "Hôm nay", +"Calendars" => "Lịch", +"There was a fail, while parsing the file." => "Có một thất bại, trong khi phân tích các tập tin.", +"Choose active calendars" => "Chọn lịch hoạt động", +"Your calendars" => "Lịch của bạn", +"CalDav Link" => "Liên kết CalDav ", +"Shared calendars" => "Chia sẻ lịch", +"No shared calendars" => "Không chia sẻ lcihj", +"Share Calendar" => "Chia sẻ lịch", +"Download" => "Tải về", +"Edit" => "Chỉnh sửa", +"Delete" => "Xóa", +"shared with you by" => "Chia sẻ bởi", +"New calendar" => "Lịch mới", +"Edit calendar" => "sửa Lịch", +"Displayname" => "Hiển thị tên", +"Active" => "Kích hoạt", +"Calendar color" => "Màu lịch", +"Save" => "Lưu", +"Submit" => "Submit", +"Cancel" => "Hủy", +"Edit an event" => "Sửa sự kiện", +"Share" => "Chia sẻ", +"Title of the Event" => "Tên sự kiện", +"Category" => "Danh mục", +"All Day Event" => "Sự kiện trong ngày", +"From" => "Từ", +"To" => "Tới", +"Advanced options" => "Tùy chọn nâng cao", +"Location" => "Nơi", +"Location of the Event" => "Nơi tổ chức sự kiện", +"Description" => "Mô tả", +"Description of the Event" => "Mô tả sự kiện", +"Repeat" => "Lặp lại", +"Advanced" => "Nâng cao", +"Select weekdays" => "Chọn ngày trong tuần", +"Select days" => "Chọn ngày", +"and the events day of year." => "và sự kiện của ngày trong năm", +"and the events day of month." => "và sự kiện của một ngày trong năm", +"Select months" => "Chọn tháng", +"Select weeks" => "Chọn tuần", +"and the events week of year." => "và sự kiện của tuần trong năm.", +"create a new calendar" => "Tạo lịch mới", +"Name of new calendar" => "Tên lịch mới", +"Close Dialog" => "Đóng hộp thoại", +"Create a new event" => "Tạo một sự kiện mới", +"View an event" => "Xem một sự kiện", +"No categories selected" => "Không danh sách nào được chọn", +"of" => "của", +"at" => "tại", +"Timezone" => "Múi giờ", +"Check always for changes of the timezone" => "Luôn kiểm tra múi giờ", +"24h" => "24h", +"12h" => "12h" +); diff --git a/apps/contacts/l10n/vi.php b/apps/contacts/l10n/vi.php new file mode 100644 index 0000000000..5713ede7b0 --- /dev/null +++ b/apps/contacts/l10n/vi.php @@ -0,0 +1,48 @@ + "tên phần tử không được thiết lập.", +"id is not set." => "id không được thiết lập.", +"No ID provided" => "Không có ID được cung cấp", +"No address books found." => "Không tìm thấy sổ địa chỉ.", +"No contacts found." => "Không tìm thấy danh sách", +"Missing ID" => "Missing ID", +"Error reading contact photo." => "Lỗi đọc liên lạc hình ảnh.", +"The loading photo is not valid." => "Các hình ảnh tải không hợp lệ.", +"File doesn't exist:" => "Tập tin không tồn tại", +"Error loading image." => "Lỗi khi tải hình ảnh.", +"Error uploading contacts to storage." => "Lỗi tải lên danh sách địa chỉ để lưu trữ.", +"There is no error, the file uploaded with success" => "Không có lỗi, các tập tin tải lên thành công", +"Contacts" => "Liên lạc", +"Contact" => "Danh sách", +"Address" => "Địa chỉ", +"Telephone" => "Điện thoại bàn", +"Email" => "Email", +"Organization" => "Tổ chức", +"Work" => "Công việc", +"Home" => "Nhà", +"Mobile" => "Di động", +"Fax" => "Fax", +"Video" => "Video", +"Pager" => "số trang", +"Birthday" => "Ngày sinh nhật", +"Add Contact" => "Thêm liên lạc", +"Addressbooks" => "Sổ địa chỉ", +"CardDav Link" => "CardDav Link", +"Download" => "Tải về", +"Edit" => "Sửa", +"Delete" => "Xóa", +"Phone" => "Điện thoại", +"Delete contact" => "Xóa liên lạc", +"PO Box" => "Hòm thư bưu điện", +"City" => "Thành phố", +"Region" => "Vùng/miền", +"Zipcode" => "Mã bưu điện", +"Country" => "Quốc gia", +"Addressbook" => "Sổ địa chỉ", +"New Addressbook" => "Sổ địa chỉ mới", +"Edit Addressbook" => "Sửa sổ địa chỉ", +"Displayname" => "Hiển thị tên", +"Active" => "Kích hoạt", +"Save" => "Lưu", +"Submit" => "Submit", +"Cancel" => "Hủy" +); diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php new file mode 100644 index 0000000000..c2284d5feb --- /dev/null +++ b/apps/files/l10n/vi.php @@ -0,0 +1,31 @@ + "Tập tin", +"Delete" => "Xóa", +"Upload Error" => "Tải lên lỗi", +"Pending" => "Chờ", +"Upload cancelled." => "Hủy tải lên", +"Invalid name, '/' is not allowed." => "Tên không hợp lệ ,không được phép dùng '/'", +"Size" => "Kích cỡ", +"Modified" => "Thay đổi", +"folder" => "folder", +"folders" => "folders", +"file" => "file", +"files" => "files", +"File handling" => "Xử lý tập tin", +"Maximum upload size" => "Kích thước tối đa ", +"Enable ZIP-download" => "Cho phép ZIP-download", +"0 is unlimited" => "0 là không giới hạn", +"Maximum input size for ZIP files" => "Kích thước tối đa cho các tập tin ZIP", +"New" => "Mới", +"Text file" => "Tập tin văn bản", +"Folder" => "Folder", +"From url" => "Từ url", +"Upload" => "Tải lên", +"Cancel upload" => "Hủy upload", +"Nothing in here. Upload something!" => "Không có gì ở đây .Hãy tải lên một cái gì đó !", +"Name" => "Tên", +"Share" => "Chia sẻ", +"Download" => "Tải xuống", +"Upload too large" => "File tải lên quá lớn", +"Files are being scanned, please wait." => "Tập tin đang được quét ,vui lòng chờ." +); diff --git a/apps/gallery/l10n/vi.php b/apps/gallery/l10n/vi.php new file mode 100644 index 0000000000..d1d7fc64fc --- /dev/null +++ b/apps/gallery/l10n/vi.php @@ -0,0 +1,11 @@ + "Hình ảnh", +"Share gallery" => "Chia sẻ gallery", +"Error: " => "Lỗi :", +"Internal error" => "Lỗi nội bộ", +"Back" => "Trở lại", +"Remove confirmation" => "Xóa xác nhận", +"Do you want to remove album" => "Bạn muốn xóa album này ", +"Change album name" => "Đổi tên album", +"New album name" => "Tên album mới" +); diff --git a/apps/media/l10n/vi.php b/apps/media/l10n/vi.php new file mode 100644 index 0000000000..01942ba173 --- /dev/null +++ b/apps/media/l10n/vi.php @@ -0,0 +1,14 @@ + "Âm nhạc", +"Add album to playlist" => "Thêm album vào playlist", +"Play" => "Play", +"Pause" => "Tạm dừng", +"Previous" => "Trang trước", +"Next" => "Tiếp theo", +"Mute" => "Tắt", +"Unmute" => "Bật", +"Rescan Collection" => "Quét lại bộ sưu tập", +"Artist" => "Nghệ sỹ", +"Album" => "Album", +"Title" => "Tiêu đề" +); diff --git a/core/l10n/vi.php b/core/l10n/vi.php new file mode 100644 index 0000000000..b0b750303a --- /dev/null +++ b/core/l10n/vi.php @@ -0,0 +1,64 @@ + "Tên ứng dụng không tồn tại", +"No category to add?" => "Không có danh mục được thêm?", +"This category already exists: " => "Danh mục này đã được tạo :", +"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", +"January" => "Tháng 1", +"February" => "Tháng 2", +"March" => "Tháng 3", +"April" => "Tháng 4", +"May" => "Tháng 5", +"June" => "Tháng 6", +"July" => "Tháng 7", +"August" => "Tháng 8", +"September" => "Tháng 9", +"October" => "Tháng 10", +"November" => "Tháng 11", +"December" => "Tháng 12", +"Cancel" => "Hủy", +"No" => "No", +"Yes" => "Yes", +"Ok" => "Ok", +"No categories selected for deletion." => "Không có thể loại nào được chọn để xóa.", +"Error" => "Lỗi", +"ownCloud password reset" => "Khôi phục mật khẩu Owncloud ", +"Use the following link to reset your password: {link}" => "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}", +"You will receive a link to reset your password via Email." => "Vui lòng kiểm tra Email để khôi phục lại mật khẩu.", +"Requested" => "Yêu cầu", +"Login failed!" => "Bạn đã nhập sai mật khẩu hay tên người dùng !", +"Username" => "Tên người dùng", +"Request reset" => "Yêu cầu thiết lập lại ", +"Your password was reset" => "Mật khẩu của bạn đã được khôi phục", +"To login page" => "Trang đăng nhập", +"New password" => "Mật khẩu mới", +"Reset password" => "Khôi phục mật khẩu", +"Personal" => "Cá nhân", +"Users" => "Người sử dụng", +"Apps" => "Ứng dụng", +"Admin" => "Quản trị", +"Help" => "Giúp đỡ", +"Access forbidden" => "Truy cập bị cấm ", +"Cloud not found" => "Không tìm thấy Clound", +"Edit categories" => "Sửa thể loại", +"Add" => "Thêm", +"Create an admin account" => "Tạo một tài khoản quản trị", +"Password" => "Mật khẩu", +"Advanced" => "Nâng cao", +"Data folder" => "Thư mục dữ liệu", +"Configure the database" => "Cấu hình Cơ Sở Dữ Liệu", +"will be used" => "được sử dụng", +"Database user" => "Người dùng cơ sở dữ liệu", +"Database password" => "Mật khẩu cơ sở dữ liệu", +"Database name" => "Tên cơ sở dữ liệu", +"Database host" => "Database host", +"Finish setup" => "Cài đặt hoàn tất", +"web services under your control" => "các dịch vụ web dưới sự kiểm soát của bạn", +"Log out" => "Đăng xuất", +"Settings" => "Cài đặt", +"Lost your password?" => "Bạn quên mật khẩu ?", +"remember" => "Nhớ", +"Log in" => "Đăng nhập", +"You are logged out." => "Bạn đã đăng xuất.", +"prev" => "Lùi lại", +"next" => "Kế tiếp" +); diff --git a/l10n/ar_SA/calendar.po b/l10n/ar_SA/calendar.po new file mode 100644 index 0000000000..32a7e56e62 --- /dev/null +++ b/l10n/ar_SA/calendar.po @@ -0,0 +1,814 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_SA\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/cache/status.php:19 +msgid "Not all calendars are completely cached" +msgstr "" + +#: ajax/cache/status.php:21 +msgid "Everything seems to be completely cached" +msgstr "" + +#: ajax/categories/rescan.php:29 +msgid "No calendars found." +msgstr "" + +#: ajax/categories/rescan.php:37 +msgid "No events found." +msgstr "" + +#: ajax/event/edit.form.php:20 +msgid "Wrong calendar" +msgstr "" + +#: ajax/import/dropimport.php:29 ajax/import/import.php:64 +msgid "" +"The file contained either no events or all events are already saved in your " +"calendar." +msgstr "" + +#: ajax/import/dropimport.php:31 ajax/import/import.php:67 +msgid "events has been saved in the new calendar" +msgstr "" + +#: ajax/import/import.php:56 +msgid "Import failed" +msgstr "" + +#: ajax/import/import.php:69 +msgid "events has been saved in your calendar" +msgstr "" + +#: ajax/settings/guesstimezone.php:25 +msgid "New Timezone:" +msgstr "" + +#: ajax/settings/settimezone.php:23 +msgid "Timezone changed" +msgstr "" + +#: ajax/settings/settimezone.php:25 +msgid "Invalid request" +msgstr "" + +#: appinfo/app.php:35 templates/calendar.php:15 +#: templates/part.eventform.php:33 templates/part.showevent.php:33 +#: templates/settings.php:12 +msgid "Calendar" +msgstr "" + +#: js/calendar.js:828 +msgid "ddd" +msgstr "" + +#: js/calendar.js:829 +msgid "ddd M/d" +msgstr "" + +#: js/calendar.js:830 +msgid "dddd M/d" +msgstr "" + +#: js/calendar.js:833 +msgid "MMMM yyyy" +msgstr "" + +#: js/calendar.js:835 +msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" +msgstr "" + +#: js/calendar.js:837 +msgid "dddd, MMM d, yyyy" +msgstr "" + +#: lib/app.php:121 +msgid "Birthday" +msgstr "" + +#: lib/app.php:122 +msgid "Business" +msgstr "" + +#: lib/app.php:123 +msgid "Call" +msgstr "" + +#: lib/app.php:124 +msgid "Clients" +msgstr "" + +#: lib/app.php:125 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:126 +msgid "Holidays" +msgstr "" + +#: lib/app.php:127 +msgid "Ideas" +msgstr "" + +#: lib/app.php:128 +msgid "Journey" +msgstr "" + +#: lib/app.php:129 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:130 +msgid "Meeting" +msgstr "" + +#: lib/app.php:131 +msgid "Other" +msgstr "" + +#: lib/app.php:132 +msgid "Personal" +msgstr "" + +#: lib/app.php:133 +msgid "Projects" +msgstr "" + +#: lib/app.php:134 +msgid "Questions" +msgstr "" + +#: lib/app.php:135 +msgid "Work" +msgstr "" + +#: lib/app.php:351 lib/app.php:361 +msgid "by" +msgstr "" + +#: lib/app.php:359 lib/app.php:399 +msgid "unnamed" +msgstr "" + +#: lib/import.php:184 templates/calendar.php:12 +#: templates/part.choosecalendar.php:22 +msgid "New Calendar" +msgstr "" + +#: lib/object.php:372 +msgid "Does not repeat" +msgstr "" + +#: lib/object.php:373 +msgid "Daily" +msgstr "" + +#: lib/object.php:374 +msgid "Weekly" +msgstr "" + +#: lib/object.php:375 +msgid "Every Weekday" +msgstr "" + +#: lib/object.php:376 +msgid "Bi-Weekly" +msgstr "" + +#: lib/object.php:377 +msgid "Monthly" +msgstr "" + +#: lib/object.php:378 +msgid "Yearly" +msgstr "" + +#: lib/object.php:388 +msgid "never" +msgstr "" + +#: lib/object.php:389 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:390 +msgid "by date" +msgstr "" + +#: lib/object.php:400 +msgid "by monthday" +msgstr "" + +#: lib/object.php:401 +msgid "by weekday" +msgstr "" + +#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 +msgid "Monday" +msgstr "" + +#: lib/object.php:412 templates/calendar.php:5 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:413 templates/calendar.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:414 templates/calendar.php:5 +msgid "Thursday" +msgstr "" + +#: lib/object.php:415 templates/calendar.php:5 +msgid "Friday" +msgstr "" + +#: lib/object.php:416 templates/calendar.php:5 +msgid "Saturday" +msgstr "" + +#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 +msgid "Sunday" +msgstr "" + +#: lib/object.php:427 +msgid "events week of month" +msgstr "" + +#: lib/object.php:428 +msgid "first" +msgstr "" + +#: lib/object.php:429 +msgid "second" +msgstr "" + +#: lib/object.php:430 +msgid "third" +msgstr "" + +#: lib/object.php:431 +msgid "fourth" +msgstr "" + +#: lib/object.php:432 +msgid "fifth" +msgstr "" + +#: lib/object.php:433 +msgid "last" +msgstr "" + +#: lib/object.php:467 templates/calendar.php:7 +msgid "January" +msgstr "" + +#: lib/object.php:468 templates/calendar.php:7 +msgid "February" +msgstr "" + +#: lib/object.php:469 templates/calendar.php:7 +msgid "March" +msgstr "" + +#: lib/object.php:470 templates/calendar.php:7 +msgid "April" +msgstr "" + +#: lib/object.php:471 templates/calendar.php:7 +msgid "May" +msgstr "" + +#: lib/object.php:472 templates/calendar.php:7 +msgid "June" +msgstr "" + +#: lib/object.php:473 templates/calendar.php:7 +msgid "July" +msgstr "" + +#: lib/object.php:474 templates/calendar.php:7 +msgid "August" +msgstr "" + +#: lib/object.php:475 templates/calendar.php:7 +msgid "September" +msgstr "" + +#: lib/object.php:476 templates/calendar.php:7 +msgid "October" +msgstr "" + +#: lib/object.php:477 templates/calendar.php:7 +msgid "November" +msgstr "" + +#: lib/object.php:478 templates/calendar.php:7 +msgid "December" +msgstr "" + +#: lib/object.php:488 +msgid "by events date" +msgstr "" + +#: lib/object.php:489 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:490 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:491 +msgid "by day and month" +msgstr "" + +#: lib/search.php:35 lib/search.php:37 lib/search.php:40 +msgid "Date" +msgstr "" + +#: lib/search.php:43 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:6 +msgid "Sun." +msgstr "" + +#: templates/calendar.php:6 +msgid "Mon." +msgstr "" + +#: templates/calendar.php:6 +msgid "Tue." +msgstr "" + +#: templates/calendar.php:6 +msgid "Wed." +msgstr "" + +#: templates/calendar.php:6 +msgid "Thu." +msgstr "" + +#: templates/calendar.php:6 +msgid "Fri." +msgstr "" + +#: templates/calendar.php:6 +msgid "Sat." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jan." +msgstr "" + +#: templates/calendar.php:8 +msgid "Feb." +msgstr "" + +#: templates/calendar.php:8 +msgid "Mar." +msgstr "" + +#: templates/calendar.php:8 +msgid "Apr." +msgstr "" + +#: templates/calendar.php:8 +msgid "May." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jun." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jul." +msgstr "" + +#: templates/calendar.php:8 +msgid "Aug." +msgstr "" + +#: templates/calendar.php:8 +msgid "Sep." +msgstr "" + +#: templates/calendar.php:8 +msgid "Oct." +msgstr "" + +#: templates/calendar.php:8 +msgid "Nov." +msgstr "" + +#: templates/calendar.php:8 +msgid "Dec." +msgstr "" + +#: templates/calendar.php:11 +msgid "All day" +msgstr "" + +#: templates/calendar.php:13 +msgid "Missing fields" +msgstr "" + +#: templates/calendar.php:14 templates/part.eventform.php:19 +#: templates/part.showevent.php:11 +msgid "Title" +msgstr "" + +#: templates/calendar.php:16 +msgid "From Date" +msgstr "" + +#: templates/calendar.php:17 +msgid "From Time" +msgstr "" + +#: templates/calendar.php:18 +msgid "To Date" +msgstr "" + +#: templates/calendar.php:19 +msgid "To Time" +msgstr "" + +#: templates/calendar.php:20 +msgid "The event ends before it starts" +msgstr "" + +#: templates/calendar.php:21 +msgid "There was a database fail" +msgstr "" + +#: templates/calendar.php:38 +msgid "Week" +msgstr "" + +#: templates/calendar.php:39 +msgid "Month" +msgstr "" + +#: templates/calendar.php:40 +msgid "List" +msgstr "" + +#: templates/calendar.php:44 +msgid "Today" +msgstr "" + +#: templates/calendar.php:45 +msgid "Calendars" +msgstr "" + +#: templates/calendar.php:59 +msgid "There was a fail, while parsing the file." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "" + +#: templates/part.choosecalendar.php:2 +msgid "Your calendars" +msgstr "" + +#: templates/part.choosecalendar.php:27 +#: templates/part.choosecalendar.rowfields.php:11 +msgid "CalDav Link" +msgstr "" + +#: templates/part.choosecalendar.php:31 +msgid "Shared calendars" +msgstr "" + +#: templates/part.choosecalendar.php:48 +msgid "No shared calendars" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:8 +msgid "Share Calendar" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:14 +msgid "Download" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:17 +msgid "Edit" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:20 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "" + +#: templates/part.choosecalendar.rowfields.shared.php:4 +msgid "shared with you by" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" + +#: templates/part.eventform.php:8 templates/part.showevent.php:3 +msgid "Eventinfo" +msgstr "" + +#: templates/part.eventform.php:9 templates/part.showevent.php:4 +msgid "Repeating" +msgstr "" + +#: templates/part.eventform.php:10 templates/part.showevent.php:5 +msgid "Alarm" +msgstr "" + +#: templates/part.eventform.php:11 templates/part.showevent.php:6 +msgid "Attendees" +msgstr "" + +#: templates/part.eventform.php:13 +msgid "Share" +msgstr "" + +#: templates/part.eventform.php:21 +msgid "Title of the Event" +msgstr "" + +#: templates/part.eventform.php:27 templates/part.showevent.php:19 +msgid "Category" +msgstr "" + +#: templates/part.eventform.php:29 +msgid "Separate categories with commas" +msgstr "" + +#: templates/part.eventform.php:30 +msgid "Edit categories" +msgstr "" + +#: templates/part.eventform.php:56 templates/part.showevent.php:52 +msgid "All Day Event" +msgstr "" + +#: templates/part.eventform.php:60 templates/part.showevent.php:56 +msgid "From" +msgstr "" + +#: templates/part.eventform.php:68 templates/part.showevent.php:64 +msgid "To" +msgstr "" + +#: templates/part.eventform.php:76 templates/part.showevent.php:72 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:81 templates/part.showevent.php:77 +msgid "Location" +msgstr "" + +#: templates/part.eventform.php:83 +msgid "Location of the Event" +msgstr "" + +#: templates/part.eventform.php:89 templates/part.showevent.php:85 +msgid "Description" +msgstr "" + +#: templates/part.eventform.php:91 +msgid "Description of the Event" +msgstr "" + +#: templates/part.eventform.php:100 templates/part.showevent.php:95 +msgid "Repeat" +msgstr "" + +#: templates/part.eventform.php:107 templates/part.showevent.php:102 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:151 templates/part.showevent.php:146 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:164 templates/part.eventform.php:177 +#: templates/part.showevent.php:159 templates/part.showevent.php:172 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:169 templates/part.showevent.php:164 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:182 templates/part.showevent.php:177 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:190 templates/part.showevent.php:185 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:203 templates/part.showevent.php:198 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:208 templates/part.showevent.php:203 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:214 templates/part.showevent.php:209 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:220 templates/part.showevent.php:215 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:233 templates/part.showevent.php:228 +msgid "occurrences" +msgstr "" + +#: templates/part.import.php:14 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:24 +msgid "Please choose a calendar" +msgstr "" + +#: templates/part.import.php:36 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:44 +msgid "Take an available name!" +msgstr "" + +#: templates/part.import.php:45 +msgid "" +"A Calendar with this name already exists. If you continue anyhow, these " +"calendars will be merged." +msgstr "" + +#: templates/part.import.php:47 +msgid "Import" +msgstr "" + +#: templates/part.import.php:56 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "" + +#: templates/part.showevent.php:1 +msgid "View an event" +msgstr "" + +#: templates/part.showevent.php:23 +msgid "No categories selected" +msgstr "" + +#: templates/part.showevent.php:37 +msgid "of" +msgstr "" + +#: templates/part.showevent.php:59 templates/part.showevent.php:67 +msgid "at" +msgstr "" + +#: templates/settings.php:14 +msgid "Timezone" +msgstr "" + +#: templates/settings.php:31 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:33 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:35 +msgid "24h" +msgstr "" + +#: templates/settings.php:36 +msgid "12h" +msgstr "" + +#: templates/settings.php:40 +msgid "First day of the week" +msgstr "" + +#: templates/settings.php:47 +msgid "Cache" +msgstr "" + +#: templates/settings.php:48 +msgid "Clear cache for repeating events" +msgstr "" + +#: templates/settings.php:53 +msgid "Calendar CalDAV syncing addresses" +msgstr "" + +#: templates/settings.php:53 +msgid "more info" +msgstr "" + +#: templates/settings.php:55 +msgid "Primary address (Kontact et al)" +msgstr "" + +#: templates/settings.php:57 +msgid "iOS/OS X" +msgstr "" + +#: templates/settings.php:59 +msgid "Read only iCalendar link(s)" +msgstr "" + +#: templates/share.dropdown.php:20 +msgid "Users" +msgstr "" + +#: templates/share.dropdown.php:21 +msgid "select users" +msgstr "" + +#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 +msgid "Editable" +msgstr "" + +#: templates/share.dropdown.php:48 +msgid "Groups" +msgstr "" + +#: templates/share.dropdown.php:49 +msgid "select groups" +msgstr "" + +#: templates/share.dropdown.php:75 +msgid "make public" +msgstr "" diff --git a/l10n/ar_SA/contacts.po b/l10n/ar_SA/contacts.po new file mode 100644 index 0000000000..16f62d246d --- /dev/null +++ b/l10n/ar_SA/contacts.po @@ -0,0 +1,871 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_SA\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcontact.php:47 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "" + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "" + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "" + +#: ajax/addproperty.php:56 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:67 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:76 +msgid "Trying to add duplicate property: " +msgstr "" + +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "" + +#: ajax/categories/categoriesfor.php:17 +msgid "No ID provided" +msgstr "" + +#: ajax/categories/categoriesfor.php:34 +msgid "Error setting checksum." +msgstr "" + +#: ajax/categories/delete.php:19 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/categories/delete.php:26 +msgid "No address books found." +msgstr "" + +#: ajax/categories/delete.php:34 +msgid "No contacts found." +msgstr "" + +#: ajax/contactdetails.php:31 +msgid "Missing ID" +msgstr "" + +#: ajax/contactdetails.php:36 +msgid "Error parsing VCard for ID: \"" +msgstr "" + +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 +#: ajax/uploadphoto.php:68 +msgid "No contact ID was submitted." +msgstr "" + +#: ajax/currentphoto.php:36 +msgid "Error reading contact photo." +msgstr "" + +#: ajax/currentphoto.php:48 +msgid "Error saving temporary file." +msgstr "" + +#: ajax/currentphoto.php:51 +msgid "The loading photo is not valid." +msgstr "" + +#: ajax/deleteproperty.php:36 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: ajax/deleteproperty.php:43 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/editname.php:31 +msgid "Contact ID is missing." +msgstr "" + +#: ajax/oc_photo.php:32 +msgid "No photo path was submitted." +msgstr "" + +#: ajax/oc_photo.php:39 +msgid "File doesn't exist:" +msgstr "" + +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 +msgid "Error loading image." +msgstr "" + +#: ajax/savecrop.php:67 +msgid "Error getting contact object." +msgstr "" + +#: ajax/savecrop.php:76 +msgid "Error getting PHOTO property." +msgstr "" + +#: ajax/savecrop.php:93 +msgid "Error saving contact." +msgstr "" + +#: ajax/savecrop.php:103 +msgid "Error resizing image" +msgstr "" + +#: ajax/savecrop.php:106 +msgid "Error cropping image" +msgstr "" + +#: ajax/savecrop.php:109 +msgid "Error creating temporary image" +msgstr "" + +#: ajax/savecrop.php:112 +msgid "Error finding image: " +msgstr "" + +#: ajax/saveproperty.php:40 +msgid "checksum is not set." +msgstr "" + +#: ajax/saveproperty.php:59 +msgid "Information about vCard is incorrect. Please reload the page: " +msgstr "" + +#: ajax/saveproperty.php:64 +msgid "Something went FUBAR. " +msgstr "" + +#: ajax/saveproperty.php:133 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:21 +msgid "Cannot update addressbook with an empty name." +msgstr "" + +#: ajax/updateaddressbook.php:25 +msgid "Error updating addressbook." +msgstr "" + +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 +msgid "Error uploading contacts to storage." +msgstr "" + +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 +msgid "No file was uploaded" +msgstr "" + +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 +msgid "Couldn't save temporary image: " +msgstr "" + +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 +msgid "Couldn't load temporary image: " +msgstr "" + +#: ajax/uploadphoto.php:71 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: appinfo/app.php:19 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: js/contacts.js:53 +msgid "Sorry, this functionality has not been implemented yet" +msgstr "" + +#: js/contacts.js:53 +msgid "Not implemented" +msgstr "" + +#: js/contacts.js:58 +msgid "Couldn't get a valid address." +msgstr "" + +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 +msgid "Error" +msgstr "" + +#: js/contacts.js:389 lib/search.php:15 +msgid "Contact" +msgstr "" + +#: js/contacts.js:389 +msgid "New" +msgstr "" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "" + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "" + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "" + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "" + +#: js/loader.js:49 +msgid "Result: " +msgstr "" + +#: js/loader.js:49 +msgid " imported, " +msgstr "" + +#: js/loader.js:49 +msgid " failed." +msgstr "" + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "" + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "" + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "" + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "" + +#: lib/app.php:123 +msgid "Text" +msgstr "" + +#: lib/app.php:124 +msgid "Voice" +msgstr "" + +#: lib/app.php:125 +msgid "Message" +msgstr "" + +#: lib/app.php:126 +msgid "Fax" +msgstr "" + +#: lib/app.php:127 +msgid "Video" +msgstr "" + +#: lib/app.php:128 +msgid "Pager" +msgstr "" + +#: lib/app.php:134 +msgid "Internet" +msgstr "" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "" + +#: lib/app.php:170 +msgid "Business" +msgstr "" + +#: lib/app.php:171 +msgid "Call" +msgstr "" + +#: lib/app.php:172 +msgid "Clients" +msgstr "" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "" + +#: lib/app.php:176 +msgid "Journey" +msgstr "" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "" + +#: lib/app.php:179 +msgid "Other" +msgstr "" + +#: lib/app.php:180 +msgid "Personal" +msgstr "" + +#: lib/app.php:181 +msgid "Projects" +msgstr "" + +#: lib/app.php:182 +msgid "Questions" +msgstr "" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "" + +#: templates/index.php:15 +msgid "Add Contact" +msgstr "" + +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/index.php:20 +msgid "Addressbooks" +msgstr "" + +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "" + +#: templates/index.php:54 +msgid "Actions" +msgstr "" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Configure Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:8 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:11 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:14 +msgid "Edit" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:17 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 +msgid "Delete" +msgstr "" + +#: templates/part.contact.php:16 +msgid "Drop photo to upload" +msgstr "" + +#: templates/part.contact.php:18 +msgid "Delete current photo" +msgstr "" + +#: templates/part.contact.php:19 +msgid "Edit current photo" +msgstr "" + +#: templates/part.contact.php:20 +msgid "Upload new photo" +msgstr "" + +#: templates/part.contact.php:21 +msgid "Select photo from ownCloud" +msgstr "" + +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr "" + +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" +msgstr "" + +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "" + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "" + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "" + +#: templates/part.edit_address_dialog.php:6 +msgid "Edit address" +msgstr "" + +#: templates/part.edit_address_dialog.php:10 +msgid "Type" +msgstr "" + +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 +msgid "PO Box" +msgstr "" + +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "" + +#: templates/part.edit_address_dialog.php:30 +msgid "Extended" +msgstr "" + +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "" + +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 +msgid "City" +msgstr "" + +#: templates/part.edit_address_dialog.php:42 +msgid "Region" +msgstr "" + +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "" + +#: templates/part.edit_address_dialog.php:48 +msgid "Zipcode" +msgstr "" + +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 +msgid "Country" +msgstr "" + +#: templates/part.edit_name_dialog.php:16 +msgid "Addressbook" +msgstr "" + +#: templates/part.edit_name_dialog.php:23 +msgid "Hon. prefixes" +msgstr "" + +#: templates/part.edit_name_dialog.php:27 +msgid "Miss" +msgstr "" + +#: templates/part.edit_name_dialog.php:28 +msgid "Ms" +msgstr "" + +#: templates/part.edit_name_dialog.php:29 +msgid "Mr" +msgstr "" + +#: templates/part.edit_name_dialog.php:30 +msgid "Sir" +msgstr "" + +#: templates/part.edit_name_dialog.php:31 +msgid "Mrs" +msgstr "" + +#: templates/part.edit_name_dialog.php:32 +msgid "Dr" +msgstr "" + +#: templates/part.edit_name_dialog.php:35 +msgid "Given name" +msgstr "" + +#: templates/part.edit_name_dialog.php:37 +msgid "Additional names" +msgstr "" + +#: templates/part.edit_name_dialog.php:39 +msgid "Family name" +msgstr "" + +#: templates/part.edit_name_dialog.php:41 +msgid "Hon. suffixes" +msgstr "" + +#: templates/part.edit_name_dialog.php:45 +msgid "J.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:46 +msgid "M.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:47 +msgid "D.O." +msgstr "" + +#: templates/part.edit_name_dialog.php:48 +msgid "D.C." +msgstr "" + +#: templates/part.edit_name_dialog.php:49 +msgid "Ph.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:50 +msgid "Esq." +msgstr "" + +#: templates/part.edit_name_dialog.php:51 +msgid "Jr." +msgstr "" + +#: templates/part.edit_name_dialog.php:52 +msgid "Sn." +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.import.php:1 +msgid "Import a contacts file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the addressbook" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new addressbook" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new addressbook" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing contacts" +msgstr "" + +#: templates/part.no_contacts.php:2 +msgid "You have no contacts in your addressbook." +msgstr "" + +#: templates/part.no_contacts.php:4 +msgid "Add contact" +msgstr "" + +#: templates/part.no_contacts.php:5 +msgid "Configure addressbooks" +msgstr "" + +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing addresses" +msgstr "" + +#: templates/settings.php:4 +msgid "more info" +msgstr "" + +#: templates/settings.php:6 +msgid "Primary address (Kontact et al)" +msgstr "" + +#: templates/settings.php:8 +msgid "iOS/OS X" +msgstr "" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "" diff --git a/l10n/ar_SA/core.po b/l10n/ar_SA/core.po new file mode 100644 index 0000000000..5c1cf5518c --- /dev/null +++ b/l10n/ar_SA/core.po @@ -0,0 +1,268 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:28+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_SA\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "" + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "" + +#: js/jquery-ui-1.8.16.custom.min.js:511 +msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" +msgstr "" + +#: js/js.js:519 +msgid "January" +msgstr "" + +#: js/js.js:519 +msgid "February" +msgstr "" + +#: js/js.js:519 +msgid "March" +msgstr "" + +#: js/js.js:519 +msgid "April" +msgstr "" + +#: js/js.js:519 +msgid "May" +msgstr "" + +#: js/js.js:519 +msgid "June" +msgstr "" + +#: js/js.js:520 +msgid "July" +msgstr "" + +#: js/js.js:520 +msgid "August" +msgstr "" + +#: js/js.js:520 +msgid "September" +msgstr "" + +#: js/js.js:520 +msgid "October" +msgstr "" + +#: js/js.js:520 +msgid "November" +msgstr "" + +#: js/js.js:520 +msgid "December" +msgstr "" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "Error" +msgstr "" + +#: lostpassword/index.php:26 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +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 "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:25 +#: templates/login.php:9 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +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:14 +msgid "Add" +msgstr "" + +#: templates/installation.php:23 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:29 templates/login.php:13 +msgid "Password" +msgstr "" + +#: templates/installation.php:35 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:37 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:44 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:49 templates/installation.php:60 +#: templates/installation.php:70 +msgid "will be used" +msgstr "" + +#: templates/installation.php:82 +msgid "Database user" +msgstr "" + +#: templates/installation.php:86 +msgid "Database password" +msgstr "" + +#: templates/installation.php:90 +msgid "Database name" +msgstr "" + +#: templates/installation.php:96 +msgid "Database host" +msgstr "" + +#: templates/installation.php:101 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:49 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:64 templates/layout.user.php:65 +msgid "Settings" +msgstr "" + +#: templates/login.php:6 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:17 +msgid "remember" +msgstr "" + +#: templates/login.php:18 +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 "" diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po new file mode 100644 index 0000000000..3b87221937 --- /dev/null +++ b/l10n/ar_SA/files.po @@ -0,0 +1,198 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_SA\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:22 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:23 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "" + +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "" + +#: js/filelist.js:186 +msgid "undo deletion" +msgstr "" + +#: js/files.js:170 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:199 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:199 +msgid "Upload Error" +msgstr "" + +#: js/files.js:227 js/files.js:318 js/files.js:347 +msgid "Pending" +msgstr "" + +#: js/files.js:332 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:456 +msgid "Invalid name, '/' is not allowed." +msgstr "" + +#: js/files.js:631 templates/index.php:55 +msgid "Size" +msgstr "" + +#: js/files.js:632 templates/index.php:56 +msgid "Modified" +msgstr "" + +#: js/files.js:659 +msgid "folder" +msgstr "" + +#: js/files.js:661 +msgid "folders" +msgstr "" + +#: js/files.js:669 +msgid "file" +msgstr "" + +#: js/files.js:671 +msgid "files" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:11 +msgid "From url" +msgstr "" + +#: templates/index.php:21 +msgid "Upload" +msgstr "" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:39 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:47 +msgid "Name" +msgstr "" + +#: templates/index.php:49 +msgid "Share" +msgstr "" + +#: templates/index.php:51 +msgid "Download" +msgstr "" + +#: templates/index.php:64 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:66 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:71 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:74 +msgid "Current scanning" +msgstr "" diff --git a/l10n/ar_SA/gallery.po b/l10n/ar_SA/gallery.po new file mode 100644 index 0000000000..9d60ea7bc6 --- /dev/null +++ b/l10n/ar_SA/gallery.po @@ -0,0 +1,58 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_SA\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:39 +msgid "Pictures" +msgstr "" + +#: js/pictures.js:12 +msgid "Share gallery" +msgstr "" + +#: js/pictures.js:32 +msgid "Error: " +msgstr "" + +#: js/pictures.js:32 +msgid "Internal error" +msgstr "" + +#: templates/index.php:27 +msgid "Slideshow" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + +#: templates/view_album.php:36 +msgid "Remove confirmation" +msgstr "" + +#: templates/view_album.php:37 +msgid "Do you want to remove album" +msgstr "" + +#: templates/view_album.php:40 +msgid "Change album name" +msgstr "" + +#: templates/view_album.php:43 +msgid "New album name" +msgstr "" diff --git a/l10n/ar_SA/media.po b/l10n/ar_SA/media.po new file mode 100644 index 0000000000..9f152efa42 --- /dev/null +++ b/l10n/ar_SA/media.po @@ -0,0 +1,66 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_SA\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:45 templates/player.php:8 +msgid "Music" +msgstr "" + +#: js/music.js:18 +msgid "Add album to playlist" +msgstr "" + +#: templates/music.php:3 templates/player.php:12 +msgid "Play" +msgstr "" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:13 +msgid "Pause" +msgstr "" + +#: templates/music.php:5 +msgid "Previous" +msgstr "" + +#: templates/music.php:6 templates/player.php:14 +msgid "Next" +msgstr "" + +#: templates/music.php:7 +msgid "Mute" +msgstr "" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "" + +#: templates/music.php:37 +msgid "Artist" +msgstr "" + +#: templates/music.php:38 +msgid "Album" +msgstr "" + +#: templates/music.php:39 +msgid "Title" +msgstr "" diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po new file mode 100644 index 0000000000..d4a0b64800 --- /dev/null +++ b/l10n/ar_SA/settings.po @@ -0,0 +1,206 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_SA\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "" + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "" + +#: js/apps.js:31 js/apps.js:67 +msgid "Disable" +msgstr "" + +#: js/apps.js:31 js/apps.js:54 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:41 personal.php:42 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 +msgid "Log" +msgstr "" + +#: templates/admin.php:55 +msgid "More" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:24 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:27 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:28 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:28 +msgid "by" +msgstr "" + +#: templates/help.php:8 +msgid "Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Managing Big Files" +msgstr "" + +#: templates/help.php:10 +msgid "Ask a question" +msgstr "" + +#: templates/help.php:22 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:23 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:31 +msgid "Answer" +msgstr "" + +#: templates/personal.php:8 +msgid "You use" +msgstr "" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "" + +#: templates/personal.php:12 +msgid "Desktop and Mobile Syncing Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download" +msgstr "" + +#: templates/personal.php:19 +msgid "Your password got changed" +msgstr "" + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "" + +#: templates/personal.php:22 +msgid "New password" +msgstr "" + +#: templates/personal.php:23 +msgid "show" +msgstr "" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "" + +#: templates/personal.php:30 +msgid "Email" +msgstr "" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:15 templates/users.php:60 +msgid "Name" +msgstr "" + +#: templates/users.php:17 templates/users.php:61 +msgid "Password" +msgstr "" + +#: templates/users.php:19 templates/users.php:62 templates/users.php:78 +msgid "Groups" +msgstr "" + +#: templates/users.php:25 +msgid "Create" +msgstr "" + +#: templates/users.php:28 +msgid "Default Quota" +msgstr "" + +#: templates/users.php:47 templates/users.php:103 +msgid "Other" +msgstr "" + +#: templates/users.php:63 +msgid "Quota" +msgstr "" + +#: templates/users.php:110 +msgid "Delete" +msgstr "" diff --git a/l10n/id_ID/calendar.po b/l10n/id_ID/calendar.po new file mode 100644 index 0000000000..ac6c2362a0 --- /dev/null +++ b/l10n/id_ID/calendar.po @@ -0,0 +1,814 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/cache/status.php:19 +msgid "Not all calendars are completely cached" +msgstr "" + +#: ajax/cache/status.php:21 +msgid "Everything seems to be completely cached" +msgstr "" + +#: ajax/categories/rescan.php:29 +msgid "No calendars found." +msgstr "" + +#: ajax/categories/rescan.php:37 +msgid "No events found." +msgstr "" + +#: ajax/event/edit.form.php:20 +msgid "Wrong calendar" +msgstr "" + +#: ajax/import/dropimport.php:29 ajax/import/import.php:64 +msgid "" +"The file contained either no events or all events are already saved in your " +"calendar." +msgstr "" + +#: ajax/import/dropimport.php:31 ajax/import/import.php:67 +msgid "events has been saved in the new calendar" +msgstr "" + +#: ajax/import/import.php:56 +msgid "Import failed" +msgstr "" + +#: ajax/import/import.php:69 +msgid "events has been saved in your calendar" +msgstr "" + +#: ajax/settings/guesstimezone.php:25 +msgid "New Timezone:" +msgstr "" + +#: ajax/settings/settimezone.php:23 +msgid "Timezone changed" +msgstr "" + +#: ajax/settings/settimezone.php:25 +msgid "Invalid request" +msgstr "" + +#: appinfo/app.php:35 templates/calendar.php:15 +#: templates/part.eventform.php:33 templates/part.showevent.php:33 +#: templates/settings.php:12 +msgid "Calendar" +msgstr "" + +#: js/calendar.js:828 +msgid "ddd" +msgstr "" + +#: js/calendar.js:829 +msgid "ddd M/d" +msgstr "" + +#: js/calendar.js:830 +msgid "dddd M/d" +msgstr "" + +#: js/calendar.js:833 +msgid "MMMM yyyy" +msgstr "" + +#: js/calendar.js:835 +msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" +msgstr "" + +#: js/calendar.js:837 +msgid "dddd, MMM d, yyyy" +msgstr "" + +#: lib/app.php:121 +msgid "Birthday" +msgstr "" + +#: lib/app.php:122 +msgid "Business" +msgstr "" + +#: lib/app.php:123 +msgid "Call" +msgstr "" + +#: lib/app.php:124 +msgid "Clients" +msgstr "" + +#: lib/app.php:125 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:126 +msgid "Holidays" +msgstr "" + +#: lib/app.php:127 +msgid "Ideas" +msgstr "" + +#: lib/app.php:128 +msgid "Journey" +msgstr "" + +#: lib/app.php:129 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:130 +msgid "Meeting" +msgstr "" + +#: lib/app.php:131 +msgid "Other" +msgstr "" + +#: lib/app.php:132 +msgid "Personal" +msgstr "" + +#: lib/app.php:133 +msgid "Projects" +msgstr "" + +#: lib/app.php:134 +msgid "Questions" +msgstr "" + +#: lib/app.php:135 +msgid "Work" +msgstr "" + +#: lib/app.php:351 lib/app.php:361 +msgid "by" +msgstr "" + +#: lib/app.php:359 lib/app.php:399 +msgid "unnamed" +msgstr "" + +#: lib/import.php:184 templates/calendar.php:12 +#: templates/part.choosecalendar.php:22 +msgid "New Calendar" +msgstr "" + +#: lib/object.php:372 +msgid "Does not repeat" +msgstr "" + +#: lib/object.php:373 +msgid "Daily" +msgstr "" + +#: lib/object.php:374 +msgid "Weekly" +msgstr "" + +#: lib/object.php:375 +msgid "Every Weekday" +msgstr "" + +#: lib/object.php:376 +msgid "Bi-Weekly" +msgstr "" + +#: lib/object.php:377 +msgid "Monthly" +msgstr "" + +#: lib/object.php:378 +msgid "Yearly" +msgstr "" + +#: lib/object.php:388 +msgid "never" +msgstr "" + +#: lib/object.php:389 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:390 +msgid "by date" +msgstr "" + +#: lib/object.php:400 +msgid "by monthday" +msgstr "" + +#: lib/object.php:401 +msgid "by weekday" +msgstr "" + +#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 +msgid "Monday" +msgstr "" + +#: lib/object.php:412 templates/calendar.php:5 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:413 templates/calendar.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:414 templates/calendar.php:5 +msgid "Thursday" +msgstr "" + +#: lib/object.php:415 templates/calendar.php:5 +msgid "Friday" +msgstr "" + +#: lib/object.php:416 templates/calendar.php:5 +msgid "Saturday" +msgstr "" + +#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 +msgid "Sunday" +msgstr "" + +#: lib/object.php:427 +msgid "events week of month" +msgstr "" + +#: lib/object.php:428 +msgid "first" +msgstr "" + +#: lib/object.php:429 +msgid "second" +msgstr "" + +#: lib/object.php:430 +msgid "third" +msgstr "" + +#: lib/object.php:431 +msgid "fourth" +msgstr "" + +#: lib/object.php:432 +msgid "fifth" +msgstr "" + +#: lib/object.php:433 +msgid "last" +msgstr "" + +#: lib/object.php:467 templates/calendar.php:7 +msgid "January" +msgstr "" + +#: lib/object.php:468 templates/calendar.php:7 +msgid "February" +msgstr "" + +#: lib/object.php:469 templates/calendar.php:7 +msgid "March" +msgstr "" + +#: lib/object.php:470 templates/calendar.php:7 +msgid "April" +msgstr "" + +#: lib/object.php:471 templates/calendar.php:7 +msgid "May" +msgstr "" + +#: lib/object.php:472 templates/calendar.php:7 +msgid "June" +msgstr "" + +#: lib/object.php:473 templates/calendar.php:7 +msgid "July" +msgstr "" + +#: lib/object.php:474 templates/calendar.php:7 +msgid "August" +msgstr "" + +#: lib/object.php:475 templates/calendar.php:7 +msgid "September" +msgstr "" + +#: lib/object.php:476 templates/calendar.php:7 +msgid "October" +msgstr "" + +#: lib/object.php:477 templates/calendar.php:7 +msgid "November" +msgstr "" + +#: lib/object.php:478 templates/calendar.php:7 +msgid "December" +msgstr "" + +#: lib/object.php:488 +msgid "by events date" +msgstr "" + +#: lib/object.php:489 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:490 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:491 +msgid "by day and month" +msgstr "" + +#: lib/search.php:35 lib/search.php:37 lib/search.php:40 +msgid "Date" +msgstr "" + +#: lib/search.php:43 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:6 +msgid "Sun." +msgstr "" + +#: templates/calendar.php:6 +msgid "Mon." +msgstr "" + +#: templates/calendar.php:6 +msgid "Tue." +msgstr "" + +#: templates/calendar.php:6 +msgid "Wed." +msgstr "" + +#: templates/calendar.php:6 +msgid "Thu." +msgstr "" + +#: templates/calendar.php:6 +msgid "Fri." +msgstr "" + +#: templates/calendar.php:6 +msgid "Sat." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jan." +msgstr "" + +#: templates/calendar.php:8 +msgid "Feb." +msgstr "" + +#: templates/calendar.php:8 +msgid "Mar." +msgstr "" + +#: templates/calendar.php:8 +msgid "Apr." +msgstr "" + +#: templates/calendar.php:8 +msgid "May." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jun." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jul." +msgstr "" + +#: templates/calendar.php:8 +msgid "Aug." +msgstr "" + +#: templates/calendar.php:8 +msgid "Sep." +msgstr "" + +#: templates/calendar.php:8 +msgid "Oct." +msgstr "" + +#: templates/calendar.php:8 +msgid "Nov." +msgstr "" + +#: templates/calendar.php:8 +msgid "Dec." +msgstr "" + +#: templates/calendar.php:11 +msgid "All day" +msgstr "" + +#: templates/calendar.php:13 +msgid "Missing fields" +msgstr "" + +#: templates/calendar.php:14 templates/part.eventform.php:19 +#: templates/part.showevent.php:11 +msgid "Title" +msgstr "" + +#: templates/calendar.php:16 +msgid "From Date" +msgstr "" + +#: templates/calendar.php:17 +msgid "From Time" +msgstr "" + +#: templates/calendar.php:18 +msgid "To Date" +msgstr "" + +#: templates/calendar.php:19 +msgid "To Time" +msgstr "" + +#: templates/calendar.php:20 +msgid "The event ends before it starts" +msgstr "" + +#: templates/calendar.php:21 +msgid "There was a database fail" +msgstr "" + +#: templates/calendar.php:38 +msgid "Week" +msgstr "" + +#: templates/calendar.php:39 +msgid "Month" +msgstr "" + +#: templates/calendar.php:40 +msgid "List" +msgstr "" + +#: templates/calendar.php:44 +msgid "Today" +msgstr "" + +#: templates/calendar.php:45 +msgid "Calendars" +msgstr "" + +#: templates/calendar.php:59 +msgid "There was a fail, while parsing the file." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "" + +#: templates/part.choosecalendar.php:2 +msgid "Your calendars" +msgstr "" + +#: templates/part.choosecalendar.php:27 +#: templates/part.choosecalendar.rowfields.php:11 +msgid "CalDav Link" +msgstr "" + +#: templates/part.choosecalendar.php:31 +msgid "Shared calendars" +msgstr "" + +#: templates/part.choosecalendar.php:48 +msgid "No shared calendars" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:8 +msgid "Share Calendar" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:14 +msgid "Download" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:17 +msgid "Edit" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:20 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "" + +#: templates/part.choosecalendar.rowfields.shared.php:4 +msgid "shared with you by" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" + +#: templates/part.eventform.php:8 templates/part.showevent.php:3 +msgid "Eventinfo" +msgstr "" + +#: templates/part.eventform.php:9 templates/part.showevent.php:4 +msgid "Repeating" +msgstr "" + +#: templates/part.eventform.php:10 templates/part.showevent.php:5 +msgid "Alarm" +msgstr "" + +#: templates/part.eventform.php:11 templates/part.showevent.php:6 +msgid "Attendees" +msgstr "" + +#: templates/part.eventform.php:13 +msgid "Share" +msgstr "" + +#: templates/part.eventform.php:21 +msgid "Title of the Event" +msgstr "" + +#: templates/part.eventform.php:27 templates/part.showevent.php:19 +msgid "Category" +msgstr "" + +#: templates/part.eventform.php:29 +msgid "Separate categories with commas" +msgstr "" + +#: templates/part.eventform.php:30 +msgid "Edit categories" +msgstr "" + +#: templates/part.eventform.php:56 templates/part.showevent.php:52 +msgid "All Day Event" +msgstr "" + +#: templates/part.eventform.php:60 templates/part.showevent.php:56 +msgid "From" +msgstr "" + +#: templates/part.eventform.php:68 templates/part.showevent.php:64 +msgid "To" +msgstr "" + +#: templates/part.eventform.php:76 templates/part.showevent.php:72 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:81 templates/part.showevent.php:77 +msgid "Location" +msgstr "" + +#: templates/part.eventform.php:83 +msgid "Location of the Event" +msgstr "" + +#: templates/part.eventform.php:89 templates/part.showevent.php:85 +msgid "Description" +msgstr "" + +#: templates/part.eventform.php:91 +msgid "Description of the Event" +msgstr "" + +#: templates/part.eventform.php:100 templates/part.showevent.php:95 +msgid "Repeat" +msgstr "" + +#: templates/part.eventform.php:107 templates/part.showevent.php:102 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:151 templates/part.showevent.php:146 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:164 templates/part.eventform.php:177 +#: templates/part.showevent.php:159 templates/part.showevent.php:172 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:169 templates/part.showevent.php:164 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:182 templates/part.showevent.php:177 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:190 templates/part.showevent.php:185 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:203 templates/part.showevent.php:198 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:208 templates/part.showevent.php:203 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:214 templates/part.showevent.php:209 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:220 templates/part.showevent.php:215 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:233 templates/part.showevent.php:228 +msgid "occurrences" +msgstr "" + +#: templates/part.import.php:14 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:24 +msgid "Please choose a calendar" +msgstr "" + +#: templates/part.import.php:36 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:44 +msgid "Take an available name!" +msgstr "" + +#: templates/part.import.php:45 +msgid "" +"A Calendar with this name already exists. If you continue anyhow, these " +"calendars will be merged." +msgstr "" + +#: templates/part.import.php:47 +msgid "Import" +msgstr "" + +#: templates/part.import.php:56 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "" + +#: templates/part.showevent.php:1 +msgid "View an event" +msgstr "" + +#: templates/part.showevent.php:23 +msgid "No categories selected" +msgstr "" + +#: templates/part.showevent.php:37 +msgid "of" +msgstr "" + +#: templates/part.showevent.php:59 templates/part.showevent.php:67 +msgid "at" +msgstr "" + +#: templates/settings.php:14 +msgid "Timezone" +msgstr "" + +#: templates/settings.php:31 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:33 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:35 +msgid "24h" +msgstr "" + +#: templates/settings.php:36 +msgid "12h" +msgstr "" + +#: templates/settings.php:40 +msgid "First day of the week" +msgstr "" + +#: templates/settings.php:47 +msgid "Cache" +msgstr "" + +#: templates/settings.php:48 +msgid "Clear cache for repeating events" +msgstr "" + +#: templates/settings.php:53 +msgid "Calendar CalDAV syncing addresses" +msgstr "" + +#: templates/settings.php:53 +msgid "more info" +msgstr "" + +#: templates/settings.php:55 +msgid "Primary address (Kontact et al)" +msgstr "" + +#: templates/settings.php:57 +msgid "iOS/OS X" +msgstr "" + +#: templates/settings.php:59 +msgid "Read only iCalendar link(s)" +msgstr "" + +#: templates/share.dropdown.php:20 +msgid "Users" +msgstr "" + +#: templates/share.dropdown.php:21 +msgid "select users" +msgstr "" + +#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 +msgid "Editable" +msgstr "" + +#: templates/share.dropdown.php:48 +msgid "Groups" +msgstr "" + +#: templates/share.dropdown.php:49 +msgid "select groups" +msgstr "" + +#: templates/share.dropdown.php:75 +msgid "make public" +msgstr "" diff --git a/l10n/id_ID/contacts.po b/l10n/id_ID/contacts.po new file mode 100644 index 0000000000..6bbcb889ca --- /dev/null +++ b/l10n/id_ID/contacts.po @@ -0,0 +1,871 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcontact.php:47 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "" + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "" + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "" + +#: ajax/addproperty.php:56 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:67 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:76 +msgid "Trying to add duplicate property: " +msgstr "" + +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "" + +#: ajax/categories/categoriesfor.php:17 +msgid "No ID provided" +msgstr "" + +#: ajax/categories/categoriesfor.php:34 +msgid "Error setting checksum." +msgstr "" + +#: ajax/categories/delete.php:19 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/categories/delete.php:26 +msgid "No address books found." +msgstr "" + +#: ajax/categories/delete.php:34 +msgid "No contacts found." +msgstr "" + +#: ajax/contactdetails.php:31 +msgid "Missing ID" +msgstr "" + +#: ajax/contactdetails.php:36 +msgid "Error parsing VCard for ID: \"" +msgstr "" + +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 +#: ajax/uploadphoto.php:68 +msgid "No contact ID was submitted." +msgstr "" + +#: ajax/currentphoto.php:36 +msgid "Error reading contact photo." +msgstr "" + +#: ajax/currentphoto.php:48 +msgid "Error saving temporary file." +msgstr "" + +#: ajax/currentphoto.php:51 +msgid "The loading photo is not valid." +msgstr "" + +#: ajax/deleteproperty.php:36 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: ajax/deleteproperty.php:43 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/editname.php:31 +msgid "Contact ID is missing." +msgstr "" + +#: ajax/oc_photo.php:32 +msgid "No photo path was submitted." +msgstr "" + +#: ajax/oc_photo.php:39 +msgid "File doesn't exist:" +msgstr "" + +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 +msgid "Error loading image." +msgstr "" + +#: ajax/savecrop.php:67 +msgid "Error getting contact object." +msgstr "" + +#: ajax/savecrop.php:76 +msgid "Error getting PHOTO property." +msgstr "" + +#: ajax/savecrop.php:93 +msgid "Error saving contact." +msgstr "" + +#: ajax/savecrop.php:103 +msgid "Error resizing image" +msgstr "" + +#: ajax/savecrop.php:106 +msgid "Error cropping image" +msgstr "" + +#: ajax/savecrop.php:109 +msgid "Error creating temporary image" +msgstr "" + +#: ajax/savecrop.php:112 +msgid "Error finding image: " +msgstr "" + +#: ajax/saveproperty.php:40 +msgid "checksum is not set." +msgstr "" + +#: ajax/saveproperty.php:59 +msgid "Information about vCard is incorrect. Please reload the page: " +msgstr "" + +#: ajax/saveproperty.php:64 +msgid "Something went FUBAR. " +msgstr "" + +#: ajax/saveproperty.php:133 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:21 +msgid "Cannot update addressbook with an empty name." +msgstr "" + +#: ajax/updateaddressbook.php:25 +msgid "Error updating addressbook." +msgstr "" + +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 +msgid "Error uploading contacts to storage." +msgstr "" + +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 +msgid "No file was uploaded" +msgstr "" + +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 +msgid "Couldn't save temporary image: " +msgstr "" + +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 +msgid "Couldn't load temporary image: " +msgstr "" + +#: ajax/uploadphoto.php:71 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: appinfo/app.php:19 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: js/contacts.js:53 +msgid "Sorry, this functionality has not been implemented yet" +msgstr "" + +#: js/contacts.js:53 +msgid "Not implemented" +msgstr "" + +#: js/contacts.js:58 +msgid "Couldn't get a valid address." +msgstr "" + +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 +msgid "Error" +msgstr "" + +#: js/contacts.js:389 lib/search.php:15 +msgid "Contact" +msgstr "" + +#: js/contacts.js:389 +msgid "New" +msgstr "" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "" + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "" + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "" + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "" + +#: js/loader.js:49 +msgid "Result: " +msgstr "" + +#: js/loader.js:49 +msgid " imported, " +msgstr "" + +#: js/loader.js:49 +msgid " failed." +msgstr "" + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "" + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "" + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "" + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "" + +#: lib/app.php:123 +msgid "Text" +msgstr "" + +#: lib/app.php:124 +msgid "Voice" +msgstr "" + +#: lib/app.php:125 +msgid "Message" +msgstr "" + +#: lib/app.php:126 +msgid "Fax" +msgstr "" + +#: lib/app.php:127 +msgid "Video" +msgstr "" + +#: lib/app.php:128 +msgid "Pager" +msgstr "" + +#: lib/app.php:134 +msgid "Internet" +msgstr "" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "" + +#: lib/app.php:170 +msgid "Business" +msgstr "" + +#: lib/app.php:171 +msgid "Call" +msgstr "" + +#: lib/app.php:172 +msgid "Clients" +msgstr "" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "" + +#: lib/app.php:176 +msgid "Journey" +msgstr "" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "" + +#: lib/app.php:179 +msgid "Other" +msgstr "" + +#: lib/app.php:180 +msgid "Personal" +msgstr "" + +#: lib/app.php:181 +msgid "Projects" +msgstr "" + +#: lib/app.php:182 +msgid "Questions" +msgstr "" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "" + +#: templates/index.php:15 +msgid "Add Contact" +msgstr "" + +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/index.php:20 +msgid "Addressbooks" +msgstr "" + +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "" + +#: templates/index.php:54 +msgid "Actions" +msgstr "" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Configure Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:8 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:11 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:14 +msgid "Edit" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:17 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 +msgid "Delete" +msgstr "" + +#: templates/part.contact.php:16 +msgid "Drop photo to upload" +msgstr "" + +#: templates/part.contact.php:18 +msgid "Delete current photo" +msgstr "" + +#: templates/part.contact.php:19 +msgid "Edit current photo" +msgstr "" + +#: templates/part.contact.php:20 +msgid "Upload new photo" +msgstr "" + +#: templates/part.contact.php:21 +msgid "Select photo from ownCloud" +msgstr "" + +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr "" + +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" +msgstr "" + +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "" + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "" + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "" + +#: templates/part.edit_address_dialog.php:6 +msgid "Edit address" +msgstr "" + +#: templates/part.edit_address_dialog.php:10 +msgid "Type" +msgstr "" + +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 +msgid "PO Box" +msgstr "" + +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "" + +#: templates/part.edit_address_dialog.php:30 +msgid "Extended" +msgstr "" + +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "" + +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 +msgid "City" +msgstr "" + +#: templates/part.edit_address_dialog.php:42 +msgid "Region" +msgstr "" + +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "" + +#: templates/part.edit_address_dialog.php:48 +msgid "Zipcode" +msgstr "" + +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 +msgid "Country" +msgstr "" + +#: templates/part.edit_name_dialog.php:16 +msgid "Addressbook" +msgstr "" + +#: templates/part.edit_name_dialog.php:23 +msgid "Hon. prefixes" +msgstr "" + +#: templates/part.edit_name_dialog.php:27 +msgid "Miss" +msgstr "" + +#: templates/part.edit_name_dialog.php:28 +msgid "Ms" +msgstr "" + +#: templates/part.edit_name_dialog.php:29 +msgid "Mr" +msgstr "" + +#: templates/part.edit_name_dialog.php:30 +msgid "Sir" +msgstr "" + +#: templates/part.edit_name_dialog.php:31 +msgid "Mrs" +msgstr "" + +#: templates/part.edit_name_dialog.php:32 +msgid "Dr" +msgstr "" + +#: templates/part.edit_name_dialog.php:35 +msgid "Given name" +msgstr "" + +#: templates/part.edit_name_dialog.php:37 +msgid "Additional names" +msgstr "" + +#: templates/part.edit_name_dialog.php:39 +msgid "Family name" +msgstr "" + +#: templates/part.edit_name_dialog.php:41 +msgid "Hon. suffixes" +msgstr "" + +#: templates/part.edit_name_dialog.php:45 +msgid "J.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:46 +msgid "M.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:47 +msgid "D.O." +msgstr "" + +#: templates/part.edit_name_dialog.php:48 +msgid "D.C." +msgstr "" + +#: templates/part.edit_name_dialog.php:49 +msgid "Ph.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:50 +msgid "Esq." +msgstr "" + +#: templates/part.edit_name_dialog.php:51 +msgid "Jr." +msgstr "" + +#: templates/part.edit_name_dialog.php:52 +msgid "Sn." +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.import.php:1 +msgid "Import a contacts file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the addressbook" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new addressbook" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new addressbook" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing contacts" +msgstr "" + +#: templates/part.no_contacts.php:2 +msgid "You have no contacts in your addressbook." +msgstr "" + +#: templates/part.no_contacts.php:4 +msgid "Add contact" +msgstr "" + +#: templates/part.no_contacts.php:5 +msgid "Configure addressbooks" +msgstr "" + +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing addresses" +msgstr "" + +#: templates/settings.php:4 +msgid "more info" +msgstr "" + +#: templates/settings.php:6 +msgid "Primary address (Kontact et al)" +msgstr "" + +#: templates/settings.php:8 +msgid "iOS/OS X" +msgstr "" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "" diff --git a/l10n/id_ID/core.po b/l10n/id_ID/core.po new file mode 100644 index 0000000000..2a3c3b516c --- /dev/null +++ b/l10n/id_ID/core.po @@ -0,0 +1,268 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:28+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "" + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "" + +#: js/jquery-ui-1.8.16.custom.min.js:511 +msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" +msgstr "" + +#: js/js.js:519 +msgid "January" +msgstr "" + +#: js/js.js:519 +msgid "February" +msgstr "" + +#: js/js.js:519 +msgid "March" +msgstr "" + +#: js/js.js:519 +msgid "April" +msgstr "" + +#: js/js.js:519 +msgid "May" +msgstr "" + +#: js/js.js:519 +msgid "June" +msgstr "" + +#: js/js.js:520 +msgid "July" +msgstr "" + +#: js/js.js:520 +msgid "August" +msgstr "" + +#: js/js.js:520 +msgid "September" +msgstr "" + +#: js/js.js:520 +msgid "October" +msgstr "" + +#: js/js.js:520 +msgid "November" +msgstr "" + +#: js/js.js:520 +msgid "December" +msgstr "" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "Error" +msgstr "" + +#: lostpassword/index.php:26 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +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 "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:25 +#: templates/login.php:9 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +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:14 +msgid "Add" +msgstr "" + +#: templates/installation.php:23 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:29 templates/login.php:13 +msgid "Password" +msgstr "" + +#: templates/installation.php:35 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:37 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:44 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:49 templates/installation.php:60 +#: templates/installation.php:70 +msgid "will be used" +msgstr "" + +#: templates/installation.php:82 +msgid "Database user" +msgstr "" + +#: templates/installation.php:86 +msgid "Database password" +msgstr "" + +#: templates/installation.php:90 +msgid "Database name" +msgstr "" + +#: templates/installation.php:96 +msgid "Database host" +msgstr "" + +#: templates/installation.php:101 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:49 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:64 templates/layout.user.php:65 +msgid "Settings" +msgstr "" + +#: templates/login.php:6 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:17 +msgid "remember" +msgstr "" + +#: templates/login.php:18 +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 "" diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po new file mode 100644 index 0000000000..6fc758f596 --- /dev/null +++ b/l10n/id_ID/files.po @@ -0,0 +1,198 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0\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:22 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:23 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "" + +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "" + +#: js/filelist.js:186 +msgid "undo deletion" +msgstr "" + +#: js/files.js:170 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:199 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:199 +msgid "Upload Error" +msgstr "" + +#: js/files.js:227 js/files.js:318 js/files.js:347 +msgid "Pending" +msgstr "" + +#: js/files.js:332 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:456 +msgid "Invalid name, '/' is not allowed." +msgstr "" + +#: js/files.js:631 templates/index.php:55 +msgid "Size" +msgstr "" + +#: js/files.js:632 templates/index.php:56 +msgid "Modified" +msgstr "" + +#: js/files.js:659 +msgid "folder" +msgstr "" + +#: js/files.js:661 +msgid "folders" +msgstr "" + +#: js/files.js:669 +msgid "file" +msgstr "" + +#: js/files.js:671 +msgid "files" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:11 +msgid "From url" +msgstr "" + +#: templates/index.php:21 +msgid "Upload" +msgstr "" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:39 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:47 +msgid "Name" +msgstr "" + +#: templates/index.php:49 +msgid "Share" +msgstr "" + +#: templates/index.php:51 +msgid "Download" +msgstr "" + +#: templates/index.php:64 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:66 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:71 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:74 +msgid "Current scanning" +msgstr "" diff --git a/l10n/id_ID/gallery.po b/l10n/id_ID/gallery.po new file mode 100644 index 0000000000..6d62fde891 --- /dev/null +++ b/l10n/id_ID/gallery.po @@ -0,0 +1,58 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:39 +msgid "Pictures" +msgstr "" + +#: js/pictures.js:12 +msgid "Share gallery" +msgstr "" + +#: js/pictures.js:32 +msgid "Error: " +msgstr "" + +#: js/pictures.js:32 +msgid "Internal error" +msgstr "" + +#: templates/index.php:27 +msgid "Slideshow" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + +#: templates/view_album.php:36 +msgid "Remove confirmation" +msgstr "" + +#: templates/view_album.php:37 +msgid "Do you want to remove album" +msgstr "" + +#: templates/view_album.php:40 +msgid "Change album name" +msgstr "" + +#: templates/view_album.php:43 +msgid "New album name" +msgstr "" diff --git a/l10n/id_ID/media.po b/l10n/id_ID/media.po new file mode 100644 index 0000000000..1db3e2f400 --- /dev/null +++ b/l10n/id_ID/media.po @@ -0,0 +1,66 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:45 templates/player.php:8 +msgid "Music" +msgstr "" + +#: js/music.js:18 +msgid "Add album to playlist" +msgstr "" + +#: templates/music.php:3 templates/player.php:12 +msgid "Play" +msgstr "" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:13 +msgid "Pause" +msgstr "" + +#: templates/music.php:5 +msgid "Previous" +msgstr "" + +#: templates/music.php:6 templates/player.php:14 +msgid "Next" +msgstr "" + +#: templates/music.php:7 +msgid "Mute" +msgstr "" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "" + +#: templates/music.php:37 +msgid "Artist" +msgstr "" + +#: templates/music.php:38 +msgid "Album" +msgstr "" + +#: templates/music.php:39 +msgid "Title" +msgstr "" diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po new file mode 100644 index 0000000000..ec3c94d41f --- /dev/null +++ b/l10n/id_ID/settings.po @@ -0,0 +1,206 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "" + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "" + +#: js/apps.js:31 js/apps.js:67 +msgid "Disable" +msgstr "" + +#: js/apps.js:31 js/apps.js:54 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:41 personal.php:42 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 +msgid "Log" +msgstr "" + +#: templates/admin.php:55 +msgid "More" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:24 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:27 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:28 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:28 +msgid "by" +msgstr "" + +#: templates/help.php:8 +msgid "Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Managing Big Files" +msgstr "" + +#: templates/help.php:10 +msgid "Ask a question" +msgstr "" + +#: templates/help.php:22 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:23 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:31 +msgid "Answer" +msgstr "" + +#: templates/personal.php:8 +msgid "You use" +msgstr "" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "" + +#: templates/personal.php:12 +msgid "Desktop and Mobile Syncing Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download" +msgstr "" + +#: templates/personal.php:19 +msgid "Your password got changed" +msgstr "" + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "" + +#: templates/personal.php:22 +msgid "New password" +msgstr "" + +#: templates/personal.php:23 +msgid "show" +msgstr "" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "" + +#: templates/personal.php:30 +msgid "Email" +msgstr "" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:15 templates/users.php:60 +msgid "Name" +msgstr "" + +#: templates/users.php:17 templates/users.php:61 +msgid "Password" +msgstr "" + +#: templates/users.php:19 templates/users.php:62 templates/users.php:78 +msgid "Groups" +msgstr "" + +#: templates/users.php:25 +msgid "Create" +msgstr "" + +#: templates/users.php:28 +msgid "Default Quota" +msgstr "" + +#: templates/users.php:47 templates/users.php:103 +msgid "Other" +msgstr "" + +#: templates/users.php:63 +msgid "Quota" +msgstr "" + +#: templates/users.php:110 +msgid "Delete" +msgstr "" diff --git a/l10n/so/calendar.po b/l10n/so/calendar.po new file mode 100644 index 0000000000..139a523a52 --- /dev/null +++ b/l10n/so/calendar.po @@ -0,0 +1,814 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/cache/status.php:19 +msgid "Not all calendars are completely cached" +msgstr "" + +#: ajax/cache/status.php:21 +msgid "Everything seems to be completely cached" +msgstr "" + +#: ajax/categories/rescan.php:29 +msgid "No calendars found." +msgstr "" + +#: ajax/categories/rescan.php:37 +msgid "No events found." +msgstr "" + +#: ajax/event/edit.form.php:20 +msgid "Wrong calendar" +msgstr "" + +#: ajax/import/dropimport.php:29 ajax/import/import.php:64 +msgid "" +"The file contained either no events or all events are already saved in your " +"calendar." +msgstr "" + +#: ajax/import/dropimport.php:31 ajax/import/import.php:67 +msgid "events has been saved in the new calendar" +msgstr "" + +#: ajax/import/import.php:56 +msgid "Import failed" +msgstr "" + +#: ajax/import/import.php:69 +msgid "events has been saved in your calendar" +msgstr "" + +#: ajax/settings/guesstimezone.php:25 +msgid "New Timezone:" +msgstr "" + +#: ajax/settings/settimezone.php:23 +msgid "Timezone changed" +msgstr "" + +#: ajax/settings/settimezone.php:25 +msgid "Invalid request" +msgstr "" + +#: appinfo/app.php:35 templates/calendar.php:15 +#: templates/part.eventform.php:33 templates/part.showevent.php:33 +#: templates/settings.php:12 +msgid "Calendar" +msgstr "" + +#: js/calendar.js:828 +msgid "ddd" +msgstr "" + +#: js/calendar.js:829 +msgid "ddd M/d" +msgstr "" + +#: js/calendar.js:830 +msgid "dddd M/d" +msgstr "" + +#: js/calendar.js:833 +msgid "MMMM yyyy" +msgstr "" + +#: js/calendar.js:835 +msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" +msgstr "" + +#: js/calendar.js:837 +msgid "dddd, MMM d, yyyy" +msgstr "" + +#: lib/app.php:121 +msgid "Birthday" +msgstr "" + +#: lib/app.php:122 +msgid "Business" +msgstr "" + +#: lib/app.php:123 +msgid "Call" +msgstr "" + +#: lib/app.php:124 +msgid "Clients" +msgstr "" + +#: lib/app.php:125 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:126 +msgid "Holidays" +msgstr "" + +#: lib/app.php:127 +msgid "Ideas" +msgstr "" + +#: lib/app.php:128 +msgid "Journey" +msgstr "" + +#: lib/app.php:129 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:130 +msgid "Meeting" +msgstr "" + +#: lib/app.php:131 +msgid "Other" +msgstr "" + +#: lib/app.php:132 +msgid "Personal" +msgstr "" + +#: lib/app.php:133 +msgid "Projects" +msgstr "" + +#: lib/app.php:134 +msgid "Questions" +msgstr "" + +#: lib/app.php:135 +msgid "Work" +msgstr "" + +#: lib/app.php:351 lib/app.php:361 +msgid "by" +msgstr "" + +#: lib/app.php:359 lib/app.php:399 +msgid "unnamed" +msgstr "" + +#: lib/import.php:184 templates/calendar.php:12 +#: templates/part.choosecalendar.php:22 +msgid "New Calendar" +msgstr "" + +#: lib/object.php:372 +msgid "Does not repeat" +msgstr "" + +#: lib/object.php:373 +msgid "Daily" +msgstr "" + +#: lib/object.php:374 +msgid "Weekly" +msgstr "" + +#: lib/object.php:375 +msgid "Every Weekday" +msgstr "" + +#: lib/object.php:376 +msgid "Bi-Weekly" +msgstr "" + +#: lib/object.php:377 +msgid "Monthly" +msgstr "" + +#: lib/object.php:378 +msgid "Yearly" +msgstr "" + +#: lib/object.php:388 +msgid "never" +msgstr "" + +#: lib/object.php:389 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:390 +msgid "by date" +msgstr "" + +#: lib/object.php:400 +msgid "by monthday" +msgstr "" + +#: lib/object.php:401 +msgid "by weekday" +msgstr "" + +#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 +msgid "Monday" +msgstr "" + +#: lib/object.php:412 templates/calendar.php:5 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:413 templates/calendar.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:414 templates/calendar.php:5 +msgid "Thursday" +msgstr "" + +#: lib/object.php:415 templates/calendar.php:5 +msgid "Friday" +msgstr "" + +#: lib/object.php:416 templates/calendar.php:5 +msgid "Saturday" +msgstr "" + +#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 +msgid "Sunday" +msgstr "" + +#: lib/object.php:427 +msgid "events week of month" +msgstr "" + +#: lib/object.php:428 +msgid "first" +msgstr "" + +#: lib/object.php:429 +msgid "second" +msgstr "" + +#: lib/object.php:430 +msgid "third" +msgstr "" + +#: lib/object.php:431 +msgid "fourth" +msgstr "" + +#: lib/object.php:432 +msgid "fifth" +msgstr "" + +#: lib/object.php:433 +msgid "last" +msgstr "" + +#: lib/object.php:467 templates/calendar.php:7 +msgid "January" +msgstr "" + +#: lib/object.php:468 templates/calendar.php:7 +msgid "February" +msgstr "" + +#: lib/object.php:469 templates/calendar.php:7 +msgid "March" +msgstr "" + +#: lib/object.php:470 templates/calendar.php:7 +msgid "April" +msgstr "" + +#: lib/object.php:471 templates/calendar.php:7 +msgid "May" +msgstr "" + +#: lib/object.php:472 templates/calendar.php:7 +msgid "June" +msgstr "" + +#: lib/object.php:473 templates/calendar.php:7 +msgid "July" +msgstr "" + +#: lib/object.php:474 templates/calendar.php:7 +msgid "August" +msgstr "" + +#: lib/object.php:475 templates/calendar.php:7 +msgid "September" +msgstr "" + +#: lib/object.php:476 templates/calendar.php:7 +msgid "October" +msgstr "" + +#: lib/object.php:477 templates/calendar.php:7 +msgid "November" +msgstr "" + +#: lib/object.php:478 templates/calendar.php:7 +msgid "December" +msgstr "" + +#: lib/object.php:488 +msgid "by events date" +msgstr "" + +#: lib/object.php:489 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:490 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:491 +msgid "by day and month" +msgstr "" + +#: lib/search.php:35 lib/search.php:37 lib/search.php:40 +msgid "Date" +msgstr "" + +#: lib/search.php:43 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:6 +msgid "Sun." +msgstr "" + +#: templates/calendar.php:6 +msgid "Mon." +msgstr "" + +#: templates/calendar.php:6 +msgid "Tue." +msgstr "" + +#: templates/calendar.php:6 +msgid "Wed." +msgstr "" + +#: templates/calendar.php:6 +msgid "Thu." +msgstr "" + +#: templates/calendar.php:6 +msgid "Fri." +msgstr "" + +#: templates/calendar.php:6 +msgid "Sat." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jan." +msgstr "" + +#: templates/calendar.php:8 +msgid "Feb." +msgstr "" + +#: templates/calendar.php:8 +msgid "Mar." +msgstr "" + +#: templates/calendar.php:8 +msgid "Apr." +msgstr "" + +#: templates/calendar.php:8 +msgid "May." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jun." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jul." +msgstr "" + +#: templates/calendar.php:8 +msgid "Aug." +msgstr "" + +#: templates/calendar.php:8 +msgid "Sep." +msgstr "" + +#: templates/calendar.php:8 +msgid "Oct." +msgstr "" + +#: templates/calendar.php:8 +msgid "Nov." +msgstr "" + +#: templates/calendar.php:8 +msgid "Dec." +msgstr "" + +#: templates/calendar.php:11 +msgid "All day" +msgstr "" + +#: templates/calendar.php:13 +msgid "Missing fields" +msgstr "" + +#: templates/calendar.php:14 templates/part.eventform.php:19 +#: templates/part.showevent.php:11 +msgid "Title" +msgstr "" + +#: templates/calendar.php:16 +msgid "From Date" +msgstr "" + +#: templates/calendar.php:17 +msgid "From Time" +msgstr "" + +#: templates/calendar.php:18 +msgid "To Date" +msgstr "" + +#: templates/calendar.php:19 +msgid "To Time" +msgstr "" + +#: templates/calendar.php:20 +msgid "The event ends before it starts" +msgstr "" + +#: templates/calendar.php:21 +msgid "There was a database fail" +msgstr "" + +#: templates/calendar.php:38 +msgid "Week" +msgstr "" + +#: templates/calendar.php:39 +msgid "Month" +msgstr "" + +#: templates/calendar.php:40 +msgid "List" +msgstr "" + +#: templates/calendar.php:44 +msgid "Today" +msgstr "" + +#: templates/calendar.php:45 +msgid "Calendars" +msgstr "" + +#: templates/calendar.php:59 +msgid "There was a fail, while parsing the file." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "" + +#: templates/part.choosecalendar.php:2 +msgid "Your calendars" +msgstr "" + +#: templates/part.choosecalendar.php:27 +#: templates/part.choosecalendar.rowfields.php:11 +msgid "CalDav Link" +msgstr "" + +#: templates/part.choosecalendar.php:31 +msgid "Shared calendars" +msgstr "" + +#: templates/part.choosecalendar.php:48 +msgid "No shared calendars" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:8 +msgid "Share Calendar" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:14 +msgid "Download" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:17 +msgid "Edit" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:20 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "" + +#: templates/part.choosecalendar.rowfields.shared.php:4 +msgid "shared with you by" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" + +#: templates/part.eventform.php:8 templates/part.showevent.php:3 +msgid "Eventinfo" +msgstr "" + +#: templates/part.eventform.php:9 templates/part.showevent.php:4 +msgid "Repeating" +msgstr "" + +#: templates/part.eventform.php:10 templates/part.showevent.php:5 +msgid "Alarm" +msgstr "" + +#: templates/part.eventform.php:11 templates/part.showevent.php:6 +msgid "Attendees" +msgstr "" + +#: templates/part.eventform.php:13 +msgid "Share" +msgstr "" + +#: templates/part.eventform.php:21 +msgid "Title of the Event" +msgstr "" + +#: templates/part.eventform.php:27 templates/part.showevent.php:19 +msgid "Category" +msgstr "" + +#: templates/part.eventform.php:29 +msgid "Separate categories with commas" +msgstr "" + +#: templates/part.eventform.php:30 +msgid "Edit categories" +msgstr "" + +#: templates/part.eventform.php:56 templates/part.showevent.php:52 +msgid "All Day Event" +msgstr "" + +#: templates/part.eventform.php:60 templates/part.showevent.php:56 +msgid "From" +msgstr "" + +#: templates/part.eventform.php:68 templates/part.showevent.php:64 +msgid "To" +msgstr "" + +#: templates/part.eventform.php:76 templates/part.showevent.php:72 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:81 templates/part.showevent.php:77 +msgid "Location" +msgstr "" + +#: templates/part.eventform.php:83 +msgid "Location of the Event" +msgstr "" + +#: templates/part.eventform.php:89 templates/part.showevent.php:85 +msgid "Description" +msgstr "" + +#: templates/part.eventform.php:91 +msgid "Description of the Event" +msgstr "" + +#: templates/part.eventform.php:100 templates/part.showevent.php:95 +msgid "Repeat" +msgstr "" + +#: templates/part.eventform.php:107 templates/part.showevent.php:102 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:151 templates/part.showevent.php:146 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:164 templates/part.eventform.php:177 +#: templates/part.showevent.php:159 templates/part.showevent.php:172 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:169 templates/part.showevent.php:164 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:182 templates/part.showevent.php:177 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:190 templates/part.showevent.php:185 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:203 templates/part.showevent.php:198 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:208 templates/part.showevent.php:203 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:214 templates/part.showevent.php:209 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:220 templates/part.showevent.php:215 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:233 templates/part.showevent.php:228 +msgid "occurrences" +msgstr "" + +#: templates/part.import.php:14 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:24 +msgid "Please choose a calendar" +msgstr "" + +#: templates/part.import.php:36 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:44 +msgid "Take an available name!" +msgstr "" + +#: templates/part.import.php:45 +msgid "" +"A Calendar with this name already exists. If you continue anyhow, these " +"calendars will be merged." +msgstr "" + +#: templates/part.import.php:47 +msgid "Import" +msgstr "" + +#: templates/part.import.php:56 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "" + +#: templates/part.showevent.php:1 +msgid "View an event" +msgstr "" + +#: templates/part.showevent.php:23 +msgid "No categories selected" +msgstr "" + +#: templates/part.showevent.php:37 +msgid "of" +msgstr "" + +#: templates/part.showevent.php:59 templates/part.showevent.php:67 +msgid "at" +msgstr "" + +#: templates/settings.php:14 +msgid "Timezone" +msgstr "" + +#: templates/settings.php:31 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:33 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:35 +msgid "24h" +msgstr "" + +#: templates/settings.php:36 +msgid "12h" +msgstr "" + +#: templates/settings.php:40 +msgid "First day of the week" +msgstr "" + +#: templates/settings.php:47 +msgid "Cache" +msgstr "" + +#: templates/settings.php:48 +msgid "Clear cache for repeating events" +msgstr "" + +#: templates/settings.php:53 +msgid "Calendar CalDAV syncing addresses" +msgstr "" + +#: templates/settings.php:53 +msgid "more info" +msgstr "" + +#: templates/settings.php:55 +msgid "Primary address (Kontact et al)" +msgstr "" + +#: templates/settings.php:57 +msgid "iOS/OS X" +msgstr "" + +#: templates/settings.php:59 +msgid "Read only iCalendar link(s)" +msgstr "" + +#: templates/share.dropdown.php:20 +msgid "Users" +msgstr "" + +#: templates/share.dropdown.php:21 +msgid "select users" +msgstr "" + +#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 +msgid "Editable" +msgstr "" + +#: templates/share.dropdown.php:48 +msgid "Groups" +msgstr "" + +#: templates/share.dropdown.php:49 +msgid "select groups" +msgstr "" + +#: templates/share.dropdown.php:75 +msgid "make public" +msgstr "" diff --git a/l10n/so/contacts.po b/l10n/so/contacts.po new file mode 100644 index 0000000000..c5aa568cb3 --- /dev/null +++ b/l10n/so/contacts.po @@ -0,0 +1,871 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcontact.php:47 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "" + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "" + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "" + +#: ajax/addproperty.php:56 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:67 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:76 +msgid "Trying to add duplicate property: " +msgstr "" + +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "" + +#: ajax/categories/categoriesfor.php:17 +msgid "No ID provided" +msgstr "" + +#: ajax/categories/categoriesfor.php:34 +msgid "Error setting checksum." +msgstr "" + +#: ajax/categories/delete.php:19 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/categories/delete.php:26 +msgid "No address books found." +msgstr "" + +#: ajax/categories/delete.php:34 +msgid "No contacts found." +msgstr "" + +#: ajax/contactdetails.php:31 +msgid "Missing ID" +msgstr "" + +#: ajax/contactdetails.php:36 +msgid "Error parsing VCard for ID: \"" +msgstr "" + +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 +#: ajax/uploadphoto.php:68 +msgid "No contact ID was submitted." +msgstr "" + +#: ajax/currentphoto.php:36 +msgid "Error reading contact photo." +msgstr "" + +#: ajax/currentphoto.php:48 +msgid "Error saving temporary file." +msgstr "" + +#: ajax/currentphoto.php:51 +msgid "The loading photo is not valid." +msgstr "" + +#: ajax/deleteproperty.php:36 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: ajax/deleteproperty.php:43 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/editname.php:31 +msgid "Contact ID is missing." +msgstr "" + +#: ajax/oc_photo.php:32 +msgid "No photo path was submitted." +msgstr "" + +#: ajax/oc_photo.php:39 +msgid "File doesn't exist:" +msgstr "" + +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 +msgid "Error loading image." +msgstr "" + +#: ajax/savecrop.php:67 +msgid "Error getting contact object." +msgstr "" + +#: ajax/savecrop.php:76 +msgid "Error getting PHOTO property." +msgstr "" + +#: ajax/savecrop.php:93 +msgid "Error saving contact." +msgstr "" + +#: ajax/savecrop.php:103 +msgid "Error resizing image" +msgstr "" + +#: ajax/savecrop.php:106 +msgid "Error cropping image" +msgstr "" + +#: ajax/savecrop.php:109 +msgid "Error creating temporary image" +msgstr "" + +#: ajax/savecrop.php:112 +msgid "Error finding image: " +msgstr "" + +#: ajax/saveproperty.php:40 +msgid "checksum is not set." +msgstr "" + +#: ajax/saveproperty.php:59 +msgid "Information about vCard is incorrect. Please reload the page: " +msgstr "" + +#: ajax/saveproperty.php:64 +msgid "Something went FUBAR. " +msgstr "" + +#: ajax/saveproperty.php:133 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:21 +msgid "Cannot update addressbook with an empty name." +msgstr "" + +#: ajax/updateaddressbook.php:25 +msgid "Error updating addressbook." +msgstr "" + +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 +msgid "Error uploading contacts to storage." +msgstr "" + +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 +msgid "No file was uploaded" +msgstr "" + +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 +msgid "Couldn't save temporary image: " +msgstr "" + +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 +msgid "Couldn't load temporary image: " +msgstr "" + +#: ajax/uploadphoto.php:71 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: appinfo/app.php:19 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: js/contacts.js:53 +msgid "Sorry, this functionality has not been implemented yet" +msgstr "" + +#: js/contacts.js:53 +msgid "Not implemented" +msgstr "" + +#: js/contacts.js:58 +msgid "Couldn't get a valid address." +msgstr "" + +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 +msgid "Error" +msgstr "" + +#: js/contacts.js:389 lib/search.php:15 +msgid "Contact" +msgstr "" + +#: js/contacts.js:389 +msgid "New" +msgstr "" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "" + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "" + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "" + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "" + +#: js/loader.js:49 +msgid "Result: " +msgstr "" + +#: js/loader.js:49 +msgid " imported, " +msgstr "" + +#: js/loader.js:49 +msgid " failed." +msgstr "" + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "" + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "" + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "" + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "" + +#: lib/app.php:123 +msgid "Text" +msgstr "" + +#: lib/app.php:124 +msgid "Voice" +msgstr "" + +#: lib/app.php:125 +msgid "Message" +msgstr "" + +#: lib/app.php:126 +msgid "Fax" +msgstr "" + +#: lib/app.php:127 +msgid "Video" +msgstr "" + +#: lib/app.php:128 +msgid "Pager" +msgstr "" + +#: lib/app.php:134 +msgid "Internet" +msgstr "" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "" + +#: lib/app.php:170 +msgid "Business" +msgstr "" + +#: lib/app.php:171 +msgid "Call" +msgstr "" + +#: lib/app.php:172 +msgid "Clients" +msgstr "" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "" + +#: lib/app.php:176 +msgid "Journey" +msgstr "" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "" + +#: lib/app.php:179 +msgid "Other" +msgstr "" + +#: lib/app.php:180 +msgid "Personal" +msgstr "" + +#: lib/app.php:181 +msgid "Projects" +msgstr "" + +#: lib/app.php:182 +msgid "Questions" +msgstr "" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "" + +#: templates/index.php:15 +msgid "Add Contact" +msgstr "" + +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/index.php:20 +msgid "Addressbooks" +msgstr "" + +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "" + +#: templates/index.php:54 +msgid "Actions" +msgstr "" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Configure Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:8 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:11 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:14 +msgid "Edit" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:17 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 +msgid "Delete" +msgstr "" + +#: templates/part.contact.php:16 +msgid "Drop photo to upload" +msgstr "" + +#: templates/part.contact.php:18 +msgid "Delete current photo" +msgstr "" + +#: templates/part.contact.php:19 +msgid "Edit current photo" +msgstr "" + +#: templates/part.contact.php:20 +msgid "Upload new photo" +msgstr "" + +#: templates/part.contact.php:21 +msgid "Select photo from ownCloud" +msgstr "" + +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr "" + +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" +msgstr "" + +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "" + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "" + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "" + +#: templates/part.edit_address_dialog.php:6 +msgid "Edit address" +msgstr "" + +#: templates/part.edit_address_dialog.php:10 +msgid "Type" +msgstr "" + +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 +msgid "PO Box" +msgstr "" + +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "" + +#: templates/part.edit_address_dialog.php:30 +msgid "Extended" +msgstr "" + +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "" + +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 +msgid "City" +msgstr "" + +#: templates/part.edit_address_dialog.php:42 +msgid "Region" +msgstr "" + +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "" + +#: templates/part.edit_address_dialog.php:48 +msgid "Zipcode" +msgstr "" + +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 +msgid "Country" +msgstr "" + +#: templates/part.edit_name_dialog.php:16 +msgid "Addressbook" +msgstr "" + +#: templates/part.edit_name_dialog.php:23 +msgid "Hon. prefixes" +msgstr "" + +#: templates/part.edit_name_dialog.php:27 +msgid "Miss" +msgstr "" + +#: templates/part.edit_name_dialog.php:28 +msgid "Ms" +msgstr "" + +#: templates/part.edit_name_dialog.php:29 +msgid "Mr" +msgstr "" + +#: templates/part.edit_name_dialog.php:30 +msgid "Sir" +msgstr "" + +#: templates/part.edit_name_dialog.php:31 +msgid "Mrs" +msgstr "" + +#: templates/part.edit_name_dialog.php:32 +msgid "Dr" +msgstr "" + +#: templates/part.edit_name_dialog.php:35 +msgid "Given name" +msgstr "" + +#: templates/part.edit_name_dialog.php:37 +msgid "Additional names" +msgstr "" + +#: templates/part.edit_name_dialog.php:39 +msgid "Family name" +msgstr "" + +#: templates/part.edit_name_dialog.php:41 +msgid "Hon. suffixes" +msgstr "" + +#: templates/part.edit_name_dialog.php:45 +msgid "J.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:46 +msgid "M.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:47 +msgid "D.O." +msgstr "" + +#: templates/part.edit_name_dialog.php:48 +msgid "D.C." +msgstr "" + +#: templates/part.edit_name_dialog.php:49 +msgid "Ph.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:50 +msgid "Esq." +msgstr "" + +#: templates/part.edit_name_dialog.php:51 +msgid "Jr." +msgstr "" + +#: templates/part.edit_name_dialog.php:52 +msgid "Sn." +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.import.php:1 +msgid "Import a contacts file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the addressbook" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new addressbook" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new addressbook" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing contacts" +msgstr "" + +#: templates/part.no_contacts.php:2 +msgid "You have no contacts in your addressbook." +msgstr "" + +#: templates/part.no_contacts.php:4 +msgid "Add contact" +msgstr "" + +#: templates/part.no_contacts.php:5 +msgid "Configure addressbooks" +msgstr "" + +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing addresses" +msgstr "" + +#: templates/settings.php:4 +msgid "more info" +msgstr "" + +#: templates/settings.php:6 +msgid "Primary address (Kontact et al)" +msgstr "" + +#: templates/settings.php:8 +msgid "iOS/OS X" +msgstr "" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "" diff --git a/l10n/so/core.po b/l10n/so/core.po new file mode 100644 index 0000000000..17556c7d3e --- /dev/null +++ b/l10n/so/core.po @@ -0,0 +1,268 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:28+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "" + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "" + +#: js/jquery-ui-1.8.16.custom.min.js:511 +msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" +msgstr "" + +#: js/js.js:519 +msgid "January" +msgstr "" + +#: js/js.js:519 +msgid "February" +msgstr "" + +#: js/js.js:519 +msgid "March" +msgstr "" + +#: js/js.js:519 +msgid "April" +msgstr "" + +#: js/js.js:519 +msgid "May" +msgstr "" + +#: js/js.js:519 +msgid "June" +msgstr "" + +#: js/js.js:520 +msgid "July" +msgstr "" + +#: js/js.js:520 +msgid "August" +msgstr "" + +#: js/js.js:520 +msgid "September" +msgstr "" + +#: js/js.js:520 +msgid "October" +msgstr "" + +#: js/js.js:520 +msgid "November" +msgstr "" + +#: js/js.js:520 +msgid "December" +msgstr "" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "Error" +msgstr "" + +#: lostpassword/index.php:26 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +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 "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:25 +#: templates/login.php:9 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +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:14 +msgid "Add" +msgstr "" + +#: templates/installation.php:23 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:29 templates/login.php:13 +msgid "Password" +msgstr "" + +#: templates/installation.php:35 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:37 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:44 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:49 templates/installation.php:60 +#: templates/installation.php:70 +msgid "will be used" +msgstr "" + +#: templates/installation.php:82 +msgid "Database user" +msgstr "" + +#: templates/installation.php:86 +msgid "Database password" +msgstr "" + +#: templates/installation.php:90 +msgid "Database name" +msgstr "" + +#: templates/installation.php:96 +msgid "Database host" +msgstr "" + +#: templates/installation.php:101 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:49 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:64 templates/layout.user.php:65 +msgid "Settings" +msgstr "" + +#: templates/login.php:6 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:17 +msgid "remember" +msgstr "" + +#: templates/login.php:18 +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 "" diff --git a/l10n/so/files.po b/l10n/so/files.po new file mode 100644 index 0000000000..d4b3a6c136 --- /dev/null +++ b/l10n/so/files.po @@ -0,0 +1,198 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\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:22 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:23 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "" + +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "" + +#: js/filelist.js:186 +msgid "undo deletion" +msgstr "" + +#: js/files.js:170 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:199 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:199 +msgid "Upload Error" +msgstr "" + +#: js/files.js:227 js/files.js:318 js/files.js:347 +msgid "Pending" +msgstr "" + +#: js/files.js:332 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:456 +msgid "Invalid name, '/' is not allowed." +msgstr "" + +#: js/files.js:631 templates/index.php:55 +msgid "Size" +msgstr "" + +#: js/files.js:632 templates/index.php:56 +msgid "Modified" +msgstr "" + +#: js/files.js:659 +msgid "folder" +msgstr "" + +#: js/files.js:661 +msgid "folders" +msgstr "" + +#: js/files.js:669 +msgid "file" +msgstr "" + +#: js/files.js:671 +msgid "files" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:11 +msgid "From url" +msgstr "" + +#: templates/index.php:21 +msgid "Upload" +msgstr "" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:39 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:47 +msgid "Name" +msgstr "" + +#: templates/index.php:49 +msgid "Share" +msgstr "" + +#: templates/index.php:51 +msgid "Download" +msgstr "" + +#: templates/index.php:64 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:66 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:71 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:74 +msgid "Current scanning" +msgstr "" diff --git a/l10n/so/gallery.po b/l10n/so/gallery.po new file mode 100644 index 0000000000..e520c32b94 --- /dev/null +++ b/l10n/so/gallery.po @@ -0,0 +1,58 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:39 +msgid "Pictures" +msgstr "" + +#: js/pictures.js:12 +msgid "Share gallery" +msgstr "" + +#: js/pictures.js:32 +msgid "Error: " +msgstr "" + +#: js/pictures.js:32 +msgid "Internal error" +msgstr "" + +#: templates/index.php:27 +msgid "Slideshow" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + +#: templates/view_album.php:36 +msgid "Remove confirmation" +msgstr "" + +#: templates/view_album.php:37 +msgid "Do you want to remove album" +msgstr "" + +#: templates/view_album.php:40 +msgid "Change album name" +msgstr "" + +#: templates/view_album.php:43 +msgid "New album name" +msgstr "" diff --git a/l10n/so/media.po b/l10n/so/media.po new file mode 100644 index 0000000000..ed91c8d409 --- /dev/null +++ b/l10n/so/media.po @@ -0,0 +1,66 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:45 templates/player.php:8 +msgid "Music" +msgstr "" + +#: js/music.js:18 +msgid "Add album to playlist" +msgstr "" + +#: templates/music.php:3 templates/player.php:12 +msgid "Play" +msgstr "" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:13 +msgid "Pause" +msgstr "" + +#: templates/music.php:5 +msgid "Previous" +msgstr "" + +#: templates/music.php:6 templates/player.php:14 +msgid "Next" +msgstr "" + +#: templates/music.php:7 +msgid "Mute" +msgstr "" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "" + +#: templates/music.php:37 +msgid "Artist" +msgstr "" + +#: templates/music.php:38 +msgid "Album" +msgstr "" + +#: templates/music.php:39 +msgid "Title" +msgstr "" diff --git a/l10n/so/settings.po b/l10n/so/settings.po new file mode 100644 index 0000000000..f505b8ba5e --- /dev/null +++ b/l10n/so/settings.po @@ -0,0 +1,206 @@ +# 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: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "" + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "" + +#: js/apps.js:31 js/apps.js:67 +msgid "Disable" +msgstr "" + +#: js/apps.js:31 js/apps.js:54 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:41 personal.php:42 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 +msgid "Log" +msgstr "" + +#: templates/admin.php:55 +msgid "More" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:24 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:27 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:28 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:28 +msgid "by" +msgstr "" + +#: templates/help.php:8 +msgid "Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Managing Big Files" +msgstr "" + +#: templates/help.php:10 +msgid "Ask a question" +msgstr "" + +#: templates/help.php:22 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:23 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:31 +msgid "Answer" +msgstr "" + +#: templates/personal.php:8 +msgid "You use" +msgstr "" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "" + +#: templates/personal.php:12 +msgid "Desktop and Mobile Syncing Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download" +msgstr "" + +#: templates/personal.php:19 +msgid "Your password got changed" +msgstr "" + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "" + +#: templates/personal.php:22 +msgid "New password" +msgstr "" + +#: templates/personal.php:23 +msgid "show" +msgstr "" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "" + +#: templates/personal.php:30 +msgid "Email" +msgstr "" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:15 templates/users.php:60 +msgid "Name" +msgstr "" + +#: templates/users.php:17 templates/users.php:61 +msgid "Password" +msgstr "" + +#: templates/users.php:19 templates/users.php:62 templates/users.php:78 +msgid "Groups" +msgstr "" + +#: templates/users.php:25 +msgid "Create" +msgstr "" + +#: templates/users.php:28 +msgid "Default Quota" +msgstr "" + +#: templates/users.php:47 templates/users.php:103 +msgid "Other" +msgstr "" + +#: templates/users.php:63 +msgid "Quota" +msgstr "" + +#: templates/users.php:110 +msgid "Delete" +msgstr "" diff --git a/l10n/templates/bookmarks.pot b/l10n/templates/bookmarks.pot index bae23f3a63..1ee9f5a85a 100644 --- a/l10n/templates/bookmarks.pot +++ b/l10n/templates/bookmarks.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/calendar.pot b/l10n/templates/calendar.pot index 60b6126208..eb31c594a8 100644 --- a/l10n/templates/calendar.pot +++ b/l10n/templates/calendar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/contacts.pot b/l10n/templates/contacts.pot index cb2045e027..6b03be705c 100644 --- a/l10n/templates/contacts.pot +++ b/l10n/templates/contacts.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 6bcaf6d4c5..e19f805928 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-07-26 02:01+0200\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" "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 a607c408a3..7c8581071c 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-07-26 02:01+0200\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/gallery.pot b/l10n/templates/gallery.pot index 694bdf4a58..e0f819f9df 100644 --- a/l10n/templates/gallery.pot +++ b/l10n/templates/gallery.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" "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 new file mode 100644 index 0000000000..410e16d9dc --- /dev/null +++ b/l10n/templates/lib.pot @@ -0,0 +1,112 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\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:306 +msgid "Apps" +msgstr "" + +#: app.php:308 +msgid "Admin" +msgstr "" + +#: files.php:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/templates/media.pot b/l10n/templates/media.pot index 528fcdce23..6406b0120e 100644 --- a/l10n/templates/media.pot +++ b/l10n/templates/media.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-26 02:01+0200\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" "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 44a2173caf..e8d0757e9f 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-07-26 02:01+0200\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/vi/calendar.po b/l10n/vi/calendar.po new file mode 100644 index 0000000000..f0f4660844 --- /dev/null +++ b/l10n/vi/calendar.po @@ -0,0 +1,816 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +# Sơn Nguyễn , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/cache/status.php:19 +msgid "Not all calendars are completely cached" +msgstr "" + +#: ajax/cache/status.php:21 +msgid "Everything seems to be completely cached" +msgstr "" + +#: ajax/categories/rescan.php:29 +msgid "No calendars found." +msgstr "Không tìm thấy lịch." + +#: ajax/categories/rescan.php:37 +msgid "No events found." +msgstr "Không tìm thấy sự kiện nào" + +#: ajax/event/edit.form.php:20 +msgid "Wrong calendar" +msgstr "Sai lịch" + +#: ajax/import/dropimport.php:29 ajax/import/import.php:64 +msgid "" +"The file contained either no events or all events are already saved in your " +"calendar." +msgstr "" + +#: ajax/import/dropimport.php:31 ajax/import/import.php:67 +msgid "events has been saved in the new calendar" +msgstr "" + +#: ajax/import/import.php:56 +msgid "Import failed" +msgstr "" + +#: ajax/import/import.php:69 +msgid "events has been saved in your calendar" +msgstr "" + +#: ajax/settings/guesstimezone.php:25 +msgid "New Timezone:" +msgstr "Múi giờ mới :" + +#: ajax/settings/settimezone.php:23 +msgid "Timezone changed" +msgstr "Thay đổi múi giờ" + +#: ajax/settings/settimezone.php:25 +msgid "Invalid request" +msgstr "Yêu cầu không hợp lệ" + +#: appinfo/app.php:35 templates/calendar.php:15 +#: templates/part.eventform.php:33 templates/part.showevent.php:33 +#: templates/settings.php:12 +msgid "Calendar" +msgstr "Lịch" + +#: js/calendar.js:828 +msgid "ddd" +msgstr "ddd" + +#: js/calendar.js:829 +msgid "ddd M/d" +msgstr "ddd M/d" + +#: js/calendar.js:830 +msgid "dddd M/d" +msgstr "dddd M/d" + +#: js/calendar.js:833 +msgid "MMMM yyyy" +msgstr "MMMM yyyy" + +#: js/calendar.js:835 +msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" +msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" + +#: js/calendar.js:837 +msgid "dddd, MMM d, yyyy" +msgstr "dddd, MMM d, yyyy" + +#: lib/app.php:121 +msgid "Birthday" +msgstr "Ngày sinh nhật" + +#: lib/app.php:122 +msgid "Business" +msgstr "Công việc" + +#: lib/app.php:123 +msgid "Call" +msgstr "Số điện thoại" + +#: lib/app.php:124 +msgid "Clients" +msgstr "Máy trạm" + +#: lib/app.php:125 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:126 +msgid "Holidays" +msgstr "Ngày lễ" + +#: lib/app.php:127 +msgid "Ideas" +msgstr "Ý tưởng" + +#: lib/app.php:128 +msgid "Journey" +msgstr "" + +#: lib/app.php:129 +msgid "Jubilee" +msgstr "Lễ kỷ niệm" + +#: lib/app.php:130 +msgid "Meeting" +msgstr "Hội nghị" + +#: lib/app.php:131 +msgid "Other" +msgstr "Khác" + +#: lib/app.php:132 +msgid "Personal" +msgstr "Cá nhân" + +#: lib/app.php:133 +msgid "Projects" +msgstr "Dự án" + +#: lib/app.php:134 +msgid "Questions" +msgstr "Câu hỏi" + +#: lib/app.php:135 +msgid "Work" +msgstr "Công việc" + +#: lib/app.php:351 lib/app.php:361 +msgid "by" +msgstr "" + +#: lib/app.php:359 lib/app.php:399 +msgid "unnamed" +msgstr "" + +#: lib/import.php:184 templates/calendar.php:12 +#: templates/part.choosecalendar.php:22 +msgid "New Calendar" +msgstr "Lịch mới" + +#: lib/object.php:372 +msgid "Does not repeat" +msgstr "Không lặp lại" + +#: lib/object.php:373 +msgid "Daily" +msgstr "Hàng ngày" + +#: lib/object.php:374 +msgid "Weekly" +msgstr "Hàng tuần" + +#: lib/object.php:375 +msgid "Every Weekday" +msgstr "Mỗi ngày trong tuần" + +#: lib/object.php:376 +msgid "Bi-Weekly" +msgstr "Hai tuần một lần" + +#: lib/object.php:377 +msgid "Monthly" +msgstr "Hàng tháng" + +#: lib/object.php:378 +msgid "Yearly" +msgstr "Hàng năm" + +#: lib/object.php:388 +msgid "never" +msgstr "không thay đổi" + +#: lib/object.php:389 +msgid "by occurrences" +msgstr "bởi xuất hiện" + +#: lib/object.php:390 +msgid "by date" +msgstr "bởi ngày" + +#: lib/object.php:400 +msgid "by monthday" +msgstr "bởi ngày trong tháng" + +#: lib/object.php:401 +msgid "by weekday" +msgstr "bởi ngày trong tuần" + +#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 +msgid "Monday" +msgstr "Thứ 2" + +#: lib/object.php:412 templates/calendar.php:5 +msgid "Tuesday" +msgstr "Thứ 3" + +#: lib/object.php:413 templates/calendar.php:5 +msgid "Wednesday" +msgstr "Thứ 4" + +#: lib/object.php:414 templates/calendar.php:5 +msgid "Thursday" +msgstr "Thứ 5" + +#: lib/object.php:415 templates/calendar.php:5 +msgid "Friday" +msgstr "Thứ " + +#: lib/object.php:416 templates/calendar.php:5 +msgid "Saturday" +msgstr "Thứ 7" + +#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 +msgid "Sunday" +msgstr "Chủ nhật" + +#: lib/object.php:427 +msgid "events week of month" +msgstr "sự kiện trong tuần của tháng" + +#: lib/object.php:428 +msgid "first" +msgstr "đầu tiên" + +#: lib/object.php:429 +msgid "second" +msgstr "Thứ hai" + +#: lib/object.php:430 +msgid "third" +msgstr "Thứ ba" + +#: lib/object.php:431 +msgid "fourth" +msgstr "Thứ tư" + +#: lib/object.php:432 +msgid "fifth" +msgstr "Thứ năm" + +#: lib/object.php:433 +msgid "last" +msgstr "" + +#: lib/object.php:467 templates/calendar.php:7 +msgid "January" +msgstr "Tháng 1" + +#: lib/object.php:468 templates/calendar.php:7 +msgid "February" +msgstr "Tháng 2" + +#: lib/object.php:469 templates/calendar.php:7 +msgid "March" +msgstr "Tháng 3" + +#: lib/object.php:470 templates/calendar.php:7 +msgid "April" +msgstr "Tháng 4" + +#: lib/object.php:471 templates/calendar.php:7 +msgid "May" +msgstr "Tháng 5" + +#: lib/object.php:472 templates/calendar.php:7 +msgid "June" +msgstr "Tháng 6" + +#: lib/object.php:473 templates/calendar.php:7 +msgid "July" +msgstr "Tháng 7" + +#: lib/object.php:474 templates/calendar.php:7 +msgid "August" +msgstr "Tháng 8" + +#: lib/object.php:475 templates/calendar.php:7 +msgid "September" +msgstr "Tháng 9" + +#: lib/object.php:476 templates/calendar.php:7 +msgid "October" +msgstr "Tháng 10" + +#: lib/object.php:477 templates/calendar.php:7 +msgid "November" +msgstr "Tháng 11" + +#: lib/object.php:478 templates/calendar.php:7 +msgid "December" +msgstr "Tháng 12" + +#: lib/object.php:488 +msgid "by events date" +msgstr "Theo ngày tháng sự kiện" + +#: lib/object.php:489 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:490 +msgid "by weeknumber(s)" +msgstr "số tuần" + +#: lib/object.php:491 +msgid "by day and month" +msgstr "ngày, tháng" + +#: lib/search.php:35 lib/search.php:37 lib/search.php:40 +msgid "Date" +msgstr "Ngày" + +#: lib/search.php:43 +msgid "Cal." +msgstr "Cal." + +#: templates/calendar.php:6 +msgid "Sun." +msgstr "" + +#: templates/calendar.php:6 +msgid "Mon." +msgstr "" + +#: templates/calendar.php:6 +msgid "Tue." +msgstr "" + +#: templates/calendar.php:6 +msgid "Wed." +msgstr "" + +#: templates/calendar.php:6 +msgid "Thu." +msgstr "" + +#: templates/calendar.php:6 +msgid "Fri." +msgstr "" + +#: templates/calendar.php:6 +msgid "Sat." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jan." +msgstr "" + +#: templates/calendar.php:8 +msgid "Feb." +msgstr "" + +#: templates/calendar.php:8 +msgid "Mar." +msgstr "" + +#: templates/calendar.php:8 +msgid "Apr." +msgstr "" + +#: templates/calendar.php:8 +msgid "May." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jun." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jul." +msgstr "" + +#: templates/calendar.php:8 +msgid "Aug." +msgstr "" + +#: templates/calendar.php:8 +msgid "Sep." +msgstr "" + +#: templates/calendar.php:8 +msgid "Oct." +msgstr "" + +#: templates/calendar.php:8 +msgid "Nov." +msgstr "" + +#: templates/calendar.php:8 +msgid "Dec." +msgstr "" + +#: templates/calendar.php:11 +msgid "All day" +msgstr "Tất cả các ngày" + +#: templates/calendar.php:13 +msgid "Missing fields" +msgstr "" + +#: templates/calendar.php:14 templates/part.eventform.php:19 +#: templates/part.showevent.php:11 +msgid "Title" +msgstr "Tiêu đề" + +#: templates/calendar.php:16 +msgid "From Date" +msgstr "Từ ngày" + +#: templates/calendar.php:17 +msgid "From Time" +msgstr "Từ thời gian" + +#: templates/calendar.php:18 +msgid "To Date" +msgstr "Tới ngày" + +#: templates/calendar.php:19 +msgid "To Time" +msgstr "Tới thời gian" + +#: templates/calendar.php:20 +msgid "The event ends before it starts" +msgstr "Sự kiện này kết thúc trước khi nó bắt đầu" + +#: templates/calendar.php:21 +msgid "There was a database fail" +msgstr "" + +#: templates/calendar.php:38 +msgid "Week" +msgstr "Tuần" + +#: templates/calendar.php:39 +msgid "Month" +msgstr "Tháng" + +#: templates/calendar.php:40 +msgid "List" +msgstr "Danh sách" + +#: templates/calendar.php:44 +msgid "Today" +msgstr "Hôm nay" + +#: templates/calendar.php:45 +msgid "Calendars" +msgstr "Lịch" + +#: templates/calendar.php:59 +msgid "There was a fail, while parsing the file." +msgstr "Có một thất bại, trong khi phân tích các tập tin." + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Chọn lịch hoạt động" + +#: templates/part.choosecalendar.php:2 +msgid "Your calendars" +msgstr "Lịch của bạn" + +#: templates/part.choosecalendar.php:27 +#: templates/part.choosecalendar.rowfields.php:11 +msgid "CalDav Link" +msgstr "Liên kết CalDav " + +#: templates/part.choosecalendar.php:31 +msgid "Shared calendars" +msgstr "Chia sẻ lịch" + +#: templates/part.choosecalendar.php:48 +msgid "No shared calendars" +msgstr "Không chia sẻ lcihj" + +#: templates/part.choosecalendar.rowfields.php:8 +msgid "Share Calendar" +msgstr "Chia sẻ lịch" + +#: templates/part.choosecalendar.rowfields.php:14 +msgid "Download" +msgstr "Tải về" + +#: templates/part.choosecalendar.rowfields.php:17 +msgid "Edit" +msgstr "Chỉnh sửa" + +#: templates/part.choosecalendar.rowfields.php:20 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Xóa" + +#: templates/part.choosecalendar.rowfields.shared.php:4 +msgid "shared with you by" +msgstr "Chia sẻ bởi" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "Lịch mới" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "sửa Lịch" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "Hiển thị tên" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Kích hoạt" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "Màu lịch" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Lưu" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Submit" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "Hủy" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "Sửa sự kiện" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" + +#: templates/part.eventform.php:8 templates/part.showevent.php:3 +msgid "Eventinfo" +msgstr "" + +#: templates/part.eventform.php:9 templates/part.showevent.php:4 +msgid "Repeating" +msgstr "" + +#: templates/part.eventform.php:10 templates/part.showevent.php:5 +msgid "Alarm" +msgstr "" + +#: templates/part.eventform.php:11 templates/part.showevent.php:6 +msgid "Attendees" +msgstr "" + +#: templates/part.eventform.php:13 +msgid "Share" +msgstr "Chia sẻ" + +#: templates/part.eventform.php:21 +msgid "Title of the Event" +msgstr "Tên sự kiện" + +#: templates/part.eventform.php:27 templates/part.showevent.php:19 +msgid "Category" +msgstr "Danh mục" + +#: templates/part.eventform.php:29 +msgid "Separate categories with commas" +msgstr "" + +#: templates/part.eventform.php:30 +msgid "Edit categories" +msgstr "" + +#: templates/part.eventform.php:56 templates/part.showevent.php:52 +msgid "All Day Event" +msgstr "Sự kiện trong ngày" + +#: templates/part.eventform.php:60 templates/part.showevent.php:56 +msgid "From" +msgstr "Từ" + +#: templates/part.eventform.php:68 templates/part.showevent.php:64 +msgid "To" +msgstr "Tới" + +#: templates/part.eventform.php:76 templates/part.showevent.php:72 +msgid "Advanced options" +msgstr "Tùy chọn nâng cao" + +#: templates/part.eventform.php:81 templates/part.showevent.php:77 +msgid "Location" +msgstr "Nơi" + +#: templates/part.eventform.php:83 +msgid "Location of the Event" +msgstr "Nơi tổ chức sự kiện" + +#: templates/part.eventform.php:89 templates/part.showevent.php:85 +msgid "Description" +msgstr "Mô tả" + +#: templates/part.eventform.php:91 +msgid "Description of the Event" +msgstr "Mô tả sự kiện" + +#: templates/part.eventform.php:100 templates/part.showevent.php:95 +msgid "Repeat" +msgstr "Lặp lại" + +#: templates/part.eventform.php:107 templates/part.showevent.php:102 +msgid "Advanced" +msgstr "Nâng cao" + +#: templates/part.eventform.php:151 templates/part.showevent.php:146 +msgid "Select weekdays" +msgstr "Chọn ngày trong tuần" + +#: templates/part.eventform.php:164 templates/part.eventform.php:177 +#: templates/part.showevent.php:159 templates/part.showevent.php:172 +msgid "Select days" +msgstr "Chọn ngày" + +#: templates/part.eventform.php:169 templates/part.showevent.php:164 +msgid "and the events day of year." +msgstr "và sự kiện của ngày trong năm" + +#: templates/part.eventform.php:182 templates/part.showevent.php:177 +msgid "and the events day of month." +msgstr "và sự kiện của một ngày trong năm" + +#: templates/part.eventform.php:190 templates/part.showevent.php:185 +msgid "Select months" +msgstr "Chọn tháng" + +#: templates/part.eventform.php:203 templates/part.showevent.php:198 +msgid "Select weeks" +msgstr "Chọn tuần" + +#: templates/part.eventform.php:208 templates/part.showevent.php:203 +msgid "and the events week of year." +msgstr "và sự kiện của tuần trong năm." + +#: templates/part.eventform.php:214 templates/part.showevent.php:209 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:220 templates/part.showevent.php:215 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:233 templates/part.showevent.php:228 +msgid "occurrences" +msgstr "" + +#: templates/part.import.php:14 +msgid "create a new calendar" +msgstr "Tạo lịch mới" + +#: templates/part.import.php:17 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:24 +msgid "Please choose a calendar" +msgstr "" + +#: templates/part.import.php:36 +msgid "Name of new calendar" +msgstr "Tên lịch mới" + +#: templates/part.import.php:44 +msgid "Take an available name!" +msgstr "" + +#: templates/part.import.php:45 +msgid "" +"A Calendar with this name already exists. If you continue anyhow, these " +"calendars will be merged." +msgstr "" + +#: templates/part.import.php:47 +msgid "Import" +msgstr "" + +#: templates/part.import.php:56 +msgid "Close Dialog" +msgstr "Đóng hộp thoại" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "Tạo một sự kiện mới" + +#: templates/part.showevent.php:1 +msgid "View an event" +msgstr "Xem một sự kiện" + +#: templates/part.showevent.php:23 +msgid "No categories selected" +msgstr "Không danh sách nào được chọn" + +#: templates/part.showevent.php:37 +msgid "of" +msgstr "của" + +#: templates/part.showevent.php:59 templates/part.showevent.php:67 +msgid "at" +msgstr "tại" + +#: templates/settings.php:14 +msgid "Timezone" +msgstr "Múi giờ" + +#: templates/settings.php:31 +msgid "Check always for changes of the timezone" +msgstr "Luôn kiểm tra múi giờ" + +#: templates/settings.php:33 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:35 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:36 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:40 +msgid "First day of the week" +msgstr "" + +#: templates/settings.php:47 +msgid "Cache" +msgstr "" + +#: templates/settings.php:48 +msgid "Clear cache for repeating events" +msgstr "" + +#: templates/settings.php:53 +msgid "Calendar CalDAV syncing addresses" +msgstr "" + +#: templates/settings.php:53 +msgid "more info" +msgstr "" + +#: templates/settings.php:55 +msgid "Primary address (Kontact et al)" +msgstr "" + +#: templates/settings.php:57 +msgid "iOS/OS X" +msgstr "" + +#: templates/settings.php:59 +msgid "Read only iCalendar link(s)" +msgstr "" + +#: templates/share.dropdown.php:20 +msgid "Users" +msgstr "" + +#: templates/share.dropdown.php:21 +msgid "select users" +msgstr "" + +#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 +msgid "Editable" +msgstr "" + +#: templates/share.dropdown.php:48 +msgid "Groups" +msgstr "" + +#: templates/share.dropdown.php:49 +msgid "select groups" +msgstr "" + +#: templates/share.dropdown.php:75 +msgid "make public" +msgstr "" diff --git a/l10n/vi/contacts.po b/l10n/vi/contacts.po new file mode 100644 index 0000000000..41383998b6 --- /dev/null +++ b/l10n/vi/contacts.po @@ -0,0 +1,872 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Sơn Nguyễn , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcontact.php:47 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "tên phần tử không được thiết lập." + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "id không được thiết lập." + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "" + +#: ajax/addproperty.php:56 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:67 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:76 +msgid "Trying to add duplicate property: " +msgstr "" + +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "" + +#: ajax/categories/categoriesfor.php:17 +msgid "No ID provided" +msgstr "Không có ID được cung cấp" + +#: ajax/categories/categoriesfor.php:34 +msgid "Error setting checksum." +msgstr "" + +#: ajax/categories/delete.php:19 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/categories/delete.php:26 +msgid "No address books found." +msgstr "Không tìm thấy sổ địa chỉ." + +#: ajax/categories/delete.php:34 +msgid "No contacts found." +msgstr "Không tìm thấy danh sách" + +#: ajax/contactdetails.php:31 +msgid "Missing ID" +msgstr "Missing ID" + +#: ajax/contactdetails.php:36 +msgid "Error parsing VCard for ID: \"" +msgstr "" + +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 +#: ajax/uploadphoto.php:68 +msgid "No contact ID was submitted." +msgstr "" + +#: ajax/currentphoto.php:36 +msgid "Error reading contact photo." +msgstr "Lỗi đọc liên lạc hình ảnh." + +#: ajax/currentphoto.php:48 +msgid "Error saving temporary file." +msgstr "" + +#: ajax/currentphoto.php:51 +msgid "The loading photo is not valid." +msgstr "Các hình ảnh tải không hợp lệ." + +#: ajax/deleteproperty.php:36 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: ajax/deleteproperty.php:43 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/editname.php:31 +msgid "Contact ID is missing." +msgstr "" + +#: ajax/oc_photo.php:32 +msgid "No photo path was submitted." +msgstr "" + +#: ajax/oc_photo.php:39 +msgid "File doesn't exist:" +msgstr "Tập tin không tồn tại" + +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 +msgid "Error loading image." +msgstr "Lỗi khi tải hình ảnh." + +#: ajax/savecrop.php:67 +msgid "Error getting contact object." +msgstr "" + +#: ajax/savecrop.php:76 +msgid "Error getting PHOTO property." +msgstr "" + +#: ajax/savecrop.php:93 +msgid "Error saving contact." +msgstr "" + +#: ajax/savecrop.php:103 +msgid "Error resizing image" +msgstr "" + +#: ajax/savecrop.php:106 +msgid "Error cropping image" +msgstr "" + +#: ajax/savecrop.php:109 +msgid "Error creating temporary image" +msgstr "" + +#: ajax/savecrop.php:112 +msgid "Error finding image: " +msgstr "" + +#: ajax/saveproperty.php:40 +msgid "checksum is not set." +msgstr "" + +#: ajax/saveproperty.php:59 +msgid "Information about vCard is incorrect. Please reload the page: " +msgstr "" + +#: ajax/saveproperty.php:64 +msgid "Something went FUBAR. " +msgstr "" + +#: ajax/saveproperty.php:133 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:21 +msgid "Cannot update addressbook with an empty name." +msgstr "" + +#: ajax/updateaddressbook.php:25 +msgid "Error updating addressbook." +msgstr "" + +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 +msgid "Error uploading contacts to storage." +msgstr "Lỗi tải lên danh sách địa chỉ để lưu trữ." + +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 +msgid "There is no error, the file uploaded with success" +msgstr "Không có lỗi, các tập tin tải lên thành công" + +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 +msgid "No file was uploaded" +msgstr "" + +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 +msgid "Couldn't save temporary image: " +msgstr "" + +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 +msgid "Couldn't load temporary image: " +msgstr "" + +#: ajax/uploadphoto.php:71 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: appinfo/app.php:19 templates/settings.php:3 +msgid "Contacts" +msgstr "Liên lạc" + +#: js/contacts.js:53 +msgid "Sorry, this functionality has not been implemented yet" +msgstr "" + +#: js/contacts.js:53 +msgid "Not implemented" +msgstr "" + +#: js/contacts.js:58 +msgid "Couldn't get a valid address." +msgstr "" + +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 +msgid "Error" +msgstr "" + +#: js/contacts.js:389 lib/search.php:15 +msgid "Contact" +msgstr "Danh sách" + +#: js/contacts.js:389 +msgid "New" +msgstr "" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "" + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "" + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "" + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "" + +#: js/loader.js:49 +msgid "Result: " +msgstr "" + +#: js/loader.js:49 +msgid " imported, " +msgstr "" + +#: js/loader.js:49 +msgid " failed." +msgstr "" + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "" + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "" + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "" + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "Địa chỉ" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "Điện thoại bàn" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "Email" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "Tổ chức" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "Công việc" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "Nhà" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "Di động" + +#: lib/app.php:123 +msgid "Text" +msgstr "" + +#: lib/app.php:124 +msgid "Voice" +msgstr "" + +#: lib/app.php:125 +msgid "Message" +msgstr "" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "số trang" + +#: lib/app.php:134 +msgid "Internet" +msgstr "" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "Ngày sinh nhật" + +#: lib/app.php:170 +msgid "Business" +msgstr "" + +#: lib/app.php:171 +msgid "Call" +msgstr "" + +#: lib/app.php:172 +msgid "Clients" +msgstr "" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "" + +#: lib/app.php:176 +msgid "Journey" +msgstr "" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "" + +#: lib/app.php:179 +msgid "Other" +msgstr "" + +#: lib/app.php:180 +msgid "Personal" +msgstr "" + +#: lib/app.php:181 +msgid "Projects" +msgstr "" + +#: lib/app.php:182 +msgid "Questions" +msgstr "" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "" + +#: templates/index.php:15 +msgid "Add Contact" +msgstr "Thêm liên lạc" + +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/index.php:20 +msgid "Addressbooks" +msgstr "Sổ địa chỉ" + +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "" + +#: templates/index.php:54 +msgid "Actions" +msgstr "" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Configure Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:8 +msgid "CardDav Link" +msgstr "CardDav Link" + +#: templates/part.chooseaddressbook.rowfields.php:11 +msgid "Download" +msgstr "Tải về" + +#: templates/part.chooseaddressbook.rowfields.php:14 +msgid "Edit" +msgstr "Sửa" + +#: templates/part.chooseaddressbook.rowfields.php:17 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 +msgid "Delete" +msgstr "Xóa" + +#: templates/part.contact.php:16 +msgid "Drop photo to upload" +msgstr "" + +#: templates/part.contact.php:18 +msgid "Delete current photo" +msgstr "" + +#: templates/part.contact.php:19 +msgid "Edit current photo" +msgstr "" + +#: templates/part.contact.php:20 +msgid "Upload new photo" +msgstr "" + +#: templates/part.contact.php:21 +msgid "Select photo from ownCloud" +msgstr "" + +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr "" + +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" +msgstr "" + +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "" + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "" + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "Điện thoại" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "Xóa liên lạc" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "" + +#: templates/part.edit_address_dialog.php:6 +msgid "Edit address" +msgstr "" + +#: templates/part.edit_address_dialog.php:10 +msgid "Type" +msgstr "" + +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 +msgid "PO Box" +msgstr "Hòm thư bưu điện" + +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "" + +#: templates/part.edit_address_dialog.php:30 +msgid "Extended" +msgstr "" + +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "" + +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 +msgid "City" +msgstr "Thành phố" + +#: templates/part.edit_address_dialog.php:42 +msgid "Region" +msgstr "Vùng/miền" + +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "" + +#: templates/part.edit_address_dialog.php:48 +msgid "Zipcode" +msgstr "Mã bưu điện" + +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 +msgid "Country" +msgstr "Quốc gia" + +#: templates/part.edit_name_dialog.php:16 +msgid "Addressbook" +msgstr "Sổ địa chỉ" + +#: templates/part.edit_name_dialog.php:23 +msgid "Hon. prefixes" +msgstr "" + +#: templates/part.edit_name_dialog.php:27 +msgid "Miss" +msgstr "" + +#: templates/part.edit_name_dialog.php:28 +msgid "Ms" +msgstr "" + +#: templates/part.edit_name_dialog.php:29 +msgid "Mr" +msgstr "" + +#: templates/part.edit_name_dialog.php:30 +msgid "Sir" +msgstr "" + +#: templates/part.edit_name_dialog.php:31 +msgid "Mrs" +msgstr "" + +#: templates/part.edit_name_dialog.php:32 +msgid "Dr" +msgstr "" + +#: templates/part.edit_name_dialog.php:35 +msgid "Given name" +msgstr "" + +#: templates/part.edit_name_dialog.php:37 +msgid "Additional names" +msgstr "" + +#: templates/part.edit_name_dialog.php:39 +msgid "Family name" +msgstr "" + +#: templates/part.edit_name_dialog.php:41 +msgid "Hon. suffixes" +msgstr "" + +#: templates/part.edit_name_dialog.php:45 +msgid "J.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:46 +msgid "M.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:47 +msgid "D.O." +msgstr "" + +#: templates/part.edit_name_dialog.php:48 +msgid "D.C." +msgstr "" + +#: templates/part.edit_name_dialog.php:49 +msgid "Ph.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:50 +msgid "Esq." +msgstr "" + +#: templates/part.edit_name_dialog.php:51 +msgid "Jr." +msgstr "" + +#: templates/part.edit_name_dialog.php:52 +msgid "Sn." +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Sổ địa chỉ mới" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Sửa sổ địa chỉ" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Hiển thị tên" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Kích hoạt" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Lưu" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Submit" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Hủy" + +#: templates/part.import.php:1 +msgid "Import a contacts file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the addressbook" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new addressbook" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new addressbook" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing contacts" +msgstr "" + +#: templates/part.no_contacts.php:2 +msgid "You have no contacts in your addressbook." +msgstr "" + +#: templates/part.no_contacts.php:4 +msgid "Add contact" +msgstr "" + +#: templates/part.no_contacts.php:5 +msgid "Configure addressbooks" +msgstr "" + +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing addresses" +msgstr "" + +#: templates/settings.php:4 +msgid "more info" +msgstr "" + +#: templates/settings.php:6 +msgid "Primary address (Kontact et al)" +msgstr "" + +#: templates/settings.php:8 +msgid "iOS/OS X" +msgstr "" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po new file mode 100644 index 0000000000..b00d507167 --- /dev/null +++ b/l10n/vi/core.po @@ -0,0 +1,269 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Son Nguyen , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:28+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "Tên ứng dụng không tồn tại" + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "Không có danh mục được thêm?" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "Danh mục này đã được tạo :" + +#: js/jquery-ui-1.8.16.custom.min.js:511 +msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" +msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" + +#: js/js.js:519 +msgid "January" +msgstr "Tháng 1" + +#: js/js.js:519 +msgid "February" +msgstr "Tháng 2" + +#: js/js.js:519 +msgid "March" +msgstr "Tháng 3" + +#: js/js.js:519 +msgid "April" +msgstr "Tháng 4" + +#: js/js.js:519 +msgid "May" +msgstr "Tháng 5" + +#: js/js.js:519 +msgid "June" +msgstr "Tháng 6" + +#: js/js.js:520 +msgid "July" +msgstr "Tháng 7" + +#: js/js.js:520 +msgid "August" +msgstr "Tháng 8" + +#: js/js.js:520 +msgid "September" +msgstr "Tháng 9" + +#: js/js.js:520 +msgid "October" +msgstr "Tháng 10" + +#: js/js.js:520 +msgid "November" +msgstr "Tháng 11" + +#: js/js.js:520 +msgid "December" +msgstr "Tháng 12" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "Hủy" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "No" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "Yes" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "Ok" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "Không có thể loại nào được chọn để xóa." + +#: js/oc-vcategories.js:68 +msgid "Error" +msgstr "Lỗi" + +#: lostpassword/index.php:26 +msgid "ownCloud password reset" +msgstr "Khôi phục mật khẩu Owncloud " + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Vui lòng kiểm tra Email để khôi phục lại mật khẩu." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Yêu cầu" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Bạn đã nhập sai mật khẩu hay tên người dùng !" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:25 +#: templates/login.php:9 +msgid "Username" +msgstr "Tên người dùng" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request reset" +msgstr "Yêu cầu thiết lập lại " + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Mật khẩu của bạn đã được khôi phục" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Trang đăng nhập" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Mật khẩu mới" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Khôi phục mật khẩu" + +#: strings.php:5 +msgid "Personal" +msgstr "Cá nhân" + +#: strings.php:6 +msgid "Users" +msgstr "Người sử dụng" + +#: strings.php:7 +msgid "Apps" +msgstr "Ứng dụng" + +#: strings.php:8 +msgid "Admin" +msgstr "Quản trị" + +#: strings.php:9 +msgid "Help" +msgstr "Giúp đỡ" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "Truy cập bị cấm " + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Không tìm thấy Clound" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "Sửa thể loại" + +#: templates/edit_categories_dialog.php:14 +msgid "Add" +msgstr "Thêm" + +#: templates/installation.php:23 +msgid "Create an admin account" +msgstr "Tạo một tài khoản quản trị" + +#: templates/installation.php:29 templates/login.php:13 +msgid "Password" +msgstr "Mật khẩu" + +#: templates/installation.php:35 +msgid "Advanced" +msgstr "Nâng cao" + +#: templates/installation.php:37 +msgid "Data folder" +msgstr "Thư mục dữ liệu" + +#: templates/installation.php:44 +msgid "Configure the database" +msgstr "Cấu hình Cơ Sở Dữ Liệu" + +#: templates/installation.php:49 templates/installation.php:60 +#: templates/installation.php:70 +msgid "will be used" +msgstr "được sử dụng" + +#: templates/installation.php:82 +msgid "Database user" +msgstr "Người dùng cơ sở dữ liệu" + +#: templates/installation.php:86 +msgid "Database password" +msgstr "Mật khẩu cơ sở dữ liệu" + +#: templates/installation.php:90 +msgid "Database name" +msgstr "Tên cơ sở dữ liệu" + +#: templates/installation.php:96 +msgid "Database host" +msgstr "Database host" + +#: templates/installation.php:101 +msgid "Finish setup" +msgstr "Cài đặt hoàn tất" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "các dịch vụ web dưới sự kiểm soát của bạn" + +#: templates/layout.user.php:49 +msgid "Log out" +msgstr "Đăng xuất" + +#: templates/layout.user.php:64 templates/layout.user.php:65 +msgid "Settings" +msgstr "Cài đặt" + +#: templates/login.php:6 +msgid "Lost your password?" +msgstr "Bạn quên mật khẩu ?" + +#: templates/login.php:17 +msgid "remember" +msgstr "Nhớ" + +#: templates/login.php:18 +msgid "Log in" +msgstr "Đăng nhập" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Bạn đã đăng xuất." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "Lùi lại" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "Kế tiếp" diff --git a/l10n/vi/files.po b/l10n/vi/files.po new file mode 100644 index 0000000000..c7b868c5bc --- /dev/null +++ b/l10n/vi/files.po @@ -0,0 +1,199 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Sơn Nguyễn , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0\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:22 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:23 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "Tập tin" + +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Xóa" + +#: js/filelist.js:186 +msgid "undo deletion" +msgstr "" + +#: js/files.js:170 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:199 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:199 +msgid "Upload Error" +msgstr "Tải lên lỗi" + +#: js/files.js:227 js/files.js:318 js/files.js:347 +msgid "Pending" +msgstr "Chờ" + +#: js/files.js:332 +msgid "Upload cancelled." +msgstr "Hủy tải lên" + +#: js/files.js:456 +msgid "Invalid name, '/' is not allowed." +msgstr "Tên không hợp lệ ,không được phép dùng '/'" + +#: js/files.js:631 templates/index.php:55 +msgid "Size" +msgstr "Kích cỡ" + +#: js/files.js:632 templates/index.php:56 +msgid "Modified" +msgstr "Thay đổi" + +#: js/files.js:659 +msgid "folder" +msgstr "folder" + +#: js/files.js:661 +msgid "folders" +msgstr "folders" + +#: js/files.js:669 +msgid "file" +msgstr "file" + +#: js/files.js:671 +msgid "files" +msgstr "files" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "Xử lý tập tin" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "Kích thước tối đa " + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "Cho phép ZIP-download" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "0 là không giới hạn" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "Kích thước tối đa cho các tập tin ZIP" + +#: templates/index.php:7 +msgid "New" +msgstr "Mới" + +#: templates/index.php:9 +msgid "Text file" +msgstr "Tập tin văn bản" + +#: templates/index.php:10 +msgid "Folder" +msgstr "Folder" + +#: templates/index.php:11 +msgid "From url" +msgstr "Từ url" + +#: templates/index.php:21 +msgid "Upload" +msgstr "Tải lên" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "Hủy upload" + +#: templates/index.php:39 +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:47 +msgid "Name" +msgstr "Tên" + +#: templates/index.php:49 +msgid "Share" +msgstr "Chia sẻ" + +#: templates/index.php:51 +msgid "Download" +msgstr "Tải xuống" + +#: templates/index.php:64 +msgid "Upload too large" +msgstr "File tải lên quá lớn" + +#: templates/index.php:66 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:71 +msgid "Files are being scanned, please wait." +msgstr "Tập tin đang được quét ,vui lòng chờ." + +#: templates/index.php:74 +msgid "Current scanning" +msgstr "" diff --git a/l10n/vi/gallery.po b/l10n/vi/gallery.po new file mode 100644 index 0000000000..741f026c53 --- /dev/null +++ b/l10n/vi/gallery.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Son Nguyen , 2012. +# Sơn Nguyễn , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:39 +msgid "Pictures" +msgstr "Hình ảnh" + +#: js/pictures.js:12 +msgid "Share gallery" +msgstr "Chia sẻ gallery" + +#: js/pictures.js:32 +msgid "Error: " +msgstr "Lỗi :" + +#: js/pictures.js:32 +msgid "Internal error" +msgstr "Lỗi nội bộ" + +#: templates/index.php:27 +msgid "Slideshow" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Trở lại" + +#: templates/view_album.php:36 +msgid "Remove confirmation" +msgstr "Xóa xác nhận" + +#: templates/view_album.php:37 +msgid "Do you want to remove album" +msgstr "Bạn muốn xóa album này " + +#: templates/view_album.php:40 +msgid "Change album name" +msgstr "Đổi tên album" + +#: templates/view_album.php:43 +msgid "New album name" +msgstr "Tên album mới" diff --git a/l10n/vi/media.po b/l10n/vi/media.po new file mode 100644 index 0000000000..9c4613fa2b --- /dev/null +++ b/l10n/vi/media.po @@ -0,0 +1,67 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Sơn Nguyễn , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-23 06:41+0000\n" +"Last-Translator: Sơn Nguyễn \n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:45 templates/player.php:8 +msgid "Music" +msgstr "Âm nhạc" + +#: js/music.js:18 +msgid "Add album to playlist" +msgstr "Thêm album vào playlist" + +#: templates/music.php:3 templates/player.php:12 +msgid "Play" +msgstr "Play" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:13 +msgid "Pause" +msgstr "Tạm dừng" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Trang trước" + +#: templates/music.php:6 templates/player.php:14 +msgid "Next" +msgstr "Tiếp theo" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Tắt" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Bật" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Quét lại bộ sưu tập" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Nghệ sỹ" + +#: templates/music.php:38 +msgid "Album" +msgstr "Album" + +#: templates/music.php:39 +msgid "Title" +msgstr "Tiêu đề" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po new file mode 100644 index 0000000000..e387aaaa9e --- /dev/null +++ b/l10n/vi/settings.po @@ -0,0 +1,208 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Son Nguyen , 2012. +# Sơn Nguyễn , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "Lưu email" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "Email không hợp lệ" + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "Đổi OpenID" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "Yêu cầu không hợp lệ" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "Ngôn ngữ đã được thay đổi" + +#: js/apps.js:31 js/apps.js:67 +msgid "Disable" +msgstr "Vô hiệu" + +#: js/apps.js:31 js/apps.js:54 +msgid "Enable" +msgstr "Cho phép" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "Đang tiến hành lưu ..." + +#: personal.php:41 personal.php:42 +msgid "__language_name__" +msgstr "__Ngôn ngữ___" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 +msgid "Log" +msgstr "Log" + +#: templates/admin.php:55 +msgid "More" +msgstr "nhiều hơn" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "Thêm ứng dụng của bạn" + +#: templates/apps.php:24 +msgid "Select an App" +msgstr "Chọn một ứng dụng" + +#: templates/apps.php:27 +msgid "See application page at apps.owncloud.com" +msgstr "Xem ứng dụng tại apps.owncloud.com" + +#: templates/apps.php:28 +msgid "-licensed" +msgstr "Giấy phép đã được cấp" + +#: templates/apps.php:28 +msgid "by" +msgstr "bởi" + +#: templates/help.php:8 +msgid "Documentation" +msgstr "Tài liệu" + +#: templates/help.php:9 +msgid "Managing Big Files" +msgstr "Quản lý tập tin lớn" + +#: templates/help.php:10 +msgid "Ask a question" +msgstr "Đặt câu hỏi" + +#: templates/help.php:22 +msgid "Problems connecting to help database." +msgstr "Vấn đề kết nối đến cơ sở dữ liệu." + +#: templates/help.php:23 +msgid "Go there manually." +msgstr "Đến bằng thủ công" + +#: templates/help.php:31 +msgid "Answer" +msgstr "trả lời" + +#: templates/personal.php:8 +msgid "You use" +msgstr "Bạn sử dụng" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "có sẵn" + +#: templates/personal.php:12 +msgid "Desktop and Mobile Syncing Clients" +msgstr "Đồng bộ dữ liệu" + +#: templates/personal.php:13 +msgid "Download" +msgstr "Tải về" + +#: templates/personal.php:19 +msgid "Your password got changed" +msgstr "Mật khẩu đã được thay đổi" + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "Không thể đổi mật khẩu" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "Mật khẩu cũ" + +#: templates/personal.php:22 +msgid "New password" +msgstr "Mật khẩu mới " + +#: templates/personal.php:23 +msgid "show" +msgstr "Hiện" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "Đổi mật khẩu" + +#: templates/personal.php:30 +msgid "Email" +msgstr "Email" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "Email của bạn" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu" + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "Ngôn ngữ" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "Dịch " + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "sử dụng địa chỉ này để kết nối với ownCloud của bạn trong quản lý tập tin " + +#: templates/users.php:15 templates/users.php:60 +msgid "Name" +msgstr "Tên" + +#: templates/users.php:17 templates/users.php:61 +msgid "Password" +msgstr "Mật khẩu" + +#: templates/users.php:19 templates/users.php:62 templates/users.php:78 +msgid "Groups" +msgstr "Nhóm" + +#: templates/users.php:25 +msgid "Create" +msgstr "Tạo" + +#: templates/users.php:28 +msgid "Default Quota" +msgstr "Hạn ngạch mặt định" + +#: templates/users.php:47 templates/users.php:103 +msgid "Other" +msgstr "Khác" + +#: templates/users.php:63 +msgid "Quota" +msgstr "Hạn ngạch" + +#: templates/users.php:110 +msgid "Delete" +msgstr "Xóa" diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php new file mode 100644 index 0000000000..41e4441b1c --- /dev/null +++ b/settings/l10n/vi.php @@ -0,0 +1,48 @@ + "Lưu email", +"Invalid email" => "Email không hợp lệ", +"OpenID Changed" => "Đổi OpenID", +"Invalid request" => "Yêu cầu không hợp lệ", +"Language changed" => "Ngôn ngữ đã được thay đổi", +"Disable" => "Vô hiệu", +"Enable" => "Cho phép", +"Saving..." => "Đang tiến hành lưu ...", +"__language_name__" => "__Ngôn ngữ___", +"Log" => "Log", +"More" => "nhiều hơn", +"Add your App" => "Thêm ứng dụng của bạn", +"Select an App" => "Chọn một ứng dụng", +"See application page at apps.owncloud.com" => "Xem ứng dụng tại apps.owncloud.com", +"-licensed" => "Giấy phép đã được cấp", +"by" => "bởi", +"Documentation" => "Tài liệu", +"Managing Big Files" => "Quản lý tập tin lớn", +"Ask a question" => "Đặt câu hỏi", +"Problems connecting to help database." => "Vấn đề kết nối đến cơ sở dữ liệu.", +"Go there manually." => "Đến bằng thủ công", +"Answer" => "trả lời", +"You use" => "Bạn sử dụng", +"of the available" => "có sẵn", +"Desktop and Mobile Syncing Clients" => "Đồng bộ dữ liệu", +"Download" => "Tải về", +"Your password got changed" => "Mật khẩu đã được thay đổi", +"Unable to change your password" => "Không thể đổi mật khẩu", +"Current password" => "Mật khẩu cũ", +"New password" => "Mật khẩu mới ", +"show" => "Hiện", +"Change password" => "Đổi mật khẩu", +"Email" => "Email", +"Your email address" => "Email của bạn", +"Fill in an email address to enable password recovery" => "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu", +"Language" => "Ngôn ngữ", +"Help translate" => "Dịch ", +"use this address to connect to your ownCloud in your file manager" => "sử dụng địa chỉ này để kết nối với ownCloud của bạn trong quản lý tập tin ", +"Name" => "Tên", +"Password" => "Mật khẩu", +"Groups" => "Nhóm", +"Create" => "Tạo", +"Default Quota" => "Hạn ngạch mặt định", +"Other" => "Khác", +"Quota" => "Hạn ngạch", +"Delete" => "Xóa" +); From f7155b42765fe0fb69c36a01750f046f34e9eaaf Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 26 Jul 2012 14:46:03 +0200 Subject: [PATCH 31/68] convert through caldav transmitted rgba calendarcolor to rgb --- apps/calendar/lib/connector_sabre.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/calendar/lib/connector_sabre.php b/apps/calendar/lib/connector_sabre.php index 263fb7ffde..8eea06da7e 100644 --- a/apps/calendar/lib/connector_sabre.php +++ b/apps/calendar/lib/connector_sabre.php @@ -105,6 +105,9 @@ class OC_Connector_Sabre_CalDAV extends Sabre_CalDAV_Backend_Abstract { if(!isset($newValues['timezone'])) $newValues['timezone'] = null; if(!isset($newValues['calendarorder'])) $newValues['calendarorder'] = 0; if(!isset($newValues['calendarcolor'])) $newValues['calendarcolor'] = null; + if(!is_null($newValues['calendarcolor']) && strlen($newValues['calendarcolor']) == 9){ + $newValues['calendarcolor'] = substr($newValues['calendarcolor'], 0, 7); + } return OC_Calendar_Calendar::addCalendarFromDAVData($principalUri,$calendarUri,$newValues['displayname'],$newValues['components'],$newValues['timezone'],$newValues['calendarorder'],$newValues['calendarcolor']); } @@ -192,7 +195,10 @@ class OC_Connector_Sabre_CalDAV extends Sabre_CalDAV_Backend_Abstract { if(!isset($newValues['timezone'])) $newValues['timezone'] = null; if(!isset($newValues['calendarorder'])) $newValues['calendarorder'] = null; if(!isset($newValues['calendarcolor'])) $newValues['calendarcolor'] = null; - + if(!is_null($newValues['calendarcolor']) && strlen($newValues['calendarcolor']) == 9){ + $newValues['calendarcolor'] = substr($newValues['calendarcolor'], 0, 7); + } + OC_Calendar_Calendar::editCalendar($calendarId,$newValues['displayname'],null,$newValues['timezone'],$newValues['calendarorder'],$newValues['calendarcolor']); return true; From e4679770c4d85896bef3e81125e86e272bb6cd64 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 26 Jul 2012 15:12:57 +0200 Subject: [PATCH 32/68] declare OCP\App::register as deprecated --- lib/public/app.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lib/public/app.php b/lib/public/app.php index 28411933be..5689f53ffb 100644 --- a/lib/public/app.php +++ b/lib/public/app.php @@ -34,6 +34,21 @@ namespace OCP; * This class provides functions to manage apps in ownCloud */ class App { + /** + * @brief Makes owncloud aware of this app + * @brief This call is deprecated and not necessary to use. + * @param $data array with all information + * @returns true/false + * + * @deprecated this method is deprecated + * Do not call it anymore + * It'll remain in our public API for compatibility reasons + * + */ + public static function register( $data ){ + return \OC_App::register( $data ); + } + /** * @brief adds an entry to the navigation * @param $data array containing the data From c8de77b3fddf52eeaf0f81224e9b4aa2085bcc59 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 26 Jul 2012 16:03:19 +0200 Subject: [PATCH 33/68] fix errors like Failed opening required ownCloudcalendar/appinfo/remote.php --- remote.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote.php b/remote.php index 8461eea19a..8dc4df1bd2 100644 --- a/remote.php +++ b/remote.php @@ -34,7 +34,7 @@ switch ($app) { default: OC_Util::checkAppEnabled($app); OC_App::loadApp($app); - $file = OC_App::getAppPath($app) .'/'. $parts[1]; + $file = '/' . OC_App::getAppPath($app) .'/'. $parts[1]; break; } $baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/'; From b893aa9567d8c2a5f82359374ecaef4f6c3bd8c4 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 25 Jul 2012 19:01:31 +0200 Subject: [PATCH 34/68] code style --- apps/user_ldap/lib/connection.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index e54a8e2b24..96ffea4b64 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -110,13 +110,13 @@ class Connection { $this->config['ldapNoCase'] = \OCP\Config::getAppValue($this->configID, 'ldap_nocase', 0); $this->config['ldapUserDisplayName'] = mb_strtolower(\OCP\Config::getAppValue($this->configID, 'ldap_display_name', 'uid'), 'UTF-8'); $this->config['ldapUserFilter'] = \OCP\Config::getAppValue($this->configID, 'ldap_userlist_filter','objectClass=person'); - $this->config['ldapGroupFilter'] = \OCP\Config::getAppValue($this->configID, 'ldap_group_filter','(objectClass=posixGroup)'); + $this->config['ldapGroupFilter'] = \OCP\Config::getAppValue($this->configID, 'ldap_group_filter','(objectClass=posixGroup)'); $this->config['ldapLoginFilter'] = \OCP\Config::getAppValue($this->configID, 'ldap_login_filter', '(uid=%uid)'); $this->config['ldapGroupDisplayName'] = mb_strtolower(\OCP\Config::getAppValue($this->configID, 'ldap_group_display_name', 'uid'), 'UTF-8'); $this->config['ldapQuotaAttribute'] = \OCP\Config::getAppValue($this->configID, 'ldap_quota_attr', ''); $this->config['ldapQuotaDefault'] = \OCP\Config::getAppValue($this->configID, 'ldap_quota_def', ''); - $this->config['ldapEmailAttribute'] = \OCP\Config::getAppValue($this->configID, 'ldap_email_attr', ''); - $this->config['ldapGroupMemberAssocAttr'] = \OCP\Config::getAppValue($this->configID, 'ldap_group_member_assoc_attribute', 'uniqueMember'); + $this->config['ldapEmailAttribute'] = \OCP\Config::getAppValue($this->configID, 'ldap_email_attr', ''); + $this->config['ldapGroupMemberAssocAttr'] = \OCP\Config::getAppValue($this->configID, 'ldap_group_member_assoc_attribute', 'uniqueMember'); $this->config['ldapIgnoreNamingRules'] = \OCP\Config::getSystemValue('ldapIgnoreNamingRules', false); $this->configured = $this->validateConfiguration(); From e0121ea75e85db681b4c7e50aa73b0b519c4d989 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 26 Jul 2012 13:45:32 +0200 Subject: [PATCH 35/68] LDAP: some cleanup --- apps/user_ldap/user_ldap.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index a4a8921d08..61f84047f1 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -27,9 +27,6 @@ namespace OCA\user_ldap; class USER_LDAP extends lib\Access implements \OCP\UserInterface { - // will be retrieved from LDAP server - protected $ldap_dc = false; - // cache getUsers() protected $_users = null; From 6c92a85d49822dba180fe949d211db60c5b40d51 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 26 Jul 2012 16:11:23 +0200 Subject: [PATCH 36/68] LDAP: use OC_Cache to cache results from LDAP. Default is set to 10 min. Should improve performance especially when LDAP users use the sync client, because userExists checks with the LDAP server are reduced. --- apps/user_ldap/group_ldap.php | 53 +++++++++++++----------- apps/user_ldap/lib/connection.php | 59 ++++++++++++++++++++++++++- apps/user_ldap/settings.php | 12 ++++-- apps/user_ldap/templates/settings.php | 1 + apps/user_ldap/user_ldap.php | 18 +++++--- 5 files changed, 109 insertions(+), 34 deletions(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index b9f4bdf199..aff25593ef 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -26,11 +26,6 @@ namespace OCA\user_ldap; class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { protected $enabled = false; - protected $_group_user = array(); - protected $_user_groups = array(); - protected $_group_users = array(); - protected $_groups = array(); - public function setConnector(lib\Connection &$connection) { parent::setConnector($connection); if(empty($this->connection->ldapGroupFilter) || empty($this->connection->ldapGroupMemberAssocAttr)) { @@ -51,18 +46,20 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { if(!$this->enabled) { return false; } - if(isset($this->_group_user[$gid][$uid])) { - return $this->_group_user[$gid][$uid]; + if($this->connection->isCached('inGroup'.$uid.':'.$gid)) { + return $this->connection->getFromCache('inGroup'.$uid.':'.$gid); } $dn_user = $this->username2dn($uid); $dn_group = $this->groupname2dn($gid); // just in case if(!$dn_group || !$dn_user) { + $this->connection->writeToCache('inGroup'.$uid.':'.$gid, false); return false; } //usually, LDAP attributes are said to be case insensitive. But there are exceptions of course. $members = $this->readAttribute($dn_group, $this->connection->ldapGroupMemberAssocAttr); if(!$members) { + $this->connection->writeToCache('inGroup'.$uid.':'.$gid, false); return false; } @@ -81,8 +78,10 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { $members = $dns; } - $this->_group_user[$gid][$uid] = in_array($dn_user, $members); - return $this->_group_user[$gid][$uid]; + $isInGroup = in_array($dn_user, $members); + $this->connection->writeToCache('inGroup'.$uid.':'.$gid, $isInGroup); + + return $isInGroup; } /** @@ -97,12 +96,12 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { if(!$this->enabled) { return array(); } - if(isset($this->_user_groups[$uid])) { - return $this->_user_groups[$uid]; + if($this->connection->isCached('getUserGroups'.$uid)) { + return $this->connection->getFromCache('getUserGroups'.$uid); } $userDN = $this->username2dn($uid); if(!$userDN) { - $this->_user_groups[$uid] = array(); + $this->connection->writeToCache('getUserGroups'.$uid, array()); return array(); } @@ -124,9 +123,10 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { $this->connection->ldapGroupMemberAssocAttr.'='.$uid )); $groups = $this->fetchListOfGroups($filter, array($this->connection->ldapGroupDisplayName,'dn')); - $this->_user_groups[$uid] = array_unique($this->ownCloudGroupNames($groups), SORT_LOCALE_STRING); + $groups = array_unique($this->ownCloudGroupNames($groups), SORT_LOCALE_STRING); + $this->connection->writeToCache('getUserGroups'.$uid, $groups); - return $this->_user_groups[$uid]; + return $groups; } /** @@ -137,19 +137,19 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { if(!$this->enabled) { return array(); } - if(isset($this->_group_users[$gid])) { - return $this->_group_users[$gid]; + if($this->connection->isCached('usersInGroup'.$gid)) { + return $this->connection->getFromCache('usersInGroup'.$gid); } $groupDN = $this->groupname2dn($gid); if(!$groupDN) { - $this->_group_users[$gid] = array(); + $this->connection->writeToCache('usersInGroup'.$gid, array()); return array(); } $members = $this->readAttribute($groupDN, $this->connection->ldapGroupMemberAssocAttr); if(!$members) { - $this->_group_users[$gid] = array(); + $this->connection->writeToCache('usersInGroup'.$gid, array()); return array(); } @@ -173,8 +173,10 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { if(!$isMemberUid) { $result = array_intersect($result, \OCP\User::getUsers()); } - $this->_group_users[$gid] = array_unique($result, SORT_LOCALE_STRING); - return $this->_group_users[$gid]; + $groupUsers = array_unique($result, SORT_LOCALE_STRING); + $this->connection->writeToCache('usersInGroup'.$gid, $groupUsers); + + return $groupUsers; } /** @@ -187,11 +189,14 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { if(!$this->enabled) { return array(); } - if(empty($this->_groups)) { - $ldap_groups = $this->fetchListOfGroups($this->connection->ldapGroupFilter, array($this->connection->ldapGroupDisplayName, 'dn')); - $this->_groups = $this->ownCloudGroupNames($ldap_groups); + if($this->connection->isCached('getGroups')) { + return $this->connection->getFromCache('getGroups'); } - return $this->_groups; + $ldap_groups = $this->fetchListOfGroups($this->connection->ldapGroupFilter, array($this->connection->ldapGroupDisplayName, 'dn')); + $ldap_groups = $this->ownCloudGroupNames($ldap_groups); + $this->connection->writeToCache('getGroups', $ldap_groups); + + return $ldap_groups; } /** diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 96ffea4b64..cd9c83ff33 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -28,7 +28,10 @@ class Connection { private $configID; private $configured = false; - //cached settings + //cache handler + protected $cache; + + //settings protected $config = array( 'ldapHost' => null, 'ldapPort' => null, @@ -48,10 +51,12 @@ class Connection { 'ldapQuotaAttribute' => null, 'ldapQuotaDefault' => null, 'ldapEmailAttribute' => null, + 'ldapCacheTTL' => null, ); public function __construct($configID = 'user_ldap') { $this->configID = $configID; + $this->cache = \OC_Cache::getGlobalCache(); } public function __destruct() { @@ -92,6 +97,57 @@ class Connection { return $this->ldapConnectionRes; } + private function getCacheKey($key) { + $prefix = 'LDAP-'.$this->configID.'-'; + if(is_null($key)) { + return $prefix; + } + return $prefix.md5($key); + } + + public function getFromCache($key) { + if(!$this->configured) { + $this->readConfiguration(); + } + if(!$this->config['ldapCacheTTL']) { + return null; + } + if(!$this->isCached($key)) { + return null; + + } + $key = $this->getCacheKey($key); + + return unserialize(base64_decode($this->cache->get($key))); + } + + public function isCached($key) { + if(!$this->configured) { + $this->readConfiguration(); + } + if(!$this->config['ldapCacheTTL']) { + return false; + } + $key = $this->getCacheKey($key); + return $this->cache->hasKey($key); + } + + public function writeToCache($key, $value) { + if(!$this->configured) { + $this->readConfiguration(); + } + if(!$this->config['ldapCacheTTL']) { + return null; + } + $key = $this->getCacheKey($key); + $value = base64_encode(serialize($value)); + $this->cache->set($key, $value, $this->config['ldapCacheTTL']); + } + + public function clearCache() { + $this->cache->clear($this->getCacheKey(null)); + } + /** * Caches the general LDAP configuration. */ @@ -118,6 +174,7 @@ class Connection { $this->config['ldapEmailAttribute'] = \OCP\Config::getAppValue($this->configID, 'ldap_email_attr', ''); $this->config['ldapGroupMemberAssocAttr'] = \OCP\Config::getAppValue($this->configID, 'ldap_group_member_assoc_attribute', 'uniqueMember'); $this->config['ldapIgnoreNamingRules'] = \OCP\Config::getSystemValue('ldapIgnoreNamingRules', false); + $this->config['ldapCacheTTL'] = \OCP\Config::getAppValue($this->configID, 'ldap_cache_ttl', 10*60); $this->configured = $this->validateConfiguration(); } diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index 42084855e8..135c735e70 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -20,7 +20,7 @@ * License along with this library. If not, see . * */ -$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_nocase', 'ldap_quota_def', 'ldap_quota_attr', 'ldap_email_attr', 'ldap_group_member_assoc_attribute'); +$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_nocase', 'ldap_quota_def', 'ldap_quota_attr', 'ldap_email_attr', 'ldap_group_member_assoc_attribute', 'ldap_cache_ttl'); OCP\Util::addscript('user_ldap', 'settings'); @@ -29,18 +29,23 @@ if ($_POST) { if(isset($_POST[$param])){ if('ldap_agent_password' == $param) { OCP\Config::setAppValue('user_ldap', $param, base64_encode($_POST[$param])); + } elseif('ldap_cache_ttl' == $param) { + if(OCP\Config::getAppValue('user_ldap', $param,'') != $_POST[$param]) { + $ldap = new \OCA\user_ldap\lib\Connection('user_ldap'); + $ldap->clearCache(); + OCP\Config::setAppValue('user_ldap', $param, $_POST[$param]); + } } else { OCP\Config::setAppValue('user_ldap', $param, $_POST[$param]); } } elseif('ldap_tls' == $param) { // unchecked checkboxes are not included in the post paramters - OCP\Config::setAppValue('user_ldap', $param, 0); + OCP\Config::setAppValue('user_ldap', $param, 0); } elseif('ldap_nocase' == $param) { OCP\Config::setAppValue('user_ldap', $param, 0); } - } } @@ -57,5 +62,6 @@ $tmpl->assign( 'ldap_display_name', OCP\Config::getAppValue('user_ldap', 'ldap_d $tmpl->assign( 'ldap_group_display_name', OCP\Config::getAppValue('user_ldap', 'ldap_group_display_name', 'cn')); $tmpl->assign( 'ldap_group_member_assoc_attribute', OCP\Config::getAppValue('user_ldap', 'ldap_group_member_assoc_attribute', 'uniqueMember')); $tmpl->assign( 'ldap_agent_password', base64_decode(OCP\Config::getAppValue('user_ldap', 'ldap_agent_password'))); +$tmpl->assign( 'ldap_cache_ttl', OCP\Config::getAppValue('user_ldap', 'ldap_cache_ttl', '600')); return $tmpl->fetchPage(); diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index 31f453b5a5..cc61598a26 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -26,6 +26,7 @@

bytes

+

t('in seconds');?>

t('Help');?>
diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index 61f84047f1..57b2ef489b 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -27,9 +27,6 @@ namespace OCA\user_ldap; class USER_LDAP extends lib\Access implements \OCP\UserInterface { - // cache getUsers() - protected $_users = null; - private function updateQuota($dn) { $quota = null; if(!empty($this->connection->ldapQuotaDefault)) { @@ -97,11 +94,13 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { * Get a list of all users. */ public function getUsers(){ - if(is_null($this->_users)) { + $ldap_users = $this->connection->getFromCache('getUsers'); + if(is_null($ldap_users)) { $ldap_users = $this->fetchListOfUsers($this->connection->ldapUserFilter, array($this->connection->ldapUserDisplayName, 'dn')); - $this->_users = $this->ownCloudUserNames($ldap_users); + $ldap_users = $this->ownCloudUserNames($ldap_users); + $this->connection->writeToCache('getUsers', $ldap_users); } - return $this->_users; + return $ldap_users; } /** @@ -110,18 +109,25 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { * @return boolean */ public function userExists($uid){ + if($this->connection->isCached('userExists'.$uid)) { + return $this->connection->getFromCache('userExists'.$uid); + } + //getting dn, if false the user does not exist. If dn, he may be mapped only, requires more checking. $dn = $this->username2dn($uid); if(!$dn) { + $this->connection->writeToCache('userExists'.$uid, false); return false; } //if user really still exists, we will be able to read his cn $cn = $this->readAttribute($dn, 'cn'); if(!$cn || empty($cn)) { + $this->connection->writeToCache('userExists'.$uid, false); return false; } + $this->connection->writeToCache('userExists'.$uid, true); return true; } From 0810f9289409f54c374bb60da8e0262b64b15417 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 26 Jul 2012 10:30:14 -0400 Subject: [PATCH 37/68] Fix used space calculation if shared folder does not exist, fixes bug oc-1331 --- settings/personal.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/settings/personal.php b/settings/personal.php index d82db0d0e7..8ad3af0873 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -18,7 +18,12 @@ OC_App::setActiveNavigationEntry( 'personal' ); // calculate the disc space $rootInfo=OC_FileCache::get(''); $sharedInfo=OC_FileCache::get('/Shared'); -$used=$rootInfo['size']-$sharedInfo['size']; +if (!isset($sharedInfo)) { + $sharedSize = 0; +} else { + $sharedSize = $sharedInfo['size']; +} +$used=$rootInfo['size']-$sharedSize; $free=OC_Filesystem::free_space(); $total=$free+$used; if($total==0) $total=1; // prevent division by zero From 3725cd079b96dff489d60aadfbd585045af033f8 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 26 Jul 2012 17:41:57 +0200 Subject: [PATCH 38/68] Fix oc-1362: post_rename has no path param but newpath and oldpath --- lib/filesystem.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/filesystem.php b/lib/filesystem.php index d88b30c2f6..530d50139b 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -474,7 +474,11 @@ class OC_Filesystem{ } static public function removeETagHook($params) { - $path=$params['path']; + if (isset($params['path'])) { + $path=$params['path']; + } else { + $path=$params['oldpath']; + } OC_Connector_Sabre_Node::removeETagPropertyForPath($path); OC_Connector_Sabre_Node::removeETagPropertyForPath(dirname($path)); } From d26f87e738314db7820f39f74f42865ff20f7bd7 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 26 Jul 2012 17:56:32 +0200 Subject: [PATCH 39/68] Smarter remove of etag properties for path --- lib/connector/sabre/node.php | 20 ++++++++++++++++++-- lib/filesystem.php | 1 - 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index 22506f27cf..f268f8b57c 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -233,7 +233,23 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * @param string $path Path of the file */ static public function removeETagPropertyForPath($path) { - $query = OC_DB::prepare( 'DELETE FROM *PREFIX*properties WHERE userid = ? AND propertypath = ? AND propertyname = ?' ); - $query->execute( array( OC_User::getUser(), $path, self::GETETAG_PROPERTYNAME )); + // remove tags from this and parent paths + $paths = array(); + while ($path != '/' && $path != '') { + $paths[] = $path; + $path = dirname($path); + } + if (empty($paths)) { + return; + } + $paths[] = $path; + $path_placeholders = join(',', array_fill(0, count($paths), '?')); + $query = OC_DB::prepare( 'DELETE FROM *PREFIX*properties' + .' WHERE userid = ?' + .' AND propertyname = ?' + .' AND propertypath IN ('.$path_placeholders.')' + ); + $vals = array( OC_User::getUser(), self::GETETAG_PROPERTYNAME ); + $query->execute(array_merge( $vals, $paths )); } } diff --git a/lib/filesystem.php b/lib/filesystem.php index 530d50139b..47626c05ae 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -480,7 +480,6 @@ class OC_Filesystem{ $path=$params['oldpath']; } OC_Connector_Sabre_Node::removeETagPropertyForPath($path); - OC_Connector_Sabre_Node::removeETagPropertyForPath(dirname($path)); } } OC_Hook::connect('OC_Filesystem','post_write', 'OC_Filesystem','removeETagHook'); From 6fbed6a5881c83f14777a4881996ac6d760bb251 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 26 Jul 2012 18:10:53 +0200 Subject: [PATCH 40/68] LDAP: add Test Configuration functionality in the settings --- apps/user_ldap/ajax/testConfiguration.php | 39 +++++++++++++++++++++++ apps/user_ldap/js/settings.js | 22 +++++++++++++ apps/user_ldap/lib/connection.php | 9 ++++++ apps/user_ldap/templates/settings.php | 2 +- 4 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 apps/user_ldap/ajax/testConfiguration.php diff --git a/apps/user_ldap/ajax/testConfiguration.php b/apps/user_ldap/ajax/testConfiguration.php new file mode 100644 index 0000000000..a82f7e4c17 --- /dev/null +++ b/apps/user_ldap/ajax/testConfiguration.php @@ -0,0 +1,39 @@ +. + * + */ + +// Check user and app status +OCP\JSON::checkAdminUser(); +OCP\JSON::checkAppEnabled('user_ldap'); +OCP\JSON::callCheck(); + +$connection = new \OCA\user_ldap\lib\Connection(null); +if($connection->setConfiguration($_POST)) { + //Configuration is okay + if($connection->bind()) { + OCP\JSON::success(array('message' => 'The configuration is valid and the connection could be established!')); + } else { + OCP\JSON::error(array('message' => 'The configuration is valid, but the Bind failed. Please check the server settings and credentials.')); + } +} else { + OCP\JSON::error(array('message' => 'The configuration is invalid. Please look in the ownCloud log for further details.')); +} diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index cae9655e3d..4e5923406e 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -1,3 +1,25 @@ $(document).ready(function() { $('#ldapSettings').tabs(); + $('#ldap_action_test_connection').button(); + $('#ldap_action_test_connection').click(function(event){ + event.preventDefault(); + $.post( + OC.filePath('user_ldap','ajax','testConfiguration.php'), + $('#ldap').serialize(), + function (result) { + if (result.status == 'success') { + OC.dialogs.alert( + result.message, + 'Connection test succeeded' + ); + } else { + $('#ldap_action_test_connection').css('background-color', 'red'); + OC.dialogs.alert( + result.message, + 'Connection test failed' + ); + } + } + ); + }); }); \ No newline at end of file diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index cd9c83ff33..a84174d1df 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -191,12 +191,21 @@ class Connection { return false; } + $params = array('ldap_host'=>'ldapHost', 'ldap_port'=>'ldapPort', 'ldap_dn'=>'ldapAgentName', 'ldap_agent_password'=>'ldapAgentPassword', 'ldap_base'=>'ldapBase', 'ldap_base_users'=>'ldapBaseUsers', 'ldap_base_groups'=>'ldapBaseGroups', 'ldap_userlist_filter'=>'ldapUserFilter', 'ldap_login_filter'=>'ldapLoginFilter', 'ldap_group_filter'=>'ldapGroupFilter', 'ldap_display_name'=>'ldapUserDisplayName', 'ldap_group_display_name'=>'ldapGroupDisplayName', + + 'ldap_tls'=>'ldapTLS', 'ldap_nocase'=>'ldapNoCase', 'ldap_quota_def'=>'ldapQuotaDefault', 'ldap_quota_attr'=>'ldapQuotaAttribute', 'ldap_email_attr'=>'ldapEmailAttribute', 'ldap_group_member_assoc_attribute'=>'ldapGroupMemberAssocAttr', 'ldap_cache_ttl'=>'ldapCacheTTL'); + foreach($config as $parameter => $value) { if(isset($this->config[$parameter])) { $this->config[$parameter] = $value; if(is_array($setParameters)) { $setParameters[] = $parameter; } + } else if(isset($params[$parameter])) { + $this->config[$params[$parameter]] = $value; + if(is_array($setParameters)) { + $setParameters[] = $params[$parameter]; + } } } diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index cc61598a26..893d93c3c4 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -28,7 +28,7 @@

t('in seconds');?>

- t('Help');?> + t('Help');?>
From 16928f4d59799eb99c1e0c25a62b5adc4ab39f0f Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 26 Jul 2012 18:50:59 +0200 Subject: [PATCH 41/68] fix spelling fail --- lib/db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db.php b/lib/db.php index 6971fe4a58..f1928e6823 100644 --- a/lib/db.php +++ b/lib/db.php @@ -43,7 +43,7 @@ class OC_DB { */ private static function getDBBackend(){ $backend=self::BACKEND_MDB2; - if(class_exists('PDO') && OC_Config::getValue('installed', false)){//check if we can use PDO, else use MDB2 (instalation always needs to be done my mdb2) + if(class_exists('PDO') && OC_Config::getValue('installed', false)){//check if we can use PDO, else use MDB2 (installation always needs to be done my mdb2) $type = OC_Config::getValue( "dbtype", "sqlite" ); if($type=='sqlite3') $type='sqlite'; $drivers=PDO::getAvailableDrivers(); From 0a9c33e15119f0cc1f0227357e571f6f8f712302 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 27 Jul 2012 02:04:26 +0200 Subject: [PATCH 42/68] [tx-robot] updated from transifex --- apps/calendar/l10n/ca.php | 52 +- apps/calendar/l10n/de.php | 15 + apps/calendar/l10n/el.php | 47 +- apps/calendar/l10n/fi_FI.php | 33 +- apps/calendar/l10n/fr.php | 50 +- apps/contacts/l10n/ca.php | 103 +++- apps/contacts/l10n/de.php | 121 +++-- apps/contacts/l10n/el.php | 114 +++-- apps/contacts/l10n/fi_FI.php | 64 ++- apps/contacts/l10n/fr.php | 111 ++++- apps/files/l10n/ca.php | 14 +- apps/files/l10n/el.php | 14 +- apps/files/l10n/fi_FI.php | 14 +- apps/files/l10n/fr.php | 14 +- apps/files/l10n/lv.php | 21 + apps/gallery/l10n/ca.php | 8 +- apps/gallery/l10n/el.php | 8 +- apps/gallery/l10n/fi_FI.php | 8 +- apps/gallery/l10n/fr.php | 8 +- core/l10n/lv.php | 35 ++ l10n/af/settings.po | 62 ++- l10n/ar/settings.po | 62 ++- l10n/ar_SA/settings.po | 34 +- l10n/bg_BG/settings.po | 62 ++- l10n/ca/calendar.po | 407 +++++++++------ l10n/ca/contacts.po | 916 ++++++++++++++++++---------------- l10n/ca/files.po | 68 +-- l10n/ca/gallery.po | 64 +-- l10n/ca/settings.po | 74 +-- l10n/cs_CZ/settings.po | 74 +-- l10n/da/settings.po | 75 +-- l10n/de/calendar.po | 36 +- l10n/de/contacts.po | 925 ++++++++++++++++++---------------- l10n/de/settings.po | 75 +-- l10n/el/calendar.po | 408 +++++++++------ l10n/el/contacts.po | 926 ++++++++++++++++++---------------- l10n/el/files.po | 69 +-- l10n/el/gallery.po | 65 +-- l10n/el/settings.po | 75 +-- l10n/eo/settings.po | 74 +-- l10n/es/settings.po | 36 +- l10n/et_EE/settings.po | 74 +-- l10n/eu/settings.po | 78 +-- l10n/fa/settings.po | 74 +-- l10n/fi_FI/calendar.po | 395 ++++++++++----- l10n/fi_FI/contacts.po | 730 ++++++++++++++------------- l10n/fi_FI/files.po | 68 +-- l10n/fi_FI/gallery.po | 64 +-- l10n/fi_FI/settings.po | 74 +-- l10n/fr/calendar.po | 408 +++++++++------ l10n/fr/contacts.po | 934 +++++++++++++++++++---------------- l10n/fr/files.po | 70 +-- l10n/fr/gallery.po | 66 +-- l10n/fr/settings.po | 78 +-- l10n/gl/settings.po | 74 +-- l10n/he/settings.po | 75 +-- l10n/hr/settings.po | 76 +-- l10n/hu_HU/settings.po | 74 +-- l10n/hy/settings.po | 62 ++- l10n/ia/settings.po | 62 ++- l10n/id/settings.po | 62 ++- l10n/id_ID/settings.po | 34 +- l10n/it/settings.po | 36 +- l10n/ja_JP/settings.po | 74 +-- l10n/ko/settings.po | 74 +-- l10n/lb/settings.po | 62 ++- l10n/lt_LT/settings.po | 70 ++- l10n/lv/calendar.po | 814 ++++++++++++++++++++++++++++++ l10n/lv/contacts.po | 871 ++++++++++++++++++++++++++++++++ l10n/lv/core.po | 269 ++++++++++ l10n/lv/files.po | 199 ++++++++ l10n/lv/gallery.po | 58 +++ l10n/lv/media.po | 66 +++ l10n/lv/settings.po | 219 ++++++++ l10n/mk/settings.po | 75 +-- l10n/ms_MY/settings.po | 92 ++-- l10n/nb_NO/settings.po | 79 +-- l10n/nl/settings.po | 75 +-- l10n/nn_NO/settings.po | 62 ++- l10n/pl/settings.po | 75 +-- l10n/pt_BR/settings.po | 75 +-- l10n/pt_PT/settings.po | 74 +-- l10n/ro/settings.po | 62 ++- l10n/ru/settings.po | 75 +-- l10n/sk_SK/settings.po | 74 +-- l10n/sl/settings.po | 74 +-- l10n/so/settings.po | 34 +- l10n/sr/settings.po | 62 ++- l10n/sr@latin/settings.po | 62 ++- l10n/sv/settings.po | 75 +-- l10n/templates/bookmarks.pot | 2 +- l10n/templates/calendar.pot | 2 +- l10n/templates/contacts.pot | 2 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/gallery.pot | 2 +- l10n/templates/lib.pot | 8 +- l10n/templates/media.pot | 2 +- l10n/templates/settings.pot | 32 +- l10n/th_TH/settings.po | 74 +-- l10n/tr/settings.po | 75 +-- l10n/uk/settings.po | 62 ++- l10n/vi/settings.po | 34 +- l10n/zh_CN/settings.po | 75 +-- l10n/zh_TW/settings.po | 62 ++- settings/l10n/ca.php | 7 + settings/l10n/cs_CZ.php | 6 + settings/l10n/da.php | 6 + settings/l10n/de.php | 7 + settings/l10n/el.php | 7 + settings/l10n/eo.php | 6 + settings/l10n/et_EE.php | 6 + settings/l10n/eu.php | 8 + settings/l10n/fa.php | 6 + settings/l10n/fi_FI.php | 7 + settings/l10n/fr.php | 9 +- settings/l10n/gl.php | 6 + settings/l10n/he.php | 6 + settings/l10n/hr.php | 6 + settings/l10n/hu_HU.php | 6 + settings/l10n/ja_JP.php | 6 + settings/l10n/ko.php | 6 + settings/l10n/lt_LT.php | 4 + settings/l10n/lv.php | 49 ++ settings/l10n/mk.php | 6 + settings/l10n/ms_MY.php | 15 + settings/l10n/nb_NO.php | 9 + settings/l10n/nl.php | 6 + settings/l10n/pl.php | 6 + settings/l10n/pt_BR.php | 6 + settings/l10n/pt_PT.php | 6 + settings/l10n/ru.php | 6 + settings/l10n/sk_SK.php | 6 + settings/l10n/sl.php | 6 + settings/l10n/sv.php | 6 + settings/l10n/th_TH.php | 6 + settings/l10n/tr.php | 6 + settings/l10n/zh_CN.php | 6 + 138 files changed, 9209 insertions(+), 4497 deletions(-) create mode 100644 apps/files/l10n/lv.php create mode 100644 core/l10n/lv.php create mode 100644 l10n/lv/calendar.po create mode 100644 l10n/lv/contacts.po create mode 100644 l10n/lv/core.po create mode 100644 l10n/lv/files.po create mode 100644 l10n/lv/gallery.po create mode 100644 l10n/lv/media.po create mode 100644 l10n/lv/settings.po create mode 100644 settings/l10n/lv.php diff --git a/apps/calendar/l10n/ca.php b/apps/calendar/l10n/ca.php index afb1c799d9..2d298a31a4 100644 --- a/apps/calendar/l10n/ca.php +++ b/apps/calendar/l10n/ca.php @@ -1,12 +1,23 @@ "No tots els calendaris estan en memòria", +"Everything seems to be completely cached" => "Sembla que tot està en memòria", "No calendars found." => "No s'han trobat calendaris.", "No events found." => "No s'han trobat events.", "Wrong calendar" => "Calendari erroni", +"The file contained either no events or all events are already saved in your calendar." => "El fitxer no contenia esdeveniments o aquests ja estaven desats en el vostre caledari", +"events has been saved in the new calendar" => "els esdeveniments s'han desat en el calendari nou", +"Import failed" => "Ha fallat la importació", +"events has been saved in your calendar" => "els esdveniments s'han desat en el calendari", "New Timezone:" => "Nova zona horària:", "Timezone changed" => "La zona horària ha canviat", "Invalid request" => "Sol.licitud no vàlida", "Calendar" => "Calendari", -"MMM d[ yyyy]{ '—'[ MMM] d yyyy}" => "MMM d[ yyyy]{ '—'[ MMM] d yyyy}", +"ddd" => "ddd", +"ddd M/d" => "ddd d/M", +"dddd M/d" => "dddd d/M", +"MMMM yyyy" => "MMMM yyyy", +"MMM d[ yyyy]{ '—'[ MMM] d yyyy}" => "d [MMM ][yyyy ]{'—' d MMM yyyy}", +"dddd, MMM d, yyyy" => "dddd, d MMM, yyyy", "Birthday" => "Aniversari", "Business" => "Feina", "Call" => "Trucada", @@ -22,7 +33,9 @@ "Projects" => "Projectes", "Questions" => "Preguntes", "Work" => "Feina", +"by" => "per", "unnamed" => "sense nom", +"New Calendar" => "Calendari nou", "Does not repeat" => "No es repeteix", "Daily" => "Diari", "Weekly" => "Mensual", @@ -67,8 +80,26 @@ "by day and month" => "per dia del mes", "Date" => "Data", "Cal." => "Cal.", +"Sun." => "Dg.", +"Mon." => "Dl.", +"Tue." => "Dm.", +"Wed." => "Dc.", +"Thu." => "Dj.", +"Fri." => "Dv.", +"Sat." => "Ds.", +"Jan." => "Gen.", +"Feb." => "Febr.", +"Mar." => "Març", +"Apr." => "Abr.", +"May." => "Maig", +"Jun." => "Juny", +"Jul." => "Jul.", +"Aug." => "Ag.", +"Sep." => "Set.", +"Oct." => "Oct.", +"Nov." => "Nov.", +"Dec." => "Des.", "All day" => "Tot el dia", -"New Calendar" => "Calendari nou", "Missing fields" => "Els camps que falten", "Title" => "Títol", "From Date" => "Des de la data", @@ -132,18 +163,17 @@ "Interval" => "Interval", "End" => "Final", "occurrences" => "aparicions", -"Import a calendar file" => "Importa un fitxer de calendari", -"Please choose the calendar" => "Escolliu el calendari", "create a new calendar" => "crea un nou calendari", +"Import a calendar file" => "Importa un fitxer de calendari", +"Please choose a calendar" => "Escolliu un calendari", "Name of new calendar" => "Nom del nou calendari", +"Take an available name!" => "Escolliu un nom disponible!", +"A Calendar with this name already exists. If you continue anyhow, these calendars will be merged." => "Ja hi ha un calendari amb aquest nom. Si continueu, els calendaris es combinaran.", "Import" => "Importa", -"Importing calendar" => "S'està important el calendari", -"Calendar imported successfully" => "El calendari s'ha importat amb èxit", "Close Dialog" => "Tanca el diàleg", "Create a new event" => "Crea un nou esdeveniment", "View an event" => "Mostra un event", "No categories selected" => "No hi ha categories seleccionades", -"Select category" => "Seleccioneu categoria", "of" => "de", "at" => "a", "Timezone" => "Zona horària", @@ -152,7 +182,13 @@ "24h" => "24h", "12h" => "12h", "First day of the week" => "Primer dia de la setmana", -"Calendar CalDAV syncing address:" => "Adreça de sincronització del calendari CalDAV:", +"Cache" => "Memòria de cau", +"Clear cache for repeating events" => "Neteja la memòria de cau pels esdveniments amb repetició", +"Calendar CalDAV syncing addresses" => "Adreça de sincronització del calendari CalDAV", +"more info" => "més informació", +"Primary address (Kontact et al)" => "Adreça primària (Kontact et al)", +"iOS/OS X" => "IOS/OS X", +"Read only iCalendar link(s)" => "Enllaç(os) del calendari només de lectura", "Users" => "Usuaris", "select users" => "seleccioneu usuaris", "Editable" => "Editable", diff --git a/apps/calendar/l10n/de.php b/apps/calendar/l10n/de.php index 33c924ac2c..8270b6785e 100644 --- a/apps/calendar/l10n/de.php +++ b/apps/calendar/l10n/de.php @@ -1,8 +1,13 @@ "Noch sind nicht alle Kalender zwischengespeichert.", +"Everything seems to be completely cached" => "Es sieht so aus, als wäre alles vollständig zwischengespeichert.", "No calendars found." => "Keine Kalender gefunden", "No events found." => "Keine Termine gefunden", "Wrong calendar" => "Falscher Kalender", +"The file contained either no events or all events are already saved in your calendar." => "Entweder enthielt die Datei keine Termine oder alle Termine waren schon im Kalender gespeichert.", +"events has been saved in the new calendar" => "Der Termin wurde im neuen Kalender gespeichert.", "Import failed" => "Import fehlgeschlagen", +"events has been saved in your calendar" => "Der Termin wurde im Kalender gespeichert.", "New Timezone:" => "Neue Zeitzone:", "Timezone changed" => "Zeitzone geändert", "Invalid request" => "Fehlerhafte Anfrage", @@ -160,7 +165,10 @@ "occurrences" => "Termine", "create a new calendar" => "Neuen Kalender anlegen", "Import a calendar file" => "Kalenderdatei Importieren", +"Please choose a calendar" => "Wählen Sie bitte einen Kalender.", "Name of new calendar" => "Kalendername", +"Take an available name!" => "Wählen Sie einen verfügbaren Namen.", +"A Calendar with this name already exists. If you continue anyhow, these calendars will be merged." => "Ein Kalender mit diesem Namen existiert schon. Sollten Sie fortfahren, werden die beiden Kalender zusammengeführt.", "Import" => "Importieren", "Close Dialog" => "Dialog schließen", "Create a new event" => "Neues Ereignis", @@ -174,6 +182,13 @@ "24h" => "24h", "12h" => "12h", "First day of the week" => "erster Wochentag", +"Cache" => "Zwischenspeicher", +"Clear cache for repeating events" => "Lösche den Zwischenspeicher für wiederholende Veranstaltungen.", +"Calendar CalDAV syncing addresses" => "CalDAV-Kalender gleicht Adressen ab.", +"more info" => "weitere Informationen", +"Primary address (Kontact et al)" => "Primäre Adresse (Kontakt u.a.)", +"iOS/OS X" => "iOS/OS X", +"Read only iCalendar link(s)" => "Nur lesende(r) iCalender-Link(s)", "Users" => "Benutzer", "select users" => "Benutzer auswählen", "Editable" => "editierbar", diff --git a/apps/calendar/l10n/el.php b/apps/calendar/l10n/el.php index 0b289fbcf6..e478316bba 100644 --- a/apps/calendar/l10n/el.php +++ b/apps/calendar/l10n/el.php @@ -1,17 +1,26 @@ "Όλα έχουν αποθηκευτεί στη cache", "No calendars found." => "Δε βρέθηκαν ημερολόγια.", "No events found." => "Δε βρέθηκαν γεγονότα.", "Wrong calendar" => "Λάθος ημερολόγιο", +"events has been saved in the new calendar" => "τα συμβάντα αποθηκεύτηκαν σε ένα νέο ημερολόγιο", +"Import failed" => "Η εισαγωγή απέτυχε", +"events has been saved in your calendar" => "το συμβάν αποθηκεύτηκε στο ημερολογιό σου", "New Timezone:" => "Νέα ζώνη ώρας:", "Timezone changed" => "Η ζώνη ώρας άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", "Calendar" => "Ημερολόγιο", +"ddd" => "ddd", +"ddd M/d" => "ddd M/d", +"dddd M/d" => "dddd M/d", +"MMMM yyyy" => "MMMM yyyy", "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" => "MMM d[ yyyy]{ '—'[ MMM] d yyyy}", +"dddd, MMM d, yyyy" => "dddd, MMM d, yyyy", "Birthday" => "Γενέθλια", "Business" => "Επιχείρηση", "Call" => "Κλήση", "Clients" => "Πελάτες", -"Deliverer" => "Παραδώσας", +"Deliverer" => "Προμηθευτής", "Holidays" => "Διακοπές", "Ideas" => "Ιδέες", "Journey" => "Ταξίδι", @@ -22,7 +31,9 @@ "Projects" => "Έργα", "Questions" => "Ερωτήσεις", "Work" => "Εργασία", +"by" => "από", "unnamed" => "ανώνυμο", +"New Calendar" => "Νέα Ημερολόγιο", "Does not repeat" => "Μη επαναλαμβανόμενο", "Daily" => "Καθημερινά", "Weekly" => "Εβδομαδιαία", @@ -67,8 +78,26 @@ "by day and month" => "κατά ημέρα και μήνα", "Date" => "Ημερομηνία", "Cal." => "Ημερ.", +"Sun." => "Κυρ.", +"Mon." => "Δευ.", +"Tue." => "Τρί.", +"Wed." => "Τετ.", +"Thu." => "Πέμ.", +"Fri." => "Παρ.", +"Sat." => "Σάβ.", +"Jan." => "Ιαν.", +"Feb." => "Φεβ.", +"Mar." => "Μάρ.", +"Apr." => "Απρ.", +"May." => "Μαΐ.", +"Jun." => "Ιούν.", +"Jul." => "Ιούλ.", +"Aug." => "Αύγ.", +"Sep." => "Σεπ.", +"Oct." => "Οκτ.", +"Nov." => "Νοέ.", +"Dec." => "Δεκ.", "All day" => "Ολοήμερο", -"New Calendar" => "Νέα Ημερολόγιο", "Missing fields" => "Πεδία που λείπουν", "Title" => "Τίτλος", "From Date" => "Από Ημερομηνία", @@ -132,18 +161,16 @@ "Interval" => "Διάστημα", "End" => "Τέλος", "occurrences" => "περιστατικά", -"Import a calendar file" => "Εισαγωγή αρχείου ημερολογίου", -"Please choose the calendar" => "Παρακαλώ επιλέξτε το ημερολόγιο", "create a new calendar" => "δημιουργία νέου ημερολογίου", +"Import a calendar file" => "Εισαγωγή αρχείου ημερολογίου", +"Please choose a calendar" => "Παρακαλώ επέλεξε ένα ημερολόγιο", "Name of new calendar" => "Όνομα νέου ημερολογίου", +"Take an available name!" => "Επέλεξε ένα διαθέσιμο όνομα!", "Import" => "Εισαγωγή", -"Importing calendar" => "Εισαγωγή ημερολογίου", -"Calendar imported successfully" => "Το ημερολόγιο εισήχθει επιτυχώς", "Close Dialog" => "Κλείσιμο Διαλόγου", "Create a new event" => "Δημιουργήστε ένα νέο συμβάν", "View an event" => "Εμφάνισε ένα γεγονός", "No categories selected" => "Δεν επελέγησαν κατηγορίες", -"Select category" => "Επιλέξτε κατηγορία", "of" => "του", "at" => "στο", "Timezone" => "Ζώνη ώρας", @@ -152,7 +179,11 @@ "24h" => "24ω", "12h" => "12ω", "First day of the week" => "Πρώτη μέρα της εβδομάδας", -"Calendar CalDAV syncing address:" => "Διεύθυνση για το συγχρονισμού του ημερολογίου CalDAV:", +"Cache" => "Cache", +"more info" => "περισσότερες πλροφορίες", +"Primary address (Kontact et al)" => "Κύρια Διεύθυνση(Επαφή και άλλα)", +"iOS/OS X" => "iOS/OS X", +"Read only iCalendar link(s)" => " iCalendar link(s) μόνο για ανάγνωση", "Users" => "Χρήστες", "select users" => "επέλεξε χρήστες", "Editable" => "Επεξεργάσιμο", diff --git a/apps/calendar/l10n/fi_FI.php b/apps/calendar/l10n/fi_FI.php index 4de94b7b7b..e67f77909a 100644 --- a/apps/calendar/l10n/fi_FI.php +++ b/apps/calendar/l10n/fi_FI.php @@ -2,6 +2,8 @@ "No calendars found." => "Kalentereita ei löytynyt", "No events found." => "Tapahtumia ei löytynyt.", "Wrong calendar" => "Väärä kalenteri", +"Import failed" => "Tuonti epäonnistui", +"events has been saved in your calendar" => "tapahtumaa on tallennettu kalenteriisi", "New Timezone:" => "Uusi aikavyöhyke:", "Timezone changed" => "Aikavyöhyke vaihdettu", "Invalid request" => "Virheellinen pyyntö", @@ -21,6 +23,7 @@ "Questions" => "Kysymykset", "Work" => "Työ", "unnamed" => "nimetön", +"New Calendar" => "Uusi kalenteri", "Does not repeat" => "Ei toistoa", "Daily" => "Päivittäin", "Weekly" => "Viikottain", @@ -55,8 +58,26 @@ "November" => "Marraskuu", "December" => "Joulukuu", "Date" => "Päivämäärä", +"Sun." => "Su", +"Mon." => "Ma", +"Tue." => "Ti", +"Wed." => "Ke", +"Thu." => "To", +"Fri." => "Pe", +"Sat." => "La", +"Jan." => "Tammi", +"Feb." => "Helmi", +"Mar." => "Maalis", +"Apr." => "Huhti", +"May." => "Touko", +"Jun." => "Kesä", +"Jul." => "Heinä", +"Aug." => "Elo", +"Sep." => "Syys", +"Oct." => "Loka", +"Nov." => "Marras", +"Dec." => "Joulu", "All day" => "Koko päivä", -"New Calendar" => "Uusi kalenteri", "Missing fields" => "Puuttuvat kentät", "Title" => "Otsikko", "The event ends before it starts" => "Tapahtuma päättyy ennen alkamistaan", @@ -110,25 +131,23 @@ "Select months" => "Valitse kuukaudet", "Select weeks" => "Valitse viikot", "Interval" => "Intervalli", -"Import a calendar file" => "Tuo kalenteritiedosto", -"Please choose the calendar" => "Valitse kalenteri", "create a new calendar" => "luo uusi kalenteri", +"Import a calendar file" => "Tuo kalenteritiedosto", +"Please choose a calendar" => "Valitse kalenteri", "Name of new calendar" => "Uuden kalenterin nimi", "Import" => "Tuo", -"Importing calendar" => "Tuodaan kalenteria", -"Calendar imported successfully" => "Kalenteri tuotu onnistuneesti", "Close Dialog" => "Sulje ikkuna", "Create a new event" => "Luo uusi tapahtuma", "View an event" => "Avaa tapahtuma", "No categories selected" => "Luokkia ei ole valittu", -"Select category" => "Valitse luokka", "Timezone" => "Aikavyöhyke", "Check always for changes of the timezone" => "Tarkista aina aikavyöhykkeen muutokset", "Timeformat" => "Ajan esitysmuoto", "24h" => "24 tuntia", "12h" => "12 tuntia", "First day of the week" => "Viikon ensimmäinen päivä", -"Calendar CalDAV syncing address:" => "Kalenterin CalDAV-synkronointiosoite:", +"Calendar CalDAV syncing addresses" => "Kalenterin CalDAV-synkronointiosoitteet", +"iOS/OS X" => "iOS/OS X", "Users" => "Käyttäjät", "select users" => "valitse käyttäjät", "Editable" => "Muoktattava", diff --git a/apps/calendar/l10n/fr.php b/apps/calendar/l10n/fr.php index 506453af42..289bc905b3 100644 --- a/apps/calendar/l10n/fr.php +++ b/apps/calendar/l10n/fr.php @@ -1,12 +1,23 @@ "Tous les calendriers ne sont pas mis en cache", +"Everything seems to be completely cached" => "Tout semble être en cache", "No calendars found." => "Aucun calendrier n'a été trouvé.", "No events found." => "Aucun événement n'a été trouvé.", "Wrong calendar" => "Mauvais calendrier", +"The file contained either no events or all events are already saved in your calendar." => "Soit le fichier ne contient aucun événement soit tous les événements sont déjà enregistrés dans votre calendrier.", +"events has been saved in the new calendar" => "Les événements ont été enregistrés dans le nouveau calendrier", +"Import failed" => "Échec de l'import", +"events has been saved in your calendar" => "Les événements ont été enregistrés dans votre calendrier", "New Timezone:" => "Nouveau fuseau horaire :", "Timezone changed" => "Fuseau horaire modifié", "Invalid request" => "Requête invalide", "Calendar" => "Calendrier", +"ddd" => "jjj", +"ddd M/d" => "jjj M/j", +"dddd M/d" => "jjjj M/j", +"MMMM yyyy" => "MMMM aaaa", "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" => "MMM d[ yyyy]{ '—'[ MMM] d yyyy}", +"dddd, MMM d, yyyy" => "jjjj, MMM j, aaaa", "Birthday" => "Anniversaire", "Business" => "Professionnel", "Call" => "Appel", @@ -22,7 +33,9 @@ "Projects" => "Projets", "Questions" => "Questions", "Work" => "Travail", +"by" => "par", "unnamed" => "sans-nom", +"New Calendar" => "Nouveau Calendrier", "Does not repeat" => "Pas de répétition", "Daily" => "Tous les jours", "Weekly" => "Hebdomadaire", @@ -67,8 +80,26 @@ "by day and month" => "par jour et mois", "Date" => "Date", "Cal." => "Cal.", +"Sun." => "Dim.", +"Mon." => "Lun.", +"Tue." => "Mar.", +"Wed." => "Mer.", +"Thu." => "Jeu", +"Fri." => "Ven.", +"Sat." => "Sam.", +"Jan." => "Jan.", +"Feb." => "Fév.", +"Mar." => "Mars", +"Apr." => "Avr.", +"May." => "Mai", +"Jun." => "Juin", +"Jul." => "Juil.", +"Aug." => "Août", +"Sep." => "Sep.", +"Oct." => "Oct.", +"Nov." => "Nov.", +"Dec." => "Déc.", "All day" => "Journée entière", -"New Calendar" => "Nouveau Calendrier", "Missing fields" => "Champs manquants", "Title" => "Titre", "From Date" => "De la date", @@ -132,18 +163,17 @@ "Interval" => "Intervalle", "End" => "Fin", "occurrences" => "occurrences", -"Import a calendar file" => "Importer un fichier de calendriers", -"Please choose the calendar" => "Choisissez le calendrier svp", "create a new calendar" => "Créer un nouveau calendrier", +"Import a calendar file" => "Importer un fichier de calendriers", +"Please choose a calendar" => "Veuillez sélectionner un calendrier", "Name of new calendar" => "Nom pour le nouveau calendrier", +"Take an available name!" => "Choisissez un nom disponible !", +"A Calendar with this name already exists. If you continue anyhow, these calendars will be merged." => "Un calendrier de ce nom existe déjà. Si vous choisissez de continuer les calendriers seront fusionnés.", "Import" => "Importer", -"Importing calendar" => "Import du calendrier", -"Calendar imported successfully" => "Calendrier importé avec succès", "Close Dialog" => "Fermer la fenêtre", "Create a new event" => "Créer un nouvel événement", "View an event" => "Voir un événement", "No categories selected" => "Aucune catégorie sélectionnée", -"Select category" => "Sélectionner une catégorie", "of" => "de", "at" => "à", "Timezone" => "Fuseau horaire", @@ -152,7 +182,13 @@ "24h" => "24h", "12h" => "12h", "First day of the week" => "Premier jour de la semaine", -"Calendar CalDAV syncing address:" => "Adresse de synchronisation du calendrier CalDAV :", +"Cache" => "Cache", +"Clear cache for repeating events" => "Nettoyer le cache des événements répétitifs", +"Calendar CalDAV syncing addresses" => "Adresses de synchronisation des calendriers CalDAV", +"more info" => "plus d'infos", +"Primary address (Kontact et al)" => "Adresses principales (Kontact et assimilés)", +"iOS/OS X" => "iOS/OS X", +"Read only iCalendar link(s)" => "lien(s) iCalendar en lecture seule", "Users" => "Utilisateurs", "select users" => "sélectionner les utilisateurs", "Editable" => "Modifiable", diff --git a/apps/contacts/l10n/ca.php b/apps/contacts/l10n/ca.php index 0c95b83d5e..285f96e64a 100644 --- a/apps/contacts/l10n/ca.php +++ b/apps/contacts/l10n/ca.php @@ -1,10 +1,13 @@ "Error en (des)activar la llibreta d'adreces.", "There was an error adding the contact." => "S'ha produït un error en afegir el contacte.", +"element name is not set." => "no s'ha establert el nom de l'element.", +"id is not set." => "no s'ha establert la id.", +"Could not parse contact: " => "No s'ha pogut processar el contacte:", "Cannot add empty property." => "No es pot afegir una propietat buida.", "At least one of the address fields has to be filled out." => "Almenys heu d'omplir un dels camps d'adreça.", "Trying to add duplicate property: " => "Esteu intentant afegir una propietat duplicada:", -"Error adding contact property." => "Error en afegir la propietat del contacte.", +"Error adding contact property: " => "Error en afegir la propietat del contacte:", "No ID provided" => "No heu facilitat cap ID", "Error setting checksum." => "Error en establir la suma de verificació.", "No categories selected for deletion." => "No heu seleccionat les categories a eliminar.", @@ -12,22 +15,23 @@ "No contacts found." => "No s'han trobat contactes.", "Missing ID" => "Falta la ID", "Error parsing VCard for ID: \"" => "Error en analitzar la ID de la VCard: \"", -"Cannot add addressbook with an empty name." => "No es pot afegir una llibreta d'adreces amb un nom buit.", -"Error adding addressbook." => "Error en afegir la llibreta d'adreces.", -"Error activating addressbook." => "Error en activar la llibreta d'adreces.", "No contact ID was submitted." => "No s'ha tramès cap ID de contacte.", "Error reading contact photo." => "Error en llegir la foto del contacte.", "Error saving temporary file." => "Error en desar el fitxer temporal.", "The loading photo is not valid." => "La foto carregada no és vàlida.", -"id is not set." => "no s'ha establert la id.", "Information about vCard is incorrect. Please reload the page." => "La informació de la vCard és incorrecta. Carregueu la pàgina de nou.", "Error deleting contact property." => "Error en eliminar la propietat del contacte.", "Contact ID is missing." => "falta la ID del contacte.", -"Missing contact id." => "Falta la id del contacte.", "No photo path was submitted." => "No heu tramès el camí de la foto.", "File doesn't exist:" => "El fitxer no existeix:", "Error loading image." => "Error en carregar la imatge.", -"element name is not set." => "no s'ha establert el nom de l'element.", +"Error getting contact object." => "Error en obtenir l'objecte contacte.", +"Error getting PHOTO property." => "Error en obtenir la propietat PHOTO.", +"Error saving contact." => "Error en desar el contacte.", +"Error resizing image" => "Error en modificar la mida de la imatge", +"Error cropping image" => "Error en retallar la imatge", +"Error creating temporary image" => "Error en crear la imatge temporal", +"Error finding image: " => "Error en trobar la imatge:", "checksum is not set." => "no s'ha establert la suma de verificació.", "Information about vCard is incorrect. Please reload the page: " => "La informació de la vCard és incorrecta. Carregueu de nou la pàgina:", "Something went FUBAR. " => "Alguna cosa ha anat FUBAR.", @@ -41,8 +45,27 @@ "The uploaded file was only partially uploaded" => "El fitxer només s'ha carregat parcialment", "No file was uploaded" => "No s'ha carregat cap fitxer", "Missing a temporary folder" => "Falta un fitxer temporal", +"Couldn't save temporary image: " => "No s'ha pogut desar la imatge temporal: ", +"Couldn't load temporary image: " => "No s'ha pogut carregar la imatge temporal: ", +"No file was uploaded. Unknown error" => "No s'ha carregat cap fitxer. Error desconegut", "Contacts" => "Contactes", -"Drop a VCF file to import contacts." => "Elimina un fitxer VCF per importar contactes.", +"Sorry, this functionality has not been implemented yet" => "Aquesta funcionalitat encara no està implementada", +"Not implemented" => "No implementada", +"Couldn't get a valid address." => "No s'ha pogut obtenir una adreça vàlida.", +"Error" => "Error", +"Contact" => "Contacte", +"New" => "Nou", +"New Contact" => "Contate nou", +"This property has to be non-empty." => "Aquesta propietat no pot ser buida.", +"Couldn't serialize elements." => "No s'han pogut serialitzar els elements.", +"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' s'ha cridat sense argument de tipus. Informeu-ne a bugs.owncloud.org", +"Edit name" => "Edita el nom", +"No files selected for upload." => "No s'han seleccionat fitxers per a la pujada.", +"The file you are trying to upload exceed the maximum size for file uploads on this server." => "El fitxer que intenteu pujar excedeix la mida màxima de pujada en aquest servidor.", +"Select type" => "Seleccioneu un tipus", +"Result: " => "Resultat: ", +" imported, " => " importat, ", +" failed." => " fallada.", "Addressbook not found." => "No s'ha trobat la llibreta d'adreces.", "This is not your addressbook." => "Aquesta no és la vostra llibreta d'adreces", "Contact could not be found." => "No s'ha trobat el contacte.", @@ -60,25 +83,54 @@ "Video" => "Vídeo", "Pager" => "Paginador", "Internet" => "Internet", +"Birthday" => "Aniversari", +"Business" => "Negocis", +"Call" => "Trucada", +"Clients" => "Clients", +"Deliverer" => "Emissari", +"Holidays" => "Vacances", +"Ideas" => "Idees", +"Journey" => "Viatge", +"Jubilee" => "Aniversari", +"Meeting" => "Reunió", +"Other" => "Altres", +"Personal" => "Personal", +"Projects" => "Projectes", +"Questions" => "Preguntes", "{name}'s Birthday" => "Aniversari de {name}", -"Contact" => "Contacte", "Add Contact" => "Afegeix un contacte", +"Import" => "Importa", "Addressbooks" => "Llibretes d'adreces", +"Close" => "Tanca", +"Keyboard shortcuts" => "Dreceres de teclat", +"Navigation" => "Navegació", +"Next contact in list" => "Següent contacte de la llista", +"Previous contact in list" => "Contacte anterior de la llista", +"Expand/collapse current addressbook" => "Expandeix/col·lapsa la llibreta d'adreces", +"Next/previous addressbook" => "Següent/anterior llibreta d'adreces", +"Actions" => "Accions", +"Refresh contacts list" => "Carrega de nou la llista de contactes", +"Add new contact" => "Afegeix un contacte nou", +"Add new addressbook" => "Afegeix una llibreta d'adreces nova", +"Delete current contact" => "Esborra el contacte", "Configure Address Books" => "Configura les llibretes d'adreces", "New Address Book" => "Nova llibreta d'adreces", -"Import from VCF" => "Importa de VFC", "CardDav Link" => "Enllaç CardDav", "Download" => "Baixa", "Edit" => "Edita", "Delete" => "Suprimeix", -"Download contact" => "Baixa el contacte", -"Delete contact" => "Suprimeix el contacte", "Drop photo to upload" => "Elimina la foto a carregar", +"Delete current photo" => "Elimina la foto actual", +"Edit current photo" => "Edita la foto actual", +"Upload new photo" => "Carrega una foto nova", +"Select photo from ownCloud" => "Selecciona una foto de ownCloud", "Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format personalitzat, Nom curt, Nom sencer, Invertit o Invertit amb coma", "Edit name details" => "Edita detalls del nom", "Nickname" => "Sobrenom", "Enter nickname" => "Escriviu el sobrenom", -"Birthday" => "Aniversari", +"Web site" => "Adreça web", +"http://www.somesite.com" => "http://www.somesite.com", +"Go to web site" => "Vés a la web", "dd-mm-yyyy" => "dd-mm-yyyy", "Groups" => "Grups", "Separate groups with commas" => "Separeu els grups amb comes", @@ -94,24 +146,24 @@ "Edit address details" => "Edita els detalls de l'adreça", "Add notes here." => "Afegiu notes aquí.", "Add field" => "Afegeix un camp", -"Profile picture" => "Foto de perfil", "Phone" => "Telèfon", "Note" => "Nota", -"Delete current photo" => "Elimina la foto actual", -"Edit current photo" => "Edita la foto actual", -"Upload new photo" => "Carrega una foto nova", -"Select photo from ownCloud" => "Selecciona una foto de ownCloud", +"Download contact" => "Baixa el contacte", +"Delete contact" => "Suprimeix el contacte", +"The temporary image has been removed from cache." => "La imatge temporal ha estat eliminada de la memòria de cau.", "Edit address" => "Edita l'adreça", "Type" => "Tipus", "PO Box" => "Adreça postal", +"Street address" => "Adreça", +"Street and number" => "Carrer i número", "Extended" => "Addicional", -"Street" => "Carrer", +"Apartment number etc." => "Número d'apartament, etc.", "City" => "Ciutat", "Region" => "Comarca", +"E.g. state or province" => "p. ex. Estat o província ", "Zipcode" => "Codi postal", +"Postal code" => "Codi postal", "Country" => "País", -"Edit categories" => "Edita categories", -"Add" => "Afegeix", "Addressbook" => "Llibreta d'adreces", "Hon. prefixes" => "Prefix honorífic:", "Miss" => "Srta", @@ -143,15 +195,16 @@ "Please choose the addressbook" => "Escolliu la llibreta d'adreces", "create a new addressbook" => "crea una llibreta d'adreces nova", "Name of new addressbook" => "Nom de la nova llibreta d'adreces", -"Import" => "Importa", "Importing contacts" => "S'estan important contactes", -"Select address book to import to:" => "Seleccioneu la llibreta d'adreces a la que voleu importar:", -"Select from HD" => "Selecciona de HD", "You have no contacts in your addressbook." => "No teniu contactes a la llibreta d'adreces.", "Add contact" => "Afegeix un contacte", "Configure addressbooks" => "Configura les llibretes d'adreces", +"Select Address Books" => "Selecccioneu llibretes d'adreces", +"Enter name" => "Escriviu un nom", +"Enter description" => "Escriviu una descripció", "CardDAV syncing addresses" => "Adreces de sincronització CardDAV", "more info" => "més informació", "Primary address (Kontact et al)" => "Adreça primària (Kontact i al)", -"iOS/OS X" => "iOS/OS X" +"iOS/OS X" => "iOS/OS X", +"Read only vCard directory link(s)" => "Enllaç(os) només de lectura vCard" ); diff --git a/apps/contacts/l10n/de.php b/apps/contacts/l10n/de.php index 3a1013eb4f..b76c5ce071 100644 --- a/apps/contacts/l10n/de.php +++ b/apps/contacts/l10n/de.php @@ -1,10 +1,13 @@ "(De-)Aktivierung des Adressbuches fehlgeschlagen", "There was an error adding the contact." => "Erstellen des Kontakts fehlgeschlagen", +"element name is not set." => "Kein Name für das Element angegeben.", +"id is not set." => "ID ist nicht angegeben.", +"Could not parse contact: " => "Konnte folgenden Kontakt nicht verarbeiten:", "Cannot add empty property." => "Feld darf nicht leer sein.", "At least one of the address fields has to be filled out." => "Mindestens eines der Adressfelder muss ausgefüllt werden.", "Trying to add duplicate property: " => "Versuche, doppelte Eigenschaft hinzuzufügen: ", -"Error adding contact property." => "Kontakt ändern fehlgeschlagen", +"Error adding contact property: " => "Fehler beim Hinzufügen der Kontakteigenschaft:", "No ID provided" => "Keine ID angegeben", "Error setting checksum." => "Fehler beim Setzen der Prüfsumme.", "No categories selected for deletion." => "Keine Kategorien zum Löschen ausgewählt.", @@ -12,22 +15,23 @@ "No contacts found." => "Keine Kontakte gefunden.", "Missing ID" => "Fehlende ID", "Error parsing VCard for ID: \"" => "Fehler beim Einlesen der VCard für die ID: \"", -"Cannot add addressbook with an empty name." => "Bitte einen Namen für das Adressbuch angeben.", -"Error adding addressbook." => "Adressbuch hinzufügen fehlgeschlagen", -"Error activating addressbook." => "Adressbuchaktivierung fehlgeschlagen", "No contact ID was submitted." => "Es wurde keine Kontakt-ID übermittelt.", -"Error reading contact photo." => "Fehler beim auslesen des Kontaktfotos.", +"Error reading contact photo." => "Fehler beim Auslesen des Kontaktfotos.", "Error saving temporary file." => "Fehler beim Speichern der temporären Datei.", "The loading photo is not valid." => "Das Kontaktfoto ist fehlerhaft.", -"id is not set." => "ID ist nicht angegeben.", "Information about vCard is incorrect. Please reload the page." => "Die Information der vCard ist fehlerhaft. Bitte aktualisiere die Seite.", "Error deleting contact property." => "Kontakteigenschaft löschen fehlgeschlagen", "Contact ID is missing." => "Keine Kontakt-ID angegeben.", -"Missing contact id." => "Fehlende Kontakt-ID.", "No photo path was submitted." => "Kein Foto-Pfad übermittelt.", "File doesn't exist:" => "Datei existiert nicht: ", "Error loading image." => "Fehler beim Laden des Bildes.", -"element name is not set." => "Kein Name für das Element angegeben.", +"Error getting contact object." => "Fehler beim Abruf des Kontakt-Objektes.", +"Error getting PHOTO property." => "Fehler beim Abrufen der PHOTO Eigenschaft.", +"Error saving contact." => "Fehler beim Speichern des Kontaktes", +"Error resizing image" => "Fehler bei der Größenänderung des Bildes", +"Error cropping image" => "Fehler beim Zuschneiden des Bildes", +"Error creating temporary image" => "Fehler beim erstellen des temporären Bildes", +"Error finding image: " => "Fehler beim Suchen des Bildes: ", "checksum is not set." => "Keine Prüfsumme angegeben.", "Information about vCard is incorrect. Please reload the page: " => "Die Informationen zur vCard sind fehlerhaft. Bitte Seite neu laden: ", "Something went FUBAR. " => "Irgendwas ist hier so richtig schief gelaufen. ", @@ -41,14 +45,33 @@ "The uploaded file was only partially uploaded" => "Datei konnte nur teilweise übertragen werden", "No file was uploaded" => "Keine Datei konnte übertragen werden.", "Missing a temporary folder" => "Kein temporärer Ordner vorhanden", +"Couldn't save temporary image: " => "Konnte das temporäre Bild nicht speichern:", +"Couldn't load temporary image: " => "Konnte das temporäre Bild nicht laden:", +"No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", "Contacts" => "Kontakte", -"Drop a VCF file to import contacts." => "Zieh' eine VCF Datei hierher zum Kontaktimport", +"Sorry, this functionality has not been implemented yet" => "Diese Funktion steht leider noch nicht zur Verfügung", +"Not implemented" => "Nicht Verfügbar", +"Couldn't get a valid address." => "Konnte keine gültige Adresse abrufen", +"Error" => "Fehler", +"Contact" => "Kontakt", +"New" => "Neu", +"New Contact" => "Neuer Kontakt", +"This property has to be non-empty." => "Dieses Feld darf nicht Leer sein.", +"Couldn't serialize elements." => "Konnte Elemente nicht serialisieren", +"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' wurde ohne Argumente aufgerufen, bitte Melde dies auf bugs.owncloud.org", +"Edit name" => "Name ändern", +"No files selected for upload." => "Keine Datei(en) zum Hochladen ausgewählt", +"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei, die Sie versuchen hochzuladen, überschreitet die maximale Größe für Datei-Uploads auf diesem Server.", +"Select type" => "Wähle Typ", +"Result: " => "Ergebnis: ", +" imported, " => " importiert, ", +" failed." => " fehlgeschlagen.", "Addressbook not found." => "Adressbuch nicht gefunden.", "This is not your addressbook." => "Dies ist nicht dein Adressbuch.", "Contact could not be found." => "Kontakt konnte nicht gefunden werden.", "Address" => "Adresse", "Telephone" => "Telefon", -"Email" => "Email", +"Email" => "E-Mail", "Organization" => "Organisation", "Work" => "Arbeit", "Home" => "Zuhause", @@ -60,28 +83,57 @@ "Video" => "Video", "Pager" => "Pager", "Internet" => "Internet", +"Birthday" => "Geburtstag", +"Business" => "Geschäftlich", +"Call" => "Anruf", +"Clients" => "Kunden", +"Deliverer" => "Lieferant", +"Holidays" => "Feiertage", +"Ideas" => "Ideen", +"Journey" => "Reise", +"Jubilee" => "Jubiläum", +"Meeting" => "Besprechung", +"Other" => "Andere", +"Personal" => "Persönlich", +"Projects" => "Projekte", +"Questions" => "Fragen", "{name}'s Birthday" => "Geburtstag von {name}", -"Contact" => "Kontakt", "Add Contact" => "Kontakt hinzufügen", +"Import" => "Importieren", "Addressbooks" => "Adressbücher", +"Close" => "Schließen", +"Keyboard shortcuts" => "Tastaturbefehle", +"Navigation" => "Navigation", +"Next contact in list" => "Nächster Kontakt aus der Liste", +"Previous contact in list" => "Vorheriger Kontakt aus der Liste", +"Expand/collapse current addressbook" => "Ausklappen/Einklappen des Adressbuches", +"Next/previous addressbook" => "Nächstes/Vorhergehendes Adressbuch", +"Actions" => "Aktionen", +"Refresh contacts list" => "Kontaktliste neu laden", +"Add new contact" => "Neuen Kontakt hinzufügen", +"Add new addressbook" => "Neues Adressbuch hinzufügen", +"Delete current contact" => "Aktuellen Kontakt löschen", "Configure Address Books" => "Adressbücher konfigurieren", "New Address Book" => "Neues Adressbuch", -"Import from VCF" => "Import von VCF Datei", -"CardDav Link" => "CardDav Link", +"CardDav Link" => "CardDav-Link", "Download" => "Herunterladen", "Edit" => "Bearbeiten", "Delete" => "Löschen", -"Download contact" => "Kontakt herunterladen", -"Delete contact" => "Kontakt löschen", -"Drop photo to upload" => "Zieh' ein Foto hierher zum hochladen", -"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format benutzerdefiniert, Kurzname, Vollname, Rückwärts order Rückwärts mit Komma", -"Edit name details" => "Namen ändern", +"Drop photo to upload" => "Zieh' ein Foto hierher zum Hochladen", +"Delete current photo" => "Derzeitiges Foto löschen", +"Edit current photo" => "Foto ändern", +"Upload new photo" => "Neues Foto hochladen", +"Select photo from ownCloud" => "Foto aus ownCloud auswählen", +"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format benutzerdefiniert, Kurzname, Vollname, Rückwärts oder Rückwärts mit Komma", +"Edit name details" => "Name ändern", "Nickname" => "Spitzname", -"Enter nickname" => "Spitznamen angeben", -"Birthday" => "Geburtstag", -"dd-mm-yyyy" => "TT-MM-JJJJ", +"Enter nickname" => "Spitzname angeben", +"Web site" => "Webseite", +"http://www.somesite.com" => "http://www.somesite.com", +"Go to web site" => "Webseite aufrufen", +"dd-mm-yyyy" => "dd.mm.yyyy", "Groups" => "Gruppen", -"Separate groups with commas" => "Gruppen mit Komma trennt", +"Separate groups with commas" => "Gruppen mit Komma getrennt", "Edit groups" => "Gruppen editieren", "Preferred" => "Bevorzugt", "Please specify a valid email address." => "Bitte eine gültige E-Mail-Adresse angeben.", @@ -94,24 +146,24 @@ "Edit address details" => "Adressinformationen ändern", "Add notes here." => "Füge hier Notizen ein.", "Add field" => "Feld hinzufügen", -"Profile picture" => "Profil Bild", "Phone" => "Telefon", "Note" => "Notiz", -"Delete current photo" => "Derzeitiges Foto löschen", -"Edit current photo" => "Foto ändern", -"Upload new photo" => "Neues Foto hochladen", -"Select photo from ownCloud" => "Foto aus ownCloud auswählen", +"Download contact" => "Kontakt herunterladen", +"Delete contact" => "Kontakt löschen", +"The temporary image has been removed from cache." => "Das temporäre Bild wurde aus dem Cache gelöscht.", "Edit address" => "Adresse ändern", "Type" => "Typ", "PO Box" => "Postfach", +"Street address" => "Straßenanschrift", +"Street and number" => "Straße und Nummer", "Extended" => "Erweitert", -"Street" => "Straße", +"Apartment number etc." => "Wohnungsnummer usw.", "City" => "Stadt", "Region" => "Region", +"E.g. state or province" => "Z.B. Staat oder Bezirk", "Zipcode" => "Postleitzahl", +"Postal code" => "PLZ", "Country" => "Land", -"Edit categories" => "Kategorie ändern", -"Add" => "Hinzufügen", "Addressbook" => "Adressbuch", "Hon. prefixes" => "Höflichkeitspräfixe", "Miss" => "Frau", @@ -143,15 +195,16 @@ "Please choose the addressbook" => "Bitte Adressbuch auswählen", "create a new addressbook" => "Neues Adressbuch erstellen", "Name of new addressbook" => "Name des neuen Adressbuchs", -"Import" => "Importieren", "Importing contacts" => "Kontakte werden importiert", -"Select address book to import to:" => "Adressbuch, in das importiert werden soll", -"Select from HD" => "Von der Festplatte auswählen", "You have no contacts in your addressbook." => "Du hast keine Kontakte im Adressbuch.", "Add contact" => "Kontakt hinzufügen", "Configure addressbooks" => "Adressbücher konfigurieren", +"Select Address Books" => "Wähle Adressbuch", +"Enter name" => "Name eingeben", +"Enter description" => "Beschreibung eingeben", "CardDAV syncing addresses" => "CardDAV Sync-Adressen", "more info" => "mehr Info", "Primary address (Kontact et al)" => "primäre Adresse (für Kontact o.ä. Programme)", -"iOS/OS X" => "iOS/OS X" +"iOS/OS X" => "iOS/OS X", +"Read only vCard directory link(s)" => "Nur lesende(r) vCalender-Verzeichnis-Link(s)" ); diff --git a/apps/contacts/l10n/el.php b/apps/contacts/l10n/el.php index f015f0ca36..9538e630a5 100644 --- a/apps/contacts/l10n/el.php +++ b/apps/contacts/l10n/el.php @@ -1,36 +1,40 @@ "Σφάλμα (απ)ενεργοποίησης βιβλίου διευθύνσεων", "There was an error adding the contact." => "Σφάλμα κατά την προσθήκη επαφής.", +"element name is not set." => "δεν ορίστηκε όνομα στοιχείου", +"id is not set." => "δεν ορίστηκε id", +"Could not parse contact: " => "Δε αναγνώστηκε η επαφή", "Cannot add empty property." => "Αδύνατη προσθήκη κενής ιδιότητας.", "At least one of the address fields has to be filled out." => "Πρέπει να συμπληρωθεί τουλάχιστον ένα από τα παιδία διεύθυνσης.", "Trying to add duplicate property: " => "Προσπάθεια προσθήκης διπλότυπης ιδιότητας:", -"Error adding contact property." => "Σφάλμα προσθήκης ιδιότητας επαφής.", -"No ID provided" => "Δε δώθηκε ID", +"Error adding contact property: " => "Σφάλμα στη προσθήκη ιδιότητας επαφής", +"No ID provided" => "Δε δόθηκε ID", "Error setting checksum." => "Λάθος κατά τον ορισμό checksum ", "No categories selected for deletion." => "Δε επελέγησαν κατηγορίες για διαγραφή", "No address books found." => "Δε βρέθηκε βιβλίο διευθύνσεων", "No contacts found." => "Δεν βρέθηκαν επαφές", "Missing ID" => "Λείπει ID", "Error parsing VCard for ID: \"" => "Σφάλμα κατά την ανάγνωση του VCard για το ID:\"", -"Cannot add addressbook with an empty name." => "Δε μπορεί να προστεθεί βιβλίο διευθύνσεων με κενό όνομα", -"Error adding addressbook." => "Σφάλμα προσθήκης βιβλίου διευθύνσεων.", -"Error activating addressbook." => "Σφάλμα ενεργοποίησης βιβλίου διευθύνσεων", "No contact ID was submitted." => "Δε υπεβλήθει ID επαφής", "Error reading contact photo." => "Σφάλμα ανάγνωσης εικόνας επαφής", "Error saving temporary file." => "Σφάλμα αποθήκευσης προσωρινού αρχείου", "The loading photo is not valid." => "Η φορτωμένη φωτογραφία δεν είναι έγκυρη", -"id is not set." => "δεν ορίστηκε id", "Information about vCard is incorrect. Please reload the page." => "Οι πληροφορίες σχετικά με vCard είναι εσφαλμένες. Παρακαλώ επαναφορτώστε τη σελίδα.", "Error deleting contact property." => "Σφάλμα διαγραφής ιδιότητας επαφής.", "Contact ID is missing." => "Λείπει ID επαφής", -"Missing contact id." => "Απουσιαζει ID επαφής", "No photo path was submitted." => "Δε δόθηκε διαδρομή εικόνας", "File doesn't exist:" => "Το αρχείο δεν υπάρχει:", "Error loading image." => "Σφάλμα φόρτωσης εικόνας", -"element name is not set." => "δεν ορίστηκε όνομα στοιχείου", +"Error getting contact object." => "Σφάλμα κατά τη λήψη αντικειμένου επαφής", +"Error getting PHOTO property." => "Σφάλμα κατά τη λήψη ιδιοτήτων ΦΩΤΟΓΡΑΦΙΑΣ.", +"Error saving contact." => "Σφάλμα κατά την αποθήκευση επαφής.", +"Error resizing image" => "Σφάλμα κατά την αλλαγή μεγέθους εικόνας", +"Error cropping image" => "Σφάλμα κατά την περικοπή εικόνας", +"Error creating temporary image" => "Σφάλμα κατά την δημιουργία προσωρινής εικόνας", +"Error finding image: " => "Σφάλμα κατά την εύρεση της εικόνας: ", "checksum is not set." => "δε ορίστηκε checksum ", -"Information about vCard is incorrect. Please reload the page: " => "Οι πληροφορίες για τη vCard είναι λανθασμένες.Παρακαλώ ξαναφορτώστε τη σελίδα:", -"Something went FUBAR. " => "Κάτι χάθηκε στο άγνωστο", +"Information about vCard is incorrect. Please reload the page: " => "Οι πληροφορίες για τη vCard είναι λανθασμένες.Παρακαλώ ξαναφορτώστε τη σελίδα: ", +"Something went FUBAR. " => "Κάτι χάθηκε στο άγνωστο. ", "Error updating contact property." => "Σφάλμα ενημέρωσης ιδιότητας επαφής.", "Cannot update addressbook with an empty name." => "Δε μπορεί να γίνει αλλαγή βιβλίου διευθύνσεων χωρίς όνομα", "Error updating addressbook." => "Σφάλμα ενημέρωσης βιβλίου διευθύνσεων.", @@ -41,8 +45,27 @@ "The uploaded file was only partially uploaded" => "Το αρχείο ανέβηκε μερικώς", "No file was uploaded" => "Δεν ανέβηκε κάποιο αρχείο", "Missing a temporary folder" => "Λείπει ο προσωρινός φάκελος", +"Couldn't save temporary image: " => "Δεν ήταν δυνατή η αποθήκευση της προσωρινής εικόνας: ", +"Couldn't load temporary image: " => "Δεν ήταν δυνατή η φόρτωση της προσωρινής εικόνας: ", +"No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα", "Contacts" => "Επαφές", -"Drop a VCF file to import contacts." => "Εισάγεται ένα VCF αρχείο για εισαγωγή επαφών", +"Sorry, this functionality has not been implemented yet" => "Λυπούμαστε, αυτή η λειτουργία δεν έχει υλοποιηθεί ακόμα", +"Not implemented" => "Δεν έχει υλοποιηθεί", +"Couldn't get a valid address." => "Αδυναμία λήψης έγκυρης διεύθυνσης", +"Error" => "Σφάλμα", +"Contact" => "Επαφή", +"New" => "Νέο", +"New Contact" => "Νέα επαφή", +"This property has to be non-empty." => "Το πεδίο δεν πρέπει να είναι άδειο.", +"Couldn't serialize elements." => "Αδύνατο να μπουν σε σειρά τα στοιχεία", +"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "το 'deleteProperty' καλέστηκε χωρίς without type argument. Παρακαλώ αναφέρατε στο bugs.owncloud.org", +"Edit name" => "Αλλαγή ονόματος", +"No files selected for upload." => "Δεν επιλέχτηκαν αρχεία για μεταφόρτωση", +"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Το αρχείο που προσπαθείτε να ανεβάσετε υπερβαίνει το μέγιστο μέγεθος για τις προσθήκες αρχείων σε αυτόν τον server.", +"Select type" => "Επιλογή τύπου", +"Result: " => "Αποτέλεσμα: ", +" imported, " => " εισάγεται,", +" failed." => " απέτυχε.", "Addressbook not found." => "Δε βρέθηκε βιβλίο διευθύνσεων", "This is not your addressbook." => "Αυτό δεν είναι το βιβλίο διευθύνσεων σας.", "Contact could not be found." => "Η επαφή δεν μπόρεσε να βρεθεί.", @@ -55,30 +78,58 @@ "Mobile" => "Κινητό", "Text" => "Κείμενο", "Voice" => "Ομιλία", -"Message" => "Μήνυμα ", +"Message" => "Μήνυμα", "Fax" => "Φαξ", "Video" => "Βίντεο", "Pager" => "Βομβητής", "Internet" => "Διαδίκτυο", +"Birthday" => "Γενέθλια", +"Business" => "Επιχείρηση", +"Call" => "Κάλεσε", +"Clients" => "Πελάτες", +"Deliverer" => "Προμηθευτής", +"Holidays" => "Διακοπές", +"Ideas" => "Ιδέες", +"Journey" => "Ταξίδι", +"Jubilee" => "Ιωβηλαίο", +"Meeting" => "Συνάντηση", +"Other" => "Άλλο", +"Personal" => "Προσωπικό", +"Projects" => "Έργα", +"Questions" => "Ερωτήσεις", "{name}'s Birthday" => "{name} έχει Γενέθλια", -"Contact" => "Επαφή", "Add Contact" => "Προσθήκη επαφής", +"Import" => "Εισαγωγή", "Addressbooks" => "Βιβλία διευθύνσεων", +"Close" => "Κλείσιμο ", +"Keyboard shortcuts" => "Συντομεύσεις πλητρολογίου", +"Navigation" => "Πλοήγηση", +"Next contact in list" => "Επόμενη επαφή στη λίστα", +"Previous contact in list" => "Προηγούμενη επαφή στη λίστα", +"Next/previous addressbook" => "Επόμενο/προηγούμενο βιβλίο διευθύνσεων", +"Actions" => "Ενέργειες", +"Refresh contacts list" => "Ανανέωσε τη λίστα επαφών", +"Add new contact" => "Προσθήκη νέας επαφής", +"Add new addressbook" => "Προσθήκη νέου βιβλίου επαφών", +"Delete current contact" => "Διαγραφή τρέχουσας επαφής", "Configure Address Books" => "Ρυθμίστε το βιβλίο διευθύνσεων ", "New Address Book" => "Νέο βιβλίο διευθύνσεων", -"Import from VCF" => "Εισαγωγή από VCF αρχείο", "CardDav Link" => "Σύνδεσμος CardDav", "Download" => "Λήψη", "Edit" => "Επεξεργασία", "Delete" => "Διαγραφή", -"Download contact" => "Λήψη επαφής", -"Delete contact" => "Διαγραφή επαφής", "Drop photo to upload" => "Ρίξε μια φωτογραφία για ανέβασμα", +"Delete current photo" => "Διαγραφή τρέχουσας φωτογραφίας", +"Edit current photo" => "Επεξεργασία τρέχουσας φωτογραφίας", +"Upload new photo" => "Ανέβασε νέα φωτογραφία", +"Select photo from ownCloud" => "Επέλεξε φωτογραφία από το ownCloud", "Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format custom, Όνομα, Επώνυμο, Αντίστροφο ή Αντίστροφο με κόμμα", "Edit name details" => "Αλλάξτε τις λεπτομέρειες ονόματος", "Nickname" => "Παρατσούκλι", -"Enter nickname" => "Εισάγεται παρατσούκλι", -"Birthday" => "Γενέθλια", +"Enter nickname" => "Εισάγετε παρατσούκλι", +"Web site" => "Ιστότοπος", +"http://www.somesite.com" => "http://www.somesite.com", +"Go to web site" => "Πήγαινε στον ιστότοπο", "dd-mm-yyyy" => "ΗΗ-ΜΜ-ΕΕΕΕ", "Groups" => "Ομάδες", "Separate groups with commas" => "Διαχώρισε τις ομάδες με κόμμα ", @@ -94,24 +145,24 @@ "Edit address details" => "Επεξεργασία λεπτομερειών διεύθυνσης", "Add notes here." => "Πρόσθεσε τις σημειώσεις εδώ", "Add field" => "Προσθήκη πεδίου", -"Profile picture" => "Φωτογραφία προφίλ", "Phone" => "Τηλέφωνο", "Note" => "Σημείωση", -"Delete current photo" => "Διαγραφή τρέχουσας φωτογραφίας", -"Edit current photo" => "Επεξεργασία τρέχουσας φωτογραφίας", -"Upload new photo" => "Ανέβασε νέα φωτογραφία", -"Select photo from ownCloud" => "Επέλεξε φωτογραφία από το ownCloud", +"Download contact" => "Λήψη επαφής", +"Delete contact" => "Διαγραφή επαφής", +"The temporary image has been removed from cache." => "Η προσωρινή εικόνα αφαιρέθηκε από την κρυφή μνήμη.", "Edit address" => "Επεξεργασία διεύθυνσης", "Type" => "Τύπος", "PO Box" => "Ταχ. Θυρίδα", +"Street address" => "Διεύθυνση οδού", +"Street and number" => "Οδός και αριθμός", "Extended" => "Εκτεταμένη", -"Street" => "Οδός", +"Apartment number etc." => "Αριθμός διαμερίσματος", "City" => "Πόλη", "Region" => "Περιοχή", +"E.g. state or province" => "Π.χ. Πολιτεία ή επαρχεία", "Zipcode" => "Τ.Κ.", +"Postal code" => "Ταχυδρομικός Κωδικός", "Country" => "Χώρα", -"Edit categories" => "Επεξεργασία κατηγορίας", -"Add" => "Προσθήκη", "Addressbook" => "Βιβλίο διευθύνσεων", "Hon. prefixes" => "προθέματα", "Miss" => "Δις", @@ -134,7 +185,7 @@ "Sn." => "Sn.", "New Addressbook" => "Νέο βιβλίο διευθύνσεων", "Edit Addressbook" => "Επεξεργασία βιβλίου διευθύνσεων", -"Displayname" => "Προβαλόμενο όνομα", +"Displayname" => "Προβαλλόμενο όνομα", "Active" => "Ενεργό", "Save" => "Αποθήκευση", "Submit" => "Καταχώρηση", @@ -143,15 +194,16 @@ "Please choose the addressbook" => "Παρακαλώ επέλεξε βιβλίο διευθύνσεων", "create a new addressbook" => "Δημιουργία νέου βιβλίου διευθύνσεων", "Name of new addressbook" => "Όνομα νέου βιβλίου διευθύνσεων", -"Import" => "Εισαγωγή", "Importing contacts" => "Εισαγωγή επαφών", -"Select address book to import to:" => "Επέλεξε σε ποιο βιβλίο διευθύνσεων για εισαγωγή:", -"Select from HD" => "Επιλογή από HD", "You have no contacts in your addressbook." => "Δεν έχεις επαφές στο βιβλίο διευθύνσεων", "Add contact" => "Προσθήκη επαφής", "Configure addressbooks" => "Ρύθμισε το βιβλίο διευθύνσεων", +"Select Address Books" => "Επέλεξε βιβλίο διευθύνσεων", +"Enter name" => "Εισαγωγή ονόματος", +"Enter description" => "Εισαγωγή περιγραφής", "CardDAV syncing addresses" => "συγχρονισμός διευθύνσεων μέσω CardDAV ", "more info" => "περισσότερες πληροφορίες", "Primary address (Kontact et al)" => "Κύρια διεύθυνση", -"iOS/OS X" => "iOS/OS X" +"iOS/OS X" => "iOS/OS X", +"Read only vCard directory link(s)" => "vCard σύνδεσμος(οι) φάκελου μόνο για ανάγνωση" ); diff --git a/apps/contacts/l10n/fi_FI.php b/apps/contacts/l10n/fi_FI.php index 2e3e91611b..5c9a81eba0 100644 --- a/apps/contacts/l10n/fi_FI.php +++ b/apps/contacts/l10n/fi_FI.php @@ -2,18 +2,19 @@ "There was an error adding the contact." => "Virhe yhteystietoa lisättäessä.", "Cannot add empty property." => "Tyhjää ominaisuutta ei voi lisätä.", "At least one of the address fields has to be filled out." => "Vähintään yksi osoitekenttä tulee täyttää.", -"Error adding contact property." => "Virhe lisättäessä ominaisuutta yhteystietoon.", "No categories selected for deletion." => "Luokkia ei ole valittu poistettavaksi.", "No address books found." => "Osoitekirjoja ei löytynyt.", "No contacts found." => "Yhteystietoja ei löytynyt.", "Error parsing VCard for ID: \"" => "Virhe jäsennettäessä vCardia tunnisteelle: \"", -"Cannot add addressbook with an empty name." => "Ilman nimeä olevaa osoitekirjaa ei voi lisätä.", -"Error adding addressbook." => "Virhe lisättäessä osoitekirjaa.", -"Error activating addressbook." => "Virhe aktivoitaessa osoitekirjaa.", "Error saving temporary file." => "Virhe tallennettaessa tilapäistiedostoa.", +"Information about vCard is incorrect. Please reload the page." => "vCardin tiedot eivät kelpaa. Lataa sivu uudelleen.", "Error deleting contact property." => "Virhe poistettaessa yhteystiedon ominaisuutta.", "File doesn't exist:" => "Tiedostoa ei ole olemassa:", "Error loading image." => "Virhe kuvaa ladatessa.", +"Error saving contact." => "Virhe yhteystietoa tallennettaessa.", +"Error resizing image" => "Virhe asettaessa kuvaa uuteen kokoon", +"Error cropping image" => "Virhe rajatessa kuvaa", +"Error creating temporary image" => "Virhe luotaessa väliaikaista kuvaa", "Error updating contact property." => "Virhe päivitettäessä yhteystiedon ominaisuutta.", "Error updating addressbook." => "Virhe päivitettäessä osoitekirjaa.", "There is no error, the file uploaded with success" => "Ei virhettä, tiedosto lähetettiin onnistuneesti", @@ -21,7 +22,17 @@ "The uploaded file was only partially uploaded" => "Lähetetty tiedosto lähetettiin vain osittain", "No file was uploaded" => "Tiedostoa ei lähetetty", "Missing a temporary folder" => "Tilapäiskansio puuttuu", +"No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe", "Contacts" => "Yhteystiedot", +"Error" => "Virhe", +"Contact" => "Yhteystieto", +"New" => "Uusi", +"New Contact" => "Uusi yhteystieto", +"Edit name" => "Muokkaa nimeä", +"No files selected for upload." => "Tiedostoja ei ole valittu lähetettäväksi.", +"Result: " => "Tulos: ", +" imported, " => " tuotu, ", +" failed." => " epäonnistui.", "Addressbook not found." => "Osoitekirjaa ei löytynyt.", "This is not your addressbook." => "Tämä ei ole osoitekirjasi.", "Contact could not be found." => "Yhteystietoa ei löytynyt.", @@ -39,22 +50,36 @@ "Video" => "Video", "Pager" => "Hakulaite", "Internet" => "Internet", +"Birthday" => "Syntymäpäivä", +"Business" => "Työ", +"Other" => "Muu", +"Questions" => "Kysymykset", "{name}'s Birthday" => "Henkilön {name} syntymäpäivä", -"Contact" => "Yhteystieto", "Add Contact" => "Lisää yhteystieto", +"Import" => "Tuo", "Addressbooks" => "Osoitekirjat", +"Close" => "Sulje", +"Actions" => "Toiminnot", +"Refresh contacts list" => "Päivitä yhteystietoluettelo", +"Add new contact" => "Lisää uusi yhteystieto", +"Add new addressbook" => "Lisää uusi osoitekirja", +"Delete current contact" => "Poista nykyinen yhteystieto", "Configure Address Books" => "Muokkaa osoitekirjoja", "New Address Book" => "Uusi osoitekirja", -"Import from VCF" => "Tuo VCF-tiedostosta", "CardDav Link" => "CardDav-linkki", "Download" => "Lataa", "Edit" => "Muokkaa", "Delete" => "Poista", -"Download contact" => "Lataa yhteystieto", -"Delete contact" => "Poista yhteystieto", +"Delete current photo" => "Poista nykyinen valokuva", +"Edit current photo" => "Muokkaa nykyistä valokuvaa", +"Upload new photo" => "Lähetä uusi valokuva", +"Select photo from ownCloud" => "Valitse valokuva ownCloudista", +"Edit name details" => "Muokkaa nimitietoja", "Nickname" => "Kutsumanimi", "Enter nickname" => "Anna kutsumanimi", -"Birthday" => "Syntymäpäivä", +"Web site" => "Verkkosivu", +"http://www.somesite.com" => "http://www.somesite.com", +"Go to web site" => "Siirry verkkosivulle", "Groups" => "Ryhmät", "Separate groups with commas" => "Erota ryhmät pilkuilla", "Edit groups" => "Muokkaa ryhmiä", @@ -64,26 +89,26 @@ "Enter phone number" => "Anna puhelinnumero", "Delete phone number" => "Poista puhelinnumero", "View on map" => "Näytä kartalla", +"Edit address details" => "Muokkaa osoitetietoja", "Add notes here." => "Lisää huomiot tähän.", "Add field" => "Lisää kenttä", -"Profile picture" => "Profiilikuva", "Phone" => "Puhelin", "Note" => "Huomio", -"Delete current photo" => "Poista nykyinen valokuva", -"Edit current photo" => "Muokkaa nykyistä valokuvaa", -"Upload new photo" => "Lähetä uusi valokuva", -"Select photo from ownCloud" => "Valitse valokuva ownCloudista", +"Download contact" => "Lataa yhteystieto", +"Delete contact" => "Poista yhteystieto", +"The temporary image has been removed from cache." => "Väliaikainen kuva on poistettu välimuistista.", "Edit address" => "Muokkaa osoitetta", "Type" => "Tyyppi", "PO Box" => "Postilokero", +"Street address" => "Katuosoite", +"Street and number" => "Katu ja numero", "Extended" => "Laajennettu", -"Street" => "Katuosoite", +"Apartment number etc." => "Asunnon numero jne.", "City" => "Paikkakunta", "Region" => "Alue", "Zipcode" => "Postinumero", +"Postal code" => "Postinumero", "Country" => "Maa", -"Edit categories" => "Muokkaa luokkia", -"Add" => "Lisää", "Addressbook" => "Osoitekirja", "Given name" => "Etunimi", "Additional names" => "Lisänimet", @@ -98,12 +123,13 @@ "Please choose the addressbook" => "Valitse osoitekirja", "create a new addressbook" => "luo uusi osoitekirja", "Name of new addressbook" => "Uuden osoitekirjan nimi", -"Import" => "Tuo", "Importing contacts" => "Tuodaan yhteystietoja", -"Select address book to import to:" => "Valitse osoitekirja, johon yhteystiedot tuodaan:", "You have no contacts in your addressbook." => "Osoitekirjassasi ei ole yhteystietoja.", "Add contact" => "Lisää yhteystieto", "Configure addressbooks" => "Muokkaa osoitekirjoja", +"Select Address Books" => "Valitse osoitekirjat", +"Enter name" => "Anna nimi", +"Enter description" => "Anna kuvaus", "CardDAV syncing addresses" => "CardDAV-synkronointiosoitteet", "iOS/OS X" => "iOS/OS X" ); diff --git a/apps/contacts/l10n/fr.php b/apps/contacts/l10n/fr.php index 0a2a4e58b9..dd59a68aaf 100644 --- a/apps/contacts/l10n/fr.php +++ b/apps/contacts/l10n/fr.php @@ -1,10 +1,13 @@ "Des erreurs se sont produites lors de l'activation/désactivation du carnet d'adresses.", "There was an error adding the contact." => "Une erreur s'est produite lors de l'ajout du contact.", +"element name is not set." => "Le champ Nom n'est pas défini.", +"id is not set." => "L'ID n'est pas défini.", +"Could not parse contact: " => "Impossible de lire le contact :", "Cannot add empty property." => "Impossible d'ajouter un champ vide.", "At least one of the address fields has to be filled out." => "Au moins un des champs d'adresses doit être complété.", "Trying to add duplicate property: " => "Ajout d'une propriété en double:", -"Error adding contact property." => "Erreur lors de l'ajout du champ.", +"Error adding contact property: " => "Erreur pendant l'ajout de la propriété du contact :", "No ID provided" => "Aucun ID fourni", "Error setting checksum." => "Erreur lors du paramétrage du hachage.", "No categories selected for deletion." => "Pas de catégories sélectionnées pour la suppression.", @@ -12,22 +15,23 @@ "No contacts found." => "Aucun contact trouvé.", "Missing ID" => "ID manquant", "Error parsing VCard for ID: \"" => "Erreur lors de l'analyse du VCard pour l'ID: \"", -"Cannot add addressbook with an empty name." => "Ne peut être ajouté avec un nom vide.", -"Error adding addressbook." => "Erreur lors de l'ajout du carnet d'adresses.", -"Error activating addressbook." => "Erreur lors de l'activation du carnet d'adresses.", "No contact ID was submitted." => "Aucun ID de contact envoyé", "Error reading contact photo." => "Erreur de lecture de la photo du contact.", "Error saving temporary file." => "Erreur de sauvegarde du fichier temporaire.", "The loading photo is not valid." => "La photo chargée est invalide.", -"id is not set." => "L'ID n'est pas défini.", "Information about vCard is incorrect. Please reload the page." => "Les informations relatives à cette vCard sont incorrectes. Veuillez recharger la page.", "Error deleting contact property." => "Erreur lors de la suppression du champ.", "Contact ID is missing." => "L'ID du contact est manquant.", -"Missing contact id." => "ID contact manquant.", "No photo path was submitted." => "Le chemin de la photo n'a pas été envoyé.", "File doesn't exist:" => "Fichier inexistant:", "Error loading image." => "Erreur lors du chargement de l'image.", -"element name is not set." => "Le champ Nom n'est pas défini.", +"Error getting contact object." => "Erreur lors de l'obtention de l'objet contact", +"Error getting PHOTO property." => "Erreur lors de l'obtention des propriétés de la photo", +"Error saving contact." => "Erreur de sauvegarde du contact", +"Error resizing image" => "Erreur de redimensionnement de l'image", +"Error cropping image" => "Erreur lors du rognage de l'image", +"Error creating temporary image" => "Erreur de création de l'image temporaire", +"Error finding image: " => "Erreur pour trouver l'image :", "checksum is not set." => "L'hachage n'est pas défini.", "Information about vCard is incorrect. Please reload the page: " => "L'informatiion à propos de la vCard est incorrect. Merci de rafraichir la page:", "Something went FUBAR. " => "Quelque chose est FUBAR.", @@ -41,8 +45,27 @@ "The uploaded file was only partially uploaded" => "Le fichier envoyé n'a été que partiellement envoyé.", "No file was uploaded" => "Pas de fichier envoyé.", "Missing a temporary folder" => "Absence de dossier temporaire.", +"Couldn't save temporary image: " => "Impossible de sauvegarder l'image temporaire :", +"Couldn't load temporary image: " => "Impossible de charger l'image temporaire :", +"No file was uploaded. Unknown error" => "Aucun fichier n'a été chargé. Erreur inconnue", "Contacts" => "Contacts", -"Drop a VCF file to import contacts." => "Glisser un fichier VCF pour importer des contacts.", +"Sorry, this functionality has not been implemented yet" => "Désolé cette fonctionnalité n'a pas encore été implementée", +"Not implemented" => "Pas encore implémenté", +"Couldn't get a valid address." => "Impossible de trouver une adresse valide.", +"Error" => "Erreur", +"Contact" => "Contact", +"New" => "Nouveau", +"New Contact" => "Nouveau Contact", +"This property has to be non-empty." => "Cette valeur ne doit pas être vide", +"Couldn't serialize elements." => "Impossible de sérialiser les éléments", +"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' a été appelé sans type d'arguments. Merci de rapporter un bug à bugs.owncloud.org", +"Edit name" => "Éditer le nom", +"No files selected for upload." => "Aucun fichiers choisis pour être chargés", +"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Le fichier que vous tenter de charger dépasse la taille maximum de fichier autorisé sur ce serveur.", +"Select type" => "Sélectionner un type", +"Result: " => "Résultat :", +" imported, " => "importé,", +" failed." => "échoué.", "Addressbook not found." => "Carnet d'adresses introuvable.", "This is not your addressbook." => "Ce n'est pas votre carnet d'adresses.", "Contact could not be found." => "Ce contact n'a pu être trouvé.", @@ -60,25 +83,54 @@ "Video" => "Vidéo", "Pager" => "Bipeur", "Internet" => "Internet", +"Birthday" => "Anniversaire", +"Business" => "Business", +"Call" => "Appel", +"Clients" => "Clients", +"Deliverer" => "Livreur", +"Holidays" => "Vacances", +"Ideas" => "Idées", +"Journey" => "Trajet", +"Jubilee" => "Jubilé", +"Meeting" => "Rendez-vous", +"Other" => "Autre", +"Personal" => "Personnel", +"Projects" => "Projets", +"Questions" => "Questions", "{name}'s Birthday" => "Anniversaire de {name}", -"Contact" => "Contact", "Add Contact" => "Ajouter un Contact", +"Import" => "Importer", "Addressbooks" => "Carnets d'adresses", +"Close" => "Fermer", +"Keyboard shortcuts" => "Raccourcis clavier", +"Navigation" => "Navigation", +"Next contact in list" => "Contact suivant dans la liste", +"Previous contact in list" => "Contact précédent dans la liste", +"Expand/collapse current addressbook" => "Dé/Replier le carnet d'adresses courant", +"Next/previous addressbook" => "Passer au carnet d'adresses suivant/précédent", +"Actions" => "Actions", +"Refresh contacts list" => "Actualiser la liste des contacts", +"Add new contact" => "Ajouter un nouveau contact", +"Add new addressbook" => "Ajouter un nouveau carnet d'adresses", +"Delete current contact" => "Effacer le contact sélectionné", "Configure Address Books" => "Paramétrer carnet d'adresses", "New Address Book" => "Nouveau Carnet d'adresses", -"Import from VCF" => "Importer depuis VCF", "CardDav Link" => "Lien CardDav", "Download" => "Télécharger", "Edit" => "Modifier", "Delete" => "Supprimer", -"Download contact" => "Télécharger le contact", -"Delete contact" => "Supprimer le contact", "Drop photo to upload" => "Glisser une photo pour l'envoi", +"Delete current photo" => "Supprimer la photo actuelle", +"Edit current photo" => "Editer la photo actuelle", +"Upload new photo" => "Envoyer une nouvelle photo", +"Select photo from ownCloud" => "Sélectionner une photo depuis ownCloud", "Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formatage personnalisé, Nom court, Nom complet, Inversé, Inversé avec virgule", "Edit name details" => "Editer les noms", "Nickname" => "Surnom", "Enter nickname" => "Entrer un surnom", -"Birthday" => "Anniversaire", +"Web site" => "Page web", +"http://www.somesite.com" => "http://www.somesite.com", +"Go to web site" => "Allez à la page web", "dd-mm-yyyy" => "jj-mm-aaaa", "Groups" => "Groupes", "Separate groups with commas" => "Séparer les groupes avec des virgules", @@ -86,6 +138,7 @@ "Preferred" => "Préféré", "Please specify a valid email address." => "Merci d'entrer une adresse e-mail valide.", "Enter email address" => "Entrer une adresse e-mail", +"Mail to address" => "Envoyer à l'adresse", "Delete email address" => "Supprimer l'adresse e-mail", "Enter phone number" => "Entrer un numéro de téléphone", "Delete phone number" => "Supprimer le numéro de téléphone", @@ -93,24 +146,24 @@ "Edit address details" => "Editer les adresses", "Add notes here." => "Ajouter des notes ici.", "Add field" => "Ajouter un champ.", -"Profile picture" => "Photo de profil", "Phone" => "Téléphone", "Note" => "Note", -"Delete current photo" => "Supprimer la photo actuelle", -"Edit current photo" => "Editer la photo actuelle", -"Upload new photo" => "Envoyer une nouvelle photo", -"Select photo from ownCloud" => "Sélectionner une photo depuis ownCloud", +"Download contact" => "Télécharger le contact", +"Delete contact" => "Supprimer le contact", +"The temporary image has been removed from cache." => "L'image temporaire a été supprimée du cache.", "Edit address" => "Editer l'adresse", "Type" => "Type", "PO Box" => "Boîte postale", +"Street address" => "Adresse postale", +"Street and number" => "Rue et numéro", "Extended" => "Étendu", -"Street" => "Rue", +"Apartment number etc." => "Numéro d'appartement, etc.", "City" => "Ville", "Region" => "Région", +"E.g. state or province" => "Ex: état ou province", "Zipcode" => "Code postal", +"Postal code" => "Code postal", "Country" => "Pays", -"Edit categories" => "Editer les catégories", -"Add" => "Ajouter", "Addressbook" => "Carnet d'adresses", "Hon. prefixes" => "Préfixe hon.", "Miss" => "Mlle", @@ -123,7 +176,14 @@ "Additional names" => "Nom supplémentaires", "Family name" => "Nom de famille", "Hon. suffixes" => "Suffixes hon.", +"J.D." => "J.D.", +"M.D." => "Dr.", +"D.O." => "D.O.", +"D.C." => "D.C.", "Ph.D." => "Dr", +"Esq." => "Esq.", +"Jr." => "Jr.", +"Sn." => "Sn.", "New Addressbook" => "Nouveau carnet d'adresses", "Edit Addressbook" => "Éditer le carnet d'adresses", "Displayname" => "Nom", @@ -135,15 +195,16 @@ "Please choose the addressbook" => "Choisissez le carnet d'adresses SVP", "create a new addressbook" => "Créer un nouveau carnet d'adresses", "Name of new addressbook" => "Nom du nouveau carnet d'adresses", -"Import" => "Importer", "Importing contacts" => "Importation des contacts", -"Select address book to import to:" => "Selectionner le carnet d'adresses à importer vers:", -"Select from HD" => "Selectionner depuis le disque dur", "You have no contacts in your addressbook." => "Il n'y a pas de contact dans votre carnet d'adresses.", "Add contact" => "Ajouter un contact", "Configure addressbooks" => "Paramétrer carnet d'adresses", +"Select Address Books" => "Choix du carnet d'adresses", +"Enter name" => "Saisissez le nom", +"Enter description" => "Saisissez une description", "CardDAV syncing addresses" => "Synchronisation des contacts CardDAV", "more info" => "Plus d'infos", "Primary address (Kontact et al)" => "Adresse principale", -"iOS/OS X" => "iOS/OS X" +"iOS/OS X" => "iOS/OS X", +"Read only vCard directory link(s)" => "Lien(s) vers le répertoire de vCards en lecture seule" ); diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index baa6b3b7d4..bce5579010 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -7,8 +7,21 @@ "Missing a temporary folder" => "S'ha perdut un fitxer temporal", "Failed to write to disk" => "Ha fallat en escriure al disc", "Files" => "Fitxers", +"Unshare" => "Deixa de compartir", +"Delete" => "Suprimeix", +"undo deletion" => "desfés l'eliminació", +"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", +"Upload Error" => "Error en la pujada", +"Pending" => "Pendents", +"Upload cancelled." => "La pujada s'ha cancel·lat.", +"Invalid name, '/' is not allowed." => "El nom no és vàlid, no es permet '/'.", "Size" => "Mida", "Modified" => "Modificat", +"folder" => "carpeta", +"folders" => "carpetes", +"file" => "fitxer", +"files" => "fitxers", "File handling" => "Gestió de fitxers", "Maximum upload size" => "Mida màxima de pujada", "max. possible: " => "màxim possible:", @@ -26,7 +39,6 @@ "Name" => "Nom", "Share" => "Comparteix", "Download" => "Baixa", -"Delete" => "Suprimeix", "Upload too large" => "La pujada és massa gran", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor", "Files are being scanned, please wait." => "S'estan escanejant els fitxers, espereu", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 93be024615..042643a6e0 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -7,8 +7,21 @@ "Missing a temporary folder" => "Λείπει ένας προσωρινός φάκελος", "Failed to write to disk" => "Η εγγραφή στο δίσκο απέτυχε", "Files" => "Αρχεία", +"Unshare" => "Ακύρωση Διαμοιρασμού", +"Delete" => "Διαγραφή", +"undo deletion" => "αναίρεση διαγραφής", +"generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", +"Upload Error" => "Σφάλμα Μεταφόρτωσης", +"Pending" => "Εν αναμονή", +"Upload cancelled." => "Η μεταφόρτωση ακυρώθηκε.", +"Invalid name, '/' is not allowed." => "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται.", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", +"folder" => "φάκελος", +"folders" => "φάκελοι", +"file" => "αρχείο", +"files" => "αρχεία", "File handling" => "Διαχείριση αρχείων", "Maximum upload size" => "Μέγιστο μέγεθος μεταφόρτωσης", "max. possible: " => "μέγιστο δυνατό:", @@ -26,7 +39,6 @@ "Name" => "Όνομα", "Share" => "Διαμοίρασε", "Download" => "Λήψη", -"Delete" => "Διαγραφή", "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." => "Τα αρχεία ανιχνεύονται, παρακαλώ περιμένετε", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index c99d4408f6..8b51d15a91 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -7,8 +7,21 @@ "Missing a temporary folder" => "Väliaikaiskansiota ei ole olemassa", "Failed to write to disk" => "Levylle kirjoitus epäonnistui", "Files" => "Tiedostot", +"Unshare" => "Lopeta jakaminen", +"Delete" => "Poista", +"undo deletion" => "kumoa poisto", +"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", +"Upload Error" => "Lähetysvirhe.", +"Pending" => "Odottaa", +"Upload cancelled." => "Lähetys peruttu.", +"Invalid name, '/' is not allowed." => "Virheellinen nimi, merkki '/' ei ole sallittu.", "Size" => "Koko", "Modified" => "Muutettu", +"folder" => "kansio", +"folders" => "kansiota", +"file" => "tiedosto", +"files" => "tiedostoa", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", "Needed for multi-file and folder downloads." => "Tarvitaan useampien tiedostojen ja kansioiden latausta varten.", @@ -25,7 +38,6 @@ "Name" => "Nimi", "Share" => "Jaa", "Download" => "Lataa", -"Delete" => "Poista", "Upload too large" => "Lähetettävä tiedosto on liian suuri", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.", "Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki." diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index ab2f4ea13d..6f5e1ec6b8 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -7,8 +7,21 @@ "Missing a temporary folder" => "Il manque un répertoire temporaire", "Failed to write to disk" => "Erreur d'écriture sur le disque", "Files" => "Fichiers", +"Unshare" => "Ne plus partager", +"Delete" => "Supprimer", +"undo deletion" => "Annuler la suppression", +"generating ZIP-file, it may take some time." => "Générer un fichier ZIP, 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.", +"Upload Error" => "Erreur de chargement", +"Pending" => "En cours", +"Upload cancelled." => "Chargement annulé", +"Invalid name, '/' is not allowed." => "Nom invalide, '/' n'est pas autorisé.", "Size" => "Taille", "Modified" => "Modifié", +"folder" => "dossier", +"folders" => "dossiers", +"file" => "fichier", +"files" => "fichiers", "File handling" => "Gestion des fichiers", "Maximum upload size" => "Taille max. d'envoi", "max. possible: " => "Max. possible :", @@ -26,7 +39,6 @@ "Name" => "Nom", "Share" => "Partager", "Download" => "Téléchargement", -"Delete" => "Supprimer", "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 analysés, patientez svp.", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php new file mode 100644 index 0000000000..3fa3246d7c --- /dev/null +++ b/apps/files/l10n/lv.php @@ -0,0 +1,21 @@ + "Faili", +"Unshare" => "Pārtraukt līdzdalīšanu", +"Delete" => "Izdzēst", +"Upload Error" => "Augšuplādēšanas laikā radās kļūda", +"Pending" => "Gaida savu kārtu", +"Upload cancelled." => "Augšuplāde ir atcelta", +"Invalid name, '/' is not allowed." => "Šis simbols '/', nav atļauts.", +"Size" => "Izmērs", +"Modified" => "Izmainīts", +"folder" => "mape", +"folders" => "mapes", +"file" => "fails", +"files" => "faili", +"Maximum upload size" => "Maksimālais failu augšuplādes apjoms", +"Upload" => "Augšuplādet", +"Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšuplādēt", +"Name" => "Nosaukums", +"Download" => "Lejuplādēt", +"Upload too large" => "Fails ir par lielu lai to augšuplādetu" +); diff --git a/apps/gallery/l10n/ca.php b/apps/gallery/l10n/ca.php index 165414fba2..1c5848cee2 100644 --- a/apps/gallery/l10n/ca.php +++ b/apps/gallery/l10n/ca.php @@ -1,9 +1,9 @@ "Fotos", -"Settings" => "Arranjament", -"Rescan" => "Escaneja de nou", -"Stop" => "Atura", -"Share" => "Comparteix", +"Share gallery" => "Comperteix la galeria", +"Error: " => "Error: ", +"Internal error" => "Error intern", +"Slideshow" => "Passi de diapositives", "Back" => "Enrera", "Remove confirmation" => "Elimina la confirmació", "Do you want to remove album" => "Voleu eliminar l'àlbum", diff --git a/apps/gallery/l10n/el.php b/apps/gallery/l10n/el.php index 3983011a0c..47bc3af2bb 100644 --- a/apps/gallery/l10n/el.php +++ b/apps/gallery/l10n/el.php @@ -1,9 +1,9 @@ "Εικόνες", -"Settings" => "Ρυθμίσεις", -"Rescan" => "Επανασάρωση", -"Stop" => "Διακοπή", -"Share" => "Κοινοποίηση", +"Share gallery" => "Κοινοποίηση συλλογής", +"Error: " => "Σφάλμα: ", +"Internal error" => "Εσωτερικό σφάλμα", +"Slideshow" => "Προβολή Διαφανειών", "Back" => "Επιστροφή", "Remove confirmation" => "Αφαίρεση επιβεβαίωσης", "Do you want to remove album" => "Θέλετε να αφαιρέσετε το άλμπουμ", diff --git a/apps/gallery/l10n/fi_FI.php b/apps/gallery/l10n/fi_FI.php index 267bb5e547..659289ae41 100644 --- a/apps/gallery/l10n/fi_FI.php +++ b/apps/gallery/l10n/fi_FI.php @@ -1,9 +1,9 @@ "Kuvat", -"Settings" => "Asetukset", -"Rescan" => "Etsi uusia", -"Stop" => "Pysäytä", -"Share" => "Jaa", +"Share gallery" => "Jaa galleria", +"Error: " => "Virhe: ", +"Internal error" => "Sisäinen virhe", +"Slideshow" => "Diaesitys", "Back" => "Takaisin", "Remove confirmation" => "Poiston vahvistus", "Do you want to remove album" => "Tahdotko poistaa albumin", diff --git a/apps/gallery/l10n/fr.php b/apps/gallery/l10n/fr.php index dfd668ebe8..04421236e1 100644 --- a/apps/gallery/l10n/fr.php +++ b/apps/gallery/l10n/fr.php @@ -1,9 +1,9 @@ "Images", -"Settings" => "Préférences", -"Rescan" => "Analyser à nouveau", -"Stop" => "Arrêter", -"Share" => "Partager", +"Share gallery" => "Partager la galerie", +"Error: " => "Erreur :", +"Internal error" => "Erreur interne", +"Slideshow" => "Diaporama", "Back" => "Retour", "Remove confirmation" => "Enlever la confirmation", "Do you want to remove album" => "Voulez-vous supprimer l'album", diff --git a/core/l10n/lv.php b/core/l10n/lv.php new file mode 100644 index 0000000000..1a363a4aed --- /dev/null +++ b/core/l10n/lv.php @@ -0,0 +1,35 @@ + "Izmantojiet šo linku lai mainītu paroli", +"You will receive a link to reset your password via Email." => "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli.", +"Requested" => "Obligāts", +"Login failed!" => "Neizdevās ielogoties.", +"Username" => "Lietotājvārds", +"Request reset" => "Pieprasīt paroles maiņu", +"Your password was reset" => "Jūsu parole tika nomainīta", +"To login page" => "Uz ielogošanās lapu", +"New password" => "Jauna parole", +"Reset password" => "Mainīt paroli", +"Personal" => "Personīgi", +"Users" => "Lietotāji", +"Apps" => "Aplikācijas", +"Admin" => "Administrators", +"Help" => "Palīdzība", +"Cloud not found" => "Mākonis netika atrasts", +"Password" => "Parole", +"Data folder" => "Datu mape", +"Configure the database" => "Nokonfigurēt datubāzi", +"will be used" => "tiks izmantots", +"Database user" => "Datubāzes lietotājs", +"Database password" => "Datubāzes parole", +"Database name" => "Datubāzes nosaukums", +"Database host" => "Datubāzes mājvieta", +"Finish setup" => "Pabeigt uzstādījumus", +"Log out" => "Izlogoties", +"Settings" => "Iestatījumi", +"Lost your password?" => "Aizmirsāt paroli?", +"remember" => "atcerēties", +"Log in" => "Ielogoties", +"You are logged out." => "Jūs esat veiksmīgi izlogojies.", +"prev" => "iepriekšējā", +"next" => "nākamā" +); diff --git a/l10n/af/settings.po b/l10n/af/settings.po index c861f1ae1c..59aa93b425 100644 --- a/l10n/af/settings.po +++ b/l10n/af/settings.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Afrikaans (http://www.transifex.net/projects/p/owncloud/language/af/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -25,15 +25,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "" @@ -49,35 +53,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "" @@ -169,34 +177,42 @@ msgstr "" msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 60fc1db8e1..cb1df6d275 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Arabic (http://www.transifex.net/projects/p/owncloud/language/ar/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -27,15 +27,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "تم تغيير ال OpenID" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "طلبك غير مفهوم" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "تم تغيير اللغة" @@ -51,35 +55,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "إختر تطبيقاً" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-مسجل" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "من قبل" @@ -171,34 +179,42 @@ msgstr "ساعد في الترجمه" msgid "use this address to connect to your ownCloud in your file manager" msgstr "إستخدم هذا العنوان للإتصال ب ownCloud داخل نظام الملفات " -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "الاسم" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "كلمات السر" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "مجموعات" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "انشئ" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "حصه" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "حذف" diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po index d4a0b64800..f6e11e306c 100644 --- a/l10n/ar_SA/settings.po +++ b/l10n/ar_SA/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-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" "Last-Translator: owncloud_robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -33,6 +33,10 @@ msgstr "" msgid "Invalid request" msgstr "" +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "" @@ -49,7 +53,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:41 personal.php:42 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "" @@ -173,34 +177,42 @@ msgstr "" msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:15 templates/users.php:60 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "" -#: templates/users.php:17 templates/users.php:61 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "" -#: templates/users.php:19 templates/users.php:62 templates/users.php:78 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "" -#: templates/users.php:25 +#: templates/users.php:32 msgid "Create" msgstr "" -#: templates/users.php:28 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:47 templates/users.php:103 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:63 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "" -#: templates/users.php:110 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index b997c96de7..4b57953ba0 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/language/bg_BG/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \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" "Content-Transfer-Encoding: 8bit\n" @@ -27,15 +27,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID е сменено" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Невалидна заявка" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Езика е сменен" @@ -51,35 +55,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Изберете програма" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-лицензирано" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "от" @@ -171,34 +179,42 @@ msgstr "" msgid "use this address to connect to your ownCloud in your file manager" msgstr "ползвай този адрес за връзка с Вашия ownCloud във файловия мениджър" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Име" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Парола" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Групи" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Ново" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Изтриване" diff --git a/l10n/ca/calendar.po b/l10n/ca/calendar.po index f4527ce92e..a8a5c77878 100644 --- a/l10n/ca/calendar.po +++ b/l10n/ca/calendar.po @@ -9,21 +9,29 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/language/ca/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 10:41+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" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/categories/rescan.php:28 +#: ajax/cache/status.php:19 +msgid "Not all calendars are completely cached" +msgstr "No tots els calendaris estan en memòria" + +#: ajax/cache/status.php:21 +msgid "Everything seems to be completely cached" +msgstr "Sembla que tot està en memòria" + +#: ajax/categories/rescan.php:29 msgid "No calendars found." msgstr "No s'han trobat calendaris." -#: ajax/categories/rescan.php:36 +#: ajax/categories/rescan.php:37 msgid "No events found." msgstr "No s'han trobat events." @@ -31,300 +39,395 @@ msgstr "No s'han trobat events." msgid "Wrong calendar" msgstr "Calendari erroni" +#: ajax/import/dropimport.php:29 ajax/import/import.php:64 +msgid "" +"The file contained either no events or all events are already saved in your " +"calendar." +msgstr "El fitxer no contenia esdeveniments o aquests ja estaven desats en el vostre caledari" + +#: ajax/import/dropimport.php:31 ajax/import/import.php:67 +msgid "events has been saved in the new calendar" +msgstr "els esdeveniments s'han desat en el calendari nou" + +#: ajax/import/import.php:56 +msgid "Import failed" +msgstr "Ha fallat la importació" + +#: ajax/import/import.php:69 +msgid "events has been saved in your calendar" +msgstr "els esdveniments s'han desat en el calendari" + #: ajax/settings/guesstimezone.php:25 msgid "New Timezone:" msgstr "Nova zona horària:" -#: ajax/settings/settimezone.php:22 +#: ajax/settings/settimezone.php:23 msgid "Timezone changed" msgstr "La zona horària ha canviat" -#: ajax/settings/settimezone.php:24 +#: ajax/settings/settimezone.php:25 msgid "Invalid request" msgstr "Sol.licitud no vàlida" -#: appinfo/app.php:19 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:31 +#: appinfo/app.php:35 templates/calendar.php:15 +#: templates/part.eventform.php:33 templates/part.showevent.php:33 #: templates/settings.php:12 msgid "Calendar" msgstr "Calendari" -#: js/calendar.js:93 -msgid "Deletion failed" -msgstr "" - #: js/calendar.js:828 msgid "ddd" -msgstr "" +msgstr "ddd" #: js/calendar.js:829 msgid "ddd M/d" -msgstr "" +msgstr "ddd d/M" #: js/calendar.js:830 msgid "dddd M/d" -msgstr "" +msgstr "dddd d/M" #: js/calendar.js:833 msgid "MMMM yyyy" -msgstr "" +msgstr "MMMM yyyy" #: js/calendar.js:835 msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" +msgstr "d [MMM ][yyyy ]{'—' d MMM yyyy}" #: js/calendar.js:837 msgid "dddd, MMM d, yyyy" -msgstr "" +msgstr "dddd, d MMM, yyyy" -#: lib/app.php:125 +#: lib/app.php:121 msgid "Birthday" msgstr "Aniversari" -#: lib/app.php:126 +#: lib/app.php:122 msgid "Business" msgstr "Feina" -#: lib/app.php:127 +#: lib/app.php:123 msgid "Call" msgstr "Trucada" -#: lib/app.php:128 +#: lib/app.php:124 msgid "Clients" msgstr "Clients" -#: lib/app.php:129 +#: lib/app.php:125 msgid "Deliverer" msgstr "Remitent" -#: lib/app.php:130 +#: lib/app.php:126 msgid "Holidays" msgstr "Vacances" -#: lib/app.php:131 +#: lib/app.php:127 msgid "Ideas" msgstr "Idees" -#: lib/app.php:132 +#: lib/app.php:128 msgid "Journey" msgstr "Viatge" -#: lib/app.php:133 +#: lib/app.php:129 msgid "Jubilee" msgstr "Sant" -#: lib/app.php:134 +#: lib/app.php:130 msgid "Meeting" msgstr "Reunió" -#: lib/app.php:135 +#: lib/app.php:131 msgid "Other" msgstr "Altres" -#: lib/app.php:136 +#: lib/app.php:132 msgid "Personal" msgstr "Personal" -#: lib/app.php:137 +#: lib/app.php:133 msgid "Projects" msgstr "Projectes" -#: lib/app.php:138 +#: lib/app.php:134 msgid "Questions" msgstr "Preguntes" -#: lib/app.php:139 +#: lib/app.php:135 msgid "Work" msgstr "Feina" -#: lib/app.php:380 +#: lib/app.php:351 lib/app.php:361 +msgid "by" +msgstr "per" + +#: lib/app.php:359 lib/app.php:399 msgid "unnamed" msgstr "sense nom" -#: lib/object.php:330 +#: lib/import.php:184 templates/calendar.php:12 +#: templates/part.choosecalendar.php:22 +msgid "New Calendar" +msgstr "Calendari nou" + +#: lib/object.php:372 msgid "Does not repeat" msgstr "No es repeteix" -#: lib/object.php:331 +#: lib/object.php:373 msgid "Daily" msgstr "Diari" -#: lib/object.php:332 +#: lib/object.php:374 msgid "Weekly" msgstr "Mensual" -#: lib/object.php:333 +#: lib/object.php:375 msgid "Every Weekday" msgstr "Cada setmana" -#: lib/object.php:334 +#: lib/object.php:376 msgid "Bi-Weekly" msgstr "Bisetmanalment" -#: lib/object.php:335 +#: lib/object.php:377 msgid "Monthly" msgstr "Mensualment" -#: lib/object.php:336 +#: lib/object.php:378 msgid "Yearly" msgstr "Cada any" -#: lib/object.php:343 +#: lib/object.php:388 msgid "never" msgstr "mai" -#: lib/object.php:344 +#: lib/object.php:389 msgid "by occurrences" msgstr "per aparicions" -#: lib/object.php:345 +#: lib/object.php:390 msgid "by date" msgstr "per data" -#: lib/object.php:352 +#: lib/object.php:400 msgid "by monthday" msgstr "per dia del mes" -#: lib/object.php:353 +#: lib/object.php:401 msgid "by weekday" msgstr "per dia de la setmana" -#: lib/object.php:360 templates/settings.php:42 +#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 msgid "Monday" msgstr "Dilluns" -#: lib/object.php:361 +#: lib/object.php:412 templates/calendar.php:5 msgid "Tuesday" msgstr "Dimarts" -#: lib/object.php:362 +#: lib/object.php:413 templates/calendar.php:5 msgid "Wednesday" msgstr "Dimecres" -#: lib/object.php:363 +#: lib/object.php:414 templates/calendar.php:5 msgid "Thursday" msgstr "Dijous" -#: lib/object.php:364 +#: lib/object.php:415 templates/calendar.php:5 msgid "Friday" msgstr "Divendres" -#: lib/object.php:365 +#: lib/object.php:416 templates/calendar.php:5 msgid "Saturday" msgstr "Dissabte" -#: lib/object.php:366 templates/settings.php:43 +#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 msgid "Sunday" msgstr "Diumenge" -#: lib/object.php:373 +#: lib/object.php:427 msgid "events week of month" msgstr "esdeveniments la setmana del mes" -#: lib/object.php:374 +#: lib/object.php:428 msgid "first" msgstr "primer" -#: lib/object.php:375 +#: lib/object.php:429 msgid "second" msgstr "segon" -#: lib/object.php:376 +#: lib/object.php:430 msgid "third" msgstr "tercer" -#: lib/object.php:377 +#: lib/object.php:431 msgid "fourth" msgstr "quart" -#: lib/object.php:378 +#: lib/object.php:432 msgid "fifth" msgstr "cinquè" -#: lib/object.php:379 +#: lib/object.php:433 msgid "last" msgstr "últim" -#: lib/object.php:401 +#: lib/object.php:467 templates/calendar.php:7 msgid "January" msgstr "Gener" -#: lib/object.php:402 +#: lib/object.php:468 templates/calendar.php:7 msgid "February" msgstr "Febrer" -#: lib/object.php:403 +#: lib/object.php:469 templates/calendar.php:7 msgid "March" msgstr "Març" -#: lib/object.php:404 +#: lib/object.php:470 templates/calendar.php:7 msgid "April" msgstr "Abril" -#: lib/object.php:405 +#: lib/object.php:471 templates/calendar.php:7 msgid "May" msgstr "Maig" -#: lib/object.php:406 +#: lib/object.php:472 templates/calendar.php:7 msgid "June" msgstr "Juny" -#: lib/object.php:407 +#: lib/object.php:473 templates/calendar.php:7 msgid "July" msgstr "Juliol" -#: lib/object.php:408 +#: lib/object.php:474 templates/calendar.php:7 msgid "August" msgstr "Agost" -#: lib/object.php:409 +#: lib/object.php:475 templates/calendar.php:7 msgid "September" msgstr "Setembre" -#: lib/object.php:410 +#: lib/object.php:476 templates/calendar.php:7 msgid "October" msgstr "Octubre" -#: lib/object.php:411 +#: lib/object.php:477 templates/calendar.php:7 msgid "November" msgstr "Novembre" -#: lib/object.php:412 +#: lib/object.php:478 templates/calendar.php:7 msgid "December" msgstr "Desembre" -#: lib/object.php:418 +#: lib/object.php:488 msgid "by events date" msgstr "per data d'esdeveniments" -#: lib/object.php:419 +#: lib/object.php:489 msgid "by yearday(s)" msgstr "per ahir(s)" -#: lib/object.php:420 +#: lib/object.php:490 msgid "by weeknumber(s)" msgstr "per número(s) de la setmana" -#: lib/object.php:421 +#: lib/object.php:491 msgid "by day and month" msgstr "per dia del mes" -#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +#: lib/search.php:35 lib/search.php:37 lib/search.php:40 msgid "Date" msgstr "Data" -#: lib/search.php:40 +#: lib/search.php:43 msgid "Cal." msgstr "Cal." +#: templates/calendar.php:6 +msgid "Sun." +msgstr "Dg." + +#: templates/calendar.php:6 +msgid "Mon." +msgstr "Dl." + +#: templates/calendar.php:6 +msgid "Tue." +msgstr "Dm." + +#: templates/calendar.php:6 +msgid "Wed." +msgstr "Dc." + +#: templates/calendar.php:6 +msgid "Thu." +msgstr "Dj." + +#: templates/calendar.php:6 +msgid "Fri." +msgstr "Dv." + +#: templates/calendar.php:6 +msgid "Sat." +msgstr "Ds." + +#: templates/calendar.php:8 +msgid "Jan." +msgstr "Gen." + +#: templates/calendar.php:8 +msgid "Feb." +msgstr "Febr." + +#: templates/calendar.php:8 +msgid "Mar." +msgstr "Març" + +#: templates/calendar.php:8 +msgid "Apr." +msgstr "Abr." + +#: templates/calendar.php:8 +msgid "May." +msgstr "Maig" + +#: templates/calendar.php:8 +msgid "Jun." +msgstr "Juny" + +#: templates/calendar.php:8 +msgid "Jul." +msgstr "Jul." + +#: templates/calendar.php:8 +msgid "Aug." +msgstr "Ag." + +#: templates/calendar.php:8 +msgid "Sep." +msgstr "Set." + +#: templates/calendar.php:8 +msgid "Oct." +msgstr "Oct." + +#: templates/calendar.php:8 +msgid "Nov." +msgstr "Nov." + +#: templates/calendar.php:8 +msgid "Dec." +msgstr "Des." + #: templates/calendar.php:11 msgid "All day" msgstr "Tot el dia" -#: templates/calendar.php:12 templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Calendari nou" - #: templates/calendar.php:13 msgid "Missing fields" msgstr "Els camps que falten" @@ -358,27 +461,27 @@ msgstr "L'esdeveniment acaba abans que comenci" msgid "There was a database fail" msgstr "Hi ha un error de base de dades" -#: templates/calendar.php:40 +#: templates/calendar.php:38 msgid "Week" msgstr "Setmana" -#: templates/calendar.php:41 +#: templates/calendar.php:39 msgid "Month" msgstr "Mes" -#: templates/calendar.php:42 +#: templates/calendar.php:40 msgid "List" msgstr "Llista" -#: templates/calendar.php:48 +#: templates/calendar.php:44 msgid "Today" msgstr "Avui" -#: templates/calendar.php:49 +#: templates/calendar.php:45 msgid "Calendars" msgstr "Calendaris" -#: templates/calendar.php:67 +#: templates/calendar.php:59 msgid "There was a fail, while parsing the file." msgstr "S'ha produït un error en analitzar el fitxer." @@ -391,7 +494,7 @@ msgid "Your calendars" msgstr "Els vostres calendaris" #: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:5 +#: templates/part.choosecalendar.rowfields.php:11 msgid "CalDav Link" msgstr "Enllaç CalDav" @@ -403,19 +506,19 @@ msgstr "Calendaris compartits" msgid "No shared calendars" msgstr "No hi ha calendaris compartits" -#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.choosecalendar.rowfields.php:8 msgid "Share Calendar" msgstr "Comparteix el calendari" -#: templates/part.choosecalendar.rowfields.php:6 +#: templates/part.choosecalendar.rowfields.php:14 msgid "Download" msgstr "Baixa" -#: templates/part.choosecalendar.rowfields.php:7 +#: templates/part.choosecalendar.rowfields.php:17 msgid "Edit" msgstr "Edita" -#: templates/part.choosecalendar.rowfields.php:8 +#: templates/part.choosecalendar.rowfields.php:20 #: templates/part.editevent.php:9 msgid "Delete" msgstr "Suprimeix" @@ -501,23 +604,23 @@ msgstr "Separeu les categories amb comes" msgid "Edit categories" msgstr "Edita categories" -#: templates/part.eventform.php:56 templates/part.showevent.php:55 +#: templates/part.eventform.php:56 templates/part.showevent.php:52 msgid "All Day Event" msgstr "Esdeveniment de tot el dia" -#: templates/part.eventform.php:60 templates/part.showevent.php:59 +#: templates/part.eventform.php:60 templates/part.showevent.php:56 msgid "From" msgstr "Des de" -#: templates/part.eventform.php:68 templates/part.showevent.php:67 +#: templates/part.eventform.php:68 templates/part.showevent.php:64 msgid "To" msgstr "Fins a" -#: templates/part.eventform.php:76 templates/part.showevent.php:75 +#: templates/part.eventform.php:76 templates/part.showevent.php:72 msgid "Advanced options" msgstr "Opcions avançades" -#: templates/part.eventform.php:81 templates/part.showevent.php:80 +#: templates/part.eventform.php:81 templates/part.showevent.php:77 msgid "Location" msgstr "Ubicació" @@ -525,7 +628,7 @@ msgstr "Ubicació" msgid "Location of the Event" msgstr "Ubicació de l'esdeveniment" -#: templates/part.eventform.php:89 templates/part.showevent.php:88 +#: templates/part.eventform.php:89 templates/part.showevent.php:85 msgid "Description" msgstr "Descripció" @@ -533,84 +636,86 @@ msgstr "Descripció" msgid "Description of the Event" msgstr "Descripció de l'esdeveniment" -#: templates/part.eventform.php:100 templates/part.showevent.php:98 +#: templates/part.eventform.php:100 templates/part.showevent.php:95 msgid "Repeat" msgstr "Repetició" -#: templates/part.eventform.php:107 templates/part.showevent.php:105 +#: templates/part.eventform.php:107 templates/part.showevent.php:102 msgid "Advanced" msgstr "Avançat" -#: templates/part.eventform.php:151 templates/part.showevent.php:149 +#: templates/part.eventform.php:151 templates/part.showevent.php:146 msgid "Select weekdays" msgstr "Dies de la setmana seleccionats" #: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:162 templates/part.showevent.php:175 +#: templates/part.showevent.php:159 templates/part.showevent.php:172 msgid "Select days" msgstr "Seleccionar dies" -#: templates/part.eventform.php:169 templates/part.showevent.php:167 +#: templates/part.eventform.php:169 templates/part.showevent.php:164 msgid "and the events day of year." msgstr "i dies d'esdeveniment de l'any." -#: templates/part.eventform.php:182 templates/part.showevent.php:180 +#: templates/part.eventform.php:182 templates/part.showevent.php:177 msgid "and the events day of month." msgstr "i dies d'esdeveniment del mes." -#: templates/part.eventform.php:190 templates/part.showevent.php:188 +#: templates/part.eventform.php:190 templates/part.showevent.php:185 msgid "Select months" msgstr "Seleccionar mesos" -#: templates/part.eventform.php:203 templates/part.showevent.php:201 +#: templates/part.eventform.php:203 templates/part.showevent.php:198 msgid "Select weeks" msgstr "Seleccionar setmanes" -#: templates/part.eventform.php:208 templates/part.showevent.php:206 +#: templates/part.eventform.php:208 templates/part.showevent.php:203 msgid "and the events week of year." msgstr "i setmanes d'esdeveniment de l'any." -#: templates/part.eventform.php:214 templates/part.showevent.php:212 +#: templates/part.eventform.php:214 templates/part.showevent.php:209 msgid "Interval" msgstr "Interval" -#: templates/part.eventform.php:220 templates/part.showevent.php:218 +#: templates/part.eventform.php:220 templates/part.showevent.php:215 msgid "End" msgstr "Final" -#: templates/part.eventform.php:233 templates/part.showevent.php:231 +#: templates/part.eventform.php:233 templates/part.showevent.php:228 msgid "occurrences" msgstr "aparicions" -#: templates/part.import.php:1 -msgid "Import a calendar file" -msgstr "Importa un fitxer de calendari" - -#: templates/part.import.php:6 -msgid "Please choose the calendar" -msgstr "Escolliu el calendari" - -#: templates/part.import.php:10 +#: templates/part.import.php:14 msgid "create a new calendar" msgstr "crea un nou calendari" -#: templates/part.import.php:15 +#: templates/part.import.php:17 +msgid "Import a calendar file" +msgstr "Importa un fitxer de calendari" + +#: templates/part.import.php:24 +msgid "Please choose a calendar" +msgstr "Escolliu un calendari" + +#: templates/part.import.php:36 msgid "Name of new calendar" msgstr "Nom del nou calendari" -#: templates/part.import.php:17 +#: templates/part.import.php:44 +msgid "Take an available name!" +msgstr "Escolliu un nom disponible!" + +#: templates/part.import.php:45 +msgid "" +"A Calendar with this name already exists. If you continue anyhow, these " +"calendars will be merged." +msgstr "Ja hi ha un calendari amb aquest nom. Si continueu, els calendaris es combinaran." + +#: templates/part.import.php:47 msgid "Import" msgstr "Importa" -#: templates/part.import.php:20 -msgid "Importing calendar" -msgstr "S'està important el calendari" - -#: templates/part.import.php:23 -msgid "Calendar imported successfully" -msgstr "El calendari s'ha importat amb èxit" - -#: templates/part.import.php:24 +#: templates/part.import.php:56 msgid "Close Dialog" msgstr "Tanca el diàleg" @@ -626,15 +731,11 @@ msgstr "Mostra un event" msgid "No categories selected" msgstr "No hi ha categories seleccionades" -#: templates/part.showevent.php:25 -msgid "Select category" -msgstr "Seleccioneu categoria" - #: templates/part.showevent.php:37 msgid "of" msgstr "de" -#: templates/part.showevent.php:62 templates/part.showevent.php:70 +#: templates/part.showevent.php:59 templates/part.showevent.php:67 msgid "at" msgstr "a" @@ -662,9 +763,33 @@ msgstr "12h" msgid "First day of the week" msgstr "Primer dia de la setmana" -#: templates/settings.php:49 -msgid "Calendar CalDAV syncing address:" -msgstr "Adreça de sincronització del calendari CalDAV:" +#: templates/settings.php:47 +msgid "Cache" +msgstr "Memòria de cau" + +#: templates/settings.php:48 +msgid "Clear cache for repeating events" +msgstr "Neteja la memòria de cau pels esdveniments amb repetició" + +#: templates/settings.php:53 +msgid "Calendar CalDAV syncing addresses" +msgstr "Adreça de sincronització del calendari CalDAV" + +#: templates/settings.php:53 +msgid "more info" +msgstr "més informació" + +#: templates/settings.php:55 +msgid "Primary address (Kontact et al)" +msgstr "Adreça primària (Kontact et al)" + +#: templates/settings.php:57 +msgid "iOS/OS X" +msgstr "IOS/OS X" + +#: templates/settings.php:59 +msgid "Read only iCalendar link(s)" +msgstr "Enllaç(os) del calendari només de lectura" #: templates/share.dropdown.php:20 msgid "Users" diff --git a/l10n/ca/contacts.po b/l10n/ca/contacts.po index cc7086cd14..507042e9ce 100644 --- a/l10n/ca/contacts.po +++ b/l10n/ca/contacts.po @@ -9,101 +9,97 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/language/ca/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 10:52+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" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/activation.php:19 ajax/updateaddressbook.php:32 +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 msgid "Error (de)activating addressbook." msgstr "Error en (des)activar la llibreta d'adreces." -#: ajax/addcontact.php:59 +#: ajax/addcontact.php:47 msgid "There was an error adding the contact." msgstr "S'ha produït un error en afegir el contacte." -#: ajax/addproperty.php:40 +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "no s'ha establert el nom de l'element." + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "no s'ha establert la id." + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "No s'ha pogut processar el contacte:" + +#: ajax/addproperty.php:56 msgid "Cannot add empty property." msgstr "No es pot afegir una propietat buida." -#: ajax/addproperty.php:52 +#: ajax/addproperty.php:67 msgid "At least one of the address fields has to be filled out." msgstr "Almenys heu d'omplir un dels camps d'adreça." -#: ajax/addproperty.php:62 +#: ajax/addproperty.php:76 msgid "Trying to add duplicate property: " msgstr "Esteu intentant afegir una propietat duplicada:" -#: ajax/addproperty.php:120 -msgid "Error adding contact property." -msgstr "Error en afegir la propietat del contacte." +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "Error en afegir la propietat del contacte:" -#: ajax/categories/categoriesfor.php:15 +#: ajax/categories/categoriesfor.php:17 msgid "No ID provided" msgstr "No heu facilitat cap ID" -#: ajax/categories/categoriesfor.php:27 +#: ajax/categories/categoriesfor.php:34 msgid "Error setting checksum." msgstr "Error en establir la suma de verificació." -#: ajax/categories/delete.php:29 +#: ajax/categories/delete.php:19 msgid "No categories selected for deletion." msgstr "No heu seleccionat les categories a eliminar." -#: ajax/categories/delete.php:36 ajax/categories/rescan.php:28 +#: ajax/categories/delete.php:26 msgid "No address books found." msgstr "No s'han trobat llibretes d'adreces." -#: ajax/categories/delete.php:44 ajax/categories/rescan.php:36 +#: ajax/categories/delete.php:34 msgid "No contacts found." msgstr "No s'han trobat contactes." -#: ajax/contactdetails.php:37 +#: ajax/contactdetails.php:31 msgid "Missing ID" msgstr "Falta la ID" -#: ajax/contactdetails.php:41 +#: ajax/contactdetails.php:36 msgid "Error parsing VCard for ID: \"" msgstr "Error en analitzar la ID de la VCard: \"" -#: ajax/createaddressbook.php:18 -msgid "Cannot add addressbook with an empty name." -msgstr "No es pot afegir una llibreta d'adreces amb un nom buit." - -#: ajax/createaddressbook.php:24 -msgid "Error adding addressbook." -msgstr "Error en afegir la llibreta d'adreces." - -#: ajax/createaddressbook.php:30 -msgid "Error activating addressbook." -msgstr "Error en activar la llibreta d'adreces." - -#: ajax/currentphoto.php:34 ajax/oc_photo.php:37 ajax/uploadphoto.php:41 +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 #: ajax/uploadphoto.php:68 msgid "No contact ID was submitted." msgstr "No s'ha tramès cap ID de contacte." -#: ajax/currentphoto.php:40 +#: ajax/currentphoto.php:36 msgid "Error reading contact photo." msgstr "Error en llegir la foto del contacte." -#: ajax/currentphoto.php:52 +#: ajax/currentphoto.php:48 msgid "Error saving temporary file." msgstr "Error en desar el fitxer temporal." -#: ajax/currentphoto.php:55 +#: ajax/currentphoto.php:51 msgid "The loading photo is not valid." msgstr "La foto carregada no és vàlida." -#: ajax/deletecard.php:37 ajax/saveproperty.php:58 -msgid "id is not set." -msgstr "no s'ha establert la id." - #: ajax/deleteproperty.php:36 msgid "Information about vCard is incorrect. Please reload the page." msgstr "La informació de la vCard és incorrecta. Carregueu la pàgina de nou." @@ -112,328 +108,387 @@ msgstr "La informació de la vCard és incorrecta. Carregueu la pàgina de nou." msgid "Error deleting contact property." msgstr "Error en eliminar la propietat del contacte." -#: ajax/editname.php:37 +#: ajax/editname.php:31 msgid "Contact ID is missing." msgstr "falta la ID del contacte." -#: ajax/loadphoto.php:44 -msgid "Missing contact id." -msgstr "Falta la id del contacte." - -#: ajax/oc_photo.php:41 +#: ajax/oc_photo.php:32 msgid "No photo path was submitted." msgstr "No heu tramès el camí de la foto." -#: ajax/oc_photo.php:48 +#: ajax/oc_photo.php:39 msgid "File doesn't exist:" msgstr "El fitxer no existeix:" -#: ajax/oc_photo.php:54 ajax/oc_photo.php:57 +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 msgid "Error loading image." msgstr "Error en carregar la imatge." -#: ajax/savecrop.php:68 +#: ajax/savecrop.php:67 msgid "Error getting contact object." -msgstr "" +msgstr "Error en obtenir l'objecte contacte." -#: ajax/savecrop.php:75 +#: ajax/savecrop.php:76 msgid "Error getting PHOTO property." -msgstr "" +msgstr "Error en obtenir la propietat PHOTO." -#: ajax/savecrop.php:88 +#: ajax/savecrop.php:93 msgid "Error saving contact." -msgstr "" +msgstr "Error en desar el contacte." -#: ajax/savecrop.php:98 +#: ajax/savecrop.php:103 msgid "Error resizing image" -msgstr "" +msgstr "Error en modificar la mida de la imatge" -#: ajax/savecrop.php:101 +#: ajax/savecrop.php:106 msgid "Error cropping image" -msgstr "" +msgstr "Error en retallar la imatge" -#: ajax/savecrop.php:104 +#: ajax/savecrop.php:109 msgid "Error creating temporary image" -msgstr "" +msgstr "Error en crear la imatge temporal" -#: ajax/savecrop.php:107 +#: ajax/savecrop.php:112 msgid "Error finding image: " -msgstr "" +msgstr "Error en trobar la imatge:" -#: ajax/saveproperty.php:55 -msgid "element name is not set." -msgstr "no s'ha establert el nom de l'element." - -#: ajax/saveproperty.php:61 +#: ajax/saveproperty.php:40 msgid "checksum is not set." msgstr "no s'ha establert la suma de verificació." -#: ajax/saveproperty.php:78 +#: ajax/saveproperty.php:59 msgid "Information about vCard is incorrect. Please reload the page: " msgstr "La informació de la vCard és incorrecta. Carregueu de nou la pàgina:" -#: ajax/saveproperty.php:83 +#: ajax/saveproperty.php:64 msgid "Something went FUBAR. " msgstr "Alguna cosa ha anat FUBAR." -#: ajax/saveproperty.php:150 +#: ajax/saveproperty.php:133 msgid "Error updating contact property." msgstr "Error en actualitzar la propietat del contacte." -#: ajax/updateaddressbook.php:20 +#: ajax/updateaddressbook.php:21 msgid "Cannot update addressbook with an empty name." msgstr "No es pot actualitzar la llibreta d'adreces amb un nom buit" -#: ajax/updateaddressbook.php:26 +#: ajax/updateaddressbook.php:25 msgid "Error updating addressbook." msgstr "Error en actualitzar la llibreta d'adreces." -#: ajax/uploadimport.php:46 ajax/uploadimport.php:76 +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 msgid "Error uploading contacts to storage." msgstr "Error en carregar contactes a l'emmagatzemament." -#: ajax/uploadimport.php:59 ajax/uploadphoto.php:77 +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 msgid "There is no error, the file uploaded with success" msgstr "No hi ha errors, el fitxer s'ha carregat correctament" -#: ajax/uploadimport.php:60 ajax/uploadphoto.php:78 +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "El fitxer carregat supera la directiva upload_max_filesize de php.ini" -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:79 +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:80 +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha carregat parcialment" -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:81 +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 msgid "No file was uploaded" msgstr "No s'ha carregat cap fitxer" -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:82 +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 msgid "Missing a temporary folder" msgstr "Falta un fitxer temporal" -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:102 +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 msgid "Couldn't save temporary image: " -msgstr "" +msgstr "No s'ha pogut desar la imatge temporal: " -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:105 +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 msgid "Couldn't load temporary image: " -msgstr "" +msgstr "No s'ha pogut carregar la imatge temporal: " #: ajax/uploadphoto.php:71 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: appinfo/app.php:17 templates/settings.php:3 +#: appinfo/app.php:19 templates/settings.php:3 msgid "Contacts" msgstr "Contactes" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Sorry, this functionality has not been implemented yet" -msgstr "" +msgstr "Aquesta funcionalitat encara no està implementada" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Not implemented" -msgstr "" +msgstr "No implementada" -#: js/contacts.js:29 +#: js/contacts.js:58 msgid "Couldn't get a valid address." -msgstr "" +msgstr "No s'ha pogut obtenir una adreça vàlida." -#: js/contacts.js:29 js/contacts.js:334 js/contacts.js:341 js/contacts.js:355 -#: js/contacts.js:393 js/contacts.js:399 js/contacts.js:565 js/contacts.js:605 -#: js/contacts.js:631 js/contacts.js:668 js/contacts.js:747 js/contacts.js:753 -#: js/contacts.js:765 js/contacts.js:799 js/contacts.js:1056 -#: js/contacts.js:1064 js/contacts.js:1073 js/contacts.js:1130 -#: js/contacts.js:1146 js/contacts.js:1161 js/contacts.js:1173 -#: js/contacts.js:1196 js/contacts.js:1449 js/contacts.js:1457 -#: js/contacts.js:1483 js/contacts.js:1494 js/contacts.js:1509 -#: js/contacts.js:1526 js/contacts.js:1596 js/contacts.js:1644 -#: js/contacts.js:1654 js/contacts.js:1657 +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 msgid "Error" -msgstr "" +msgstr "Error" -#: js/contacts.js:364 -msgid "Are you sure you want to delete this contact?" -msgstr "" - -#: js/contacts.js:364 -msgid "Warning" -msgstr "" - -#: js/contacts.js:605 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:631 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:747 js/contacts.js:765 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:781 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1056 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1064 js/contacts.js:1449 js/contacts.js:1634 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1119 -msgid "Select photo" -msgstr "" - -#: js/contacts.js:1257 js/contacts.js:1290 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1305 templates/part.importaddressbook.php:25 -msgid "Drop a VCF file to import contacts." -msgstr "Elimina un fitxer VCF per importar contactes." - -#: js/contacts.js:1475 -msgid "Import done. Success/Failure: " -msgstr "" - -#: js/contacts.js:1476 -msgid "OK" -msgstr "" - -#: js/contacts.js:1494 -msgid "Displayname cannot be empty." -msgstr "" - -#: js/contacts.js:1634 -msgid "Upload too large" -msgstr "" - -#: js/contacts.js:1638 -msgid "Only image files can be used as profile picture." -msgstr "" - -#: js/contacts.js:1638 -msgid "Wrong file type" -msgstr "" - -#: js/contacts.js:1644 -msgid "" -"Your browser doesn't support AJAX upload. Please click on the profile " -"picture to select a photo to upload." -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: lib/app.php:30 -msgid "Addressbook not found." -msgstr "No s'ha trobat la llibreta d'adreces." - -#: lib/app.php:34 -msgid "This is not your addressbook." -msgstr "Aquesta no és la vostra llibreta d'adreces" - -#: lib/app.php:45 -msgid "Contact could not be found." -msgstr "No s'ha trobat el contacte." - -#: lib/app.php:101 templates/part.contact.php:109 -msgid "Address" -msgstr "Adreça" - -#: lib/app.php:102 -msgid "Telephone" -msgstr "Telèfon" - -#: lib/app.php:103 templates/part.contact.php:108 -msgid "Email" -msgstr "Correu electrònic" - -#: lib/app.php:104 templates/part.contact.php:33 templates/part.contact.php:34 -#: templates/part.contact.php:104 -msgid "Organization" -msgstr "Organització" - -#: lib/app.php:116 lib/app.php:123 lib/app.php:133 -msgid "Work" -msgstr "Feina" - -#: lib/app.php:117 lib/app.php:121 lib/app.php:134 -msgid "Home" -msgstr "Casa" - -#: lib/app.php:122 -msgid "Mobile" -msgstr "Mòbil" - -#: lib/app.php:124 -msgid "Text" -msgstr "Text" - -#: lib/app.php:125 -msgid "Voice" -msgstr "Veu" - -#: lib/app.php:126 -msgid "Message" -msgstr "Missatge" - -#: lib/app.php:127 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:128 -msgid "Video" -msgstr "Vídeo" - -#: lib/app.php:129 -msgid "Pager" -msgstr "Paginador" - -#: lib/app.php:135 -msgid "Internet" -msgstr "Internet" - -#: lib/hooks.php:79 -msgid "{name}'s Birthday" -msgstr "Aniversari de {name}" - -#: lib/search.php:22 +#: js/contacts.js:389 lib/search.php:15 msgid "Contact" msgstr "Contacte" -#: templates/index.php:13 +#: js/contacts.js:389 +msgid "New" +msgstr "Nou" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "Contate nou" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "Aquesta propietat no pot ser buida." + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "No s'han pogut serialitzar els elements." + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "'deleteProperty' s'ha cridat sense argument de tipus. Informeu-ne a bugs.owncloud.org" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "Edita el nom" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "No s'han seleccionat fitxers per a la pujada." + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "El fitxer que intenteu pujar excedeix la mida màxima de pujada en aquest servidor." + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "Seleccioneu un tipus" + +#: js/loader.js:49 +msgid "Result: " +msgstr "Resultat: " + +#: js/loader.js:49 +msgid " imported, " +msgstr " importat, " + +#: js/loader.js:49 +msgid " failed." +msgstr " fallada." + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "No s'ha trobat la llibreta d'adreces." + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "Aquesta no és la vostra llibreta d'adreces" + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "No s'ha trobat el contacte." + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "Adreça" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "Telèfon" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "Correu electrònic" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "Organització" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "Feina" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "Casa" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "Mòbil" + +#: lib/app.php:123 +msgid "Text" +msgstr "Text" + +#: lib/app.php:124 +msgid "Voice" +msgstr "Veu" + +#: lib/app.php:125 +msgid "Message" +msgstr "Missatge" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Vídeo" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Paginador" + +#: lib/app.php:134 +msgid "Internet" +msgstr "Internet" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "Aniversari" + +#: lib/app.php:170 +msgid "Business" +msgstr "Negocis" + +#: lib/app.php:171 +msgid "Call" +msgstr "Trucada" + +#: lib/app.php:172 +msgid "Clients" +msgstr "Clients" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "Emissari" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "Vacances" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "Idees" + +#: lib/app.php:176 +msgid "Journey" +msgstr "Viatge" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "Aniversari" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "Reunió" + +#: lib/app.php:179 +msgid "Other" +msgstr "Altres" + +#: lib/app.php:180 +msgid "Personal" +msgstr "Personal" + +#: lib/app.php:181 +msgid "Projects" +msgstr "Projectes" + +#: lib/app.php:182 +msgid "Questions" +msgstr "Preguntes" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "Aniversari de {name}" + +#: templates/index.php:15 msgid "Add Contact" msgstr "Afegeix un contacte" -#: templates/index.php:14 +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "Importa" + +#: templates/index.php:20 msgid "Addressbooks" msgstr "Llibretes d'adreces" +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "Tanca" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "Dreceres de teclat" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "Navegació" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "Següent contacte de la llista" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "Contacte anterior de la llista" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "Expandeix/col·lapsa la llibreta d'adreces" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "Següent/anterior llibreta d'adreces" + +#: templates/index.php:54 +msgid "Actions" +msgstr "Accions" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "Carrega de nou la llista de contactes" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "Afegeix un contacte nou" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "Afegeix una llibreta d'adreces nova" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "Esborra el contacte" + #: templates/part.chooseaddressbook.php:1 msgid "Configure Address Books" msgstr "Configura les llibretes d'adreces" @@ -442,11 +497,7 @@ msgstr "Configura les llibretes d'adreces" msgid "New Address Book" msgstr "Nova llibreta d'adreces" -#: templates/part.chooseaddressbook.php:17 -msgid "Import from VCF" -msgstr "Importa de VFC" - -#: templates/part.chooseaddressbook.php:22 +#: templates/part.chooseaddressbook.php:21 #: templates/part.chooseaddressbook.rowfields.php:8 msgid "CardDav Link" msgstr "Enllaç CardDav" @@ -460,186 +511,195 @@ msgid "Edit" msgstr "Edita" #: templates/part.chooseaddressbook.rowfields.php:17 -#: templates/part.contact.php:34 templates/part.contact.php:36 -#: templates/part.contact.php:38 templates/part.contact.php:42 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 msgid "Delete" msgstr "Suprimeix" -#: templates/part.contact.php:12 -msgid "Download contact" -msgstr "Baixa el contacte" - -#: templates/part.contact.php:13 -msgid "Delete contact" -msgstr "Suprimeix el contacte" - -#: templates/part.contact.php:19 +#: templates/part.contact.php:16 msgid "Drop photo to upload" msgstr "Elimina la foto a carregar" -#: templates/part.contact.php:29 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Format personalitzat, Nom curt, Nom sencer, Invertit o Invertit amb coma" - -#: templates/part.contact.php:30 -msgid "Edit name details" -msgstr "Edita detalls del nom" - -#: templates/part.contact.php:35 templates/part.contact.php:105 -msgid "Nickname" -msgstr "Sobrenom" - -#: templates/part.contact.php:36 -msgid "Enter nickname" -msgstr "Escriviu el sobrenom" - -#: templates/part.contact.php:37 templates/part.contact.php:106 -msgid "Birthday" -msgstr "Aniversari" - -#: templates/part.contact.php:38 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:39 templates/part.contact.php:111 -msgid "Groups" -msgstr "Grups" - -#: templates/part.contact.php:41 -msgid "Separate groups with commas" -msgstr "Separeu els grups amb comes" - -#: templates/part.contact.php:42 -msgid "Edit groups" -msgstr "Edita els grups" - -#: templates/part.contact.php:55 templates/part.contact.php:69 -msgid "Preferred" -msgstr "Preferit" - -#: templates/part.contact.php:56 -msgid "Please specify a valid email address." -msgstr "Especifiqueu una adreça de correu electrònic correcta" - -#: templates/part.contact.php:56 -msgid "Enter email address" -msgstr "Escriviu una adreça de correu electrònic" - -#: templates/part.contact.php:60 -msgid "Mail to address" -msgstr "Envia per correu electrònic a l'adreça" - -#: templates/part.contact.php:61 -msgid "Delete email address" -msgstr "Elimina l'adreça de correu electrònic" - -#: templates/part.contact.php:70 -msgid "Enter phone number" -msgstr "Escriviu el número de telèfon" - -#: templates/part.contact.php:74 -msgid "Delete phone number" -msgstr "Elimina el número de telèfon" - -#: templates/part.contact.php:84 -msgid "View on map" -msgstr "Visualitza al mapa" - -#: templates/part.contact.php:84 -msgid "Edit address details" -msgstr "Edita els detalls de l'adreça" - -#: templates/part.contact.php:95 -msgid "Add notes here." -msgstr "Afegiu notes aquí." - -#: templates/part.contact.php:101 -msgid "Add field" -msgstr "Afegeix un camp" - -#: templates/part.contact.php:103 -msgid "Profile picture" -msgstr "Foto de perfil" - -#: templates/part.contact.php:107 -msgid "Phone" -msgstr "Telèfon" - -#: templates/part.contact.php:110 -msgid "Note" -msgstr "Nota" - -#: templates/part.contactphoto.php:8 +#: templates/part.contact.php:18 msgid "Delete current photo" msgstr "Elimina la foto actual" -#: templates/part.contactphoto.php:9 +#: templates/part.contact.php:19 msgid "Edit current photo" msgstr "Edita la foto actual" -#: templates/part.contactphoto.php:10 +#: templates/part.contact.php:20 msgid "Upload new photo" msgstr "Carrega una foto nova" -#: templates/part.contactphoto.php:11 +#: templates/part.contact.php:21 msgid "Select photo from ownCloud" msgstr "Selecciona una foto de ownCloud" -#: templates/part.cropphoto.php:64 -msgid "The temporary image has been removed from cache." -msgstr "" +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr "Format personalitzat, Nom curt, Nom sencer, Invertit o Invertit amb coma" -#: templates/part.edit_address_dialog.php:9 +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "Edita detalls del nom" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "Sobrenom" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "Escriviu el sobrenom" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" +msgstr "Adreça web" + +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "http://www.somesite.com" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "Vés a la web" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "dd-mm-yyyy" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "Grups" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "Separeu els grups amb comes" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "Edita els grups" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "Preferit" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "Especifiqueu una adreça de correu electrònic correcta" + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "Escriviu una adreça de correu electrònic" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "Envia per correu electrònic a l'adreça" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "Elimina l'adreça de correu electrònic" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "Escriviu el número de telèfon" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "Elimina el número de telèfon" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "Visualitza al mapa" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "Edita els detalls de l'adreça" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "Afegiu notes aquí." + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "Afegeix un camp" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "Telèfon" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "Nota" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "Baixa el contacte" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "Suprimeix el contacte" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "La imatge temporal ha estat eliminada de la memòria de cau." + +#: templates/part.edit_address_dialog.php:6 msgid "Edit address" msgstr "Edita l'adreça" -#: templates/part.edit_address_dialog.php:14 +#: templates/part.edit_address_dialog.php:10 msgid "Type" msgstr "Tipus" -#: templates/part.edit_address_dialog.php:22 -#: templates/part.edit_address_dialog.php:25 +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 msgid "PO Box" msgstr "Adreça postal" -#: templates/part.edit_address_dialog.php:29 -#: templates/part.edit_address_dialog.php:32 +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "Adreça" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "Carrer i número" + +#: templates/part.edit_address_dialog.php:30 msgid "Extended" msgstr "Addicional" -#: templates/part.edit_address_dialog.php:35 -#: templates/part.edit_address_dialog.php:38 -msgid "Street" -msgstr "Carrer" +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "Número d'apartament, etc." -#: templates/part.edit_address_dialog.php:41 -#: templates/part.edit_address_dialog.php:44 +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 msgid "City" msgstr "Ciutat" -#: templates/part.edit_address_dialog.php:47 -#: templates/part.edit_address_dialog.php:50 +#: templates/part.edit_address_dialog.php:42 msgid "Region" msgstr "Comarca" -#: templates/part.edit_address_dialog.php:53 -#: templates/part.edit_address_dialog.php:56 +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "p. ex. Estat o província " + +#: templates/part.edit_address_dialog.php:48 msgid "Zipcode" msgstr "Codi postal" -#: templates/part.edit_address_dialog.php:59 -#: templates/part.edit_address_dialog.php:62 +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "Codi postal" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 msgid "Country" msgstr "País" -#: templates/part.edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Edita categories" - -#: templates/part.edit_categories_dialog.php:14 -msgid "Add" -msgstr "Afegeix" - #: templates/part.edit_name_dialog.php:16 msgid "Addressbook" msgstr "Llibreta d'adreces" @@ -745,7 +805,6 @@ msgid "Submit" msgstr "Envia" #: templates/part.editaddressbook.php:30 -#: templates/part.importaddressbook.php:34 msgid "Cancel" msgstr "Cancel·la" @@ -765,33 +824,10 @@ msgstr "crea una llibreta d'adreces nova" msgid "Name of new addressbook" msgstr "Nom de la nova llibreta d'adreces" -#: templates/part.import.php:17 -msgid "Import" -msgstr "Importa" - #: templates/part.import.php:20 msgid "Importing contacts" msgstr "S'estan important contactes" -#: templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/part.importaddressbook.php:12 -msgid "" -"Currently this import function doesn't work while encryption is enabled.
Please upload your VCF file with the file manager and click on it to " -"import." -msgstr "" - -#: templates/part.importaddressbook.php:16 -msgid "Select address book to import to:" -msgstr "Seleccioneu la llibreta d'adreces a la que voleu importar:" - -#: templates/part.importaddressbook.php:26 -msgid "Select from HD" -msgstr "Selecciona de HD" - #: templates/part.no_contacts.php:2 msgid "You have no contacts in your addressbook." msgstr "No teniu contactes a la llibreta d'adreces." @@ -804,6 +840,18 @@ msgstr "Afegeix un contacte" msgid "Configure addressbooks" msgstr "Configura les llibretes d'adreces" +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "Selecccioneu llibretes d'adreces" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "Escriviu un nom" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "Escriviu una descripció" + #: templates/settings.php:4 msgid "CardDAV syncing addresses" msgstr "Adreces de sincronització CardDAV" @@ -819,3 +867,7 @@ msgstr "Adreça primària (Kontact i al)" #: templates/settings.php:8 msgid "iOS/OS X" msgstr "iOS/OS X" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "Enllaç(os) només de lectura vCard" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 0d3c2693b4..c66676acba 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/language/ca/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 07:07+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" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "El fitxer s'ha pujat correctament" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "El fitxer de pujada excedeix la directiva upload_max_filesize establerta a php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha pujat parcialment" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "El fitxer no s'ha pujat" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "S'ha perdut un fitxer temporal" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" @@ -53,57 +53,65 @@ msgstr "Ha fallat en escriure al disc" msgid "Files" msgstr "Fitxers" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "Deixa de compartir" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Suprimeix" + #: js/filelist.js:186 msgid "undo deletion" -msgstr "" +msgstr "desfés l'eliminació" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "s'estan generant fitxers ZIP, pot trigar una estona." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Error en la pujada" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Pendents" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "La pujada s'ha cancel·lat." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Mida" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Modificat" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "carpeta" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "carpetes" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "fitxer" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "fitxers" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +181,6 @@ msgstr "Comparteix" msgid "Download" msgstr "Baixa" -#: templates/index.php:56 -msgid "Delete" -msgstr "Suprimeix" - #: templates/index.php:64 msgid "Upload too large" msgstr "La pujada és massa gran" diff --git a/l10n/ca/gallery.po b/l10n/ca/gallery.po index 72f3cf5c80..7be2fa1525 100644 --- a/l10n/ca/gallery.po +++ b/l10n/ca/gallery.po @@ -8,71 +8,35 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/language/ca/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 07:08+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" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:37 +#: appinfo/app.php:39 msgid "Pictures" msgstr "Fotos" -#: js/album_cover.js:44 +#: js/pictures.js:12 msgid "Share gallery" -msgstr "" +msgstr "Comperteix la galeria" -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 +#: js/pictures.js:32 msgid "Error: " -msgstr "" +msgstr "Error: " -#: js/album_cover.js:64 js/album_cover.js:100 +#: js/pictures.js:32 msgid "Internal error" -msgstr "" +msgstr "Error intern" -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Arranjament" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Escaneja de nou" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Atura" - -#: templates/index.php:18 -msgid "Share" -msgstr "Comparteix" +#: templates/index.php:27 +msgid "Slideshow" +msgstr "Passi de diapositives" #: templates/view_album.php:19 msgid "Back" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 62b4b97539..8629118121 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/language/ca/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -21,65 +21,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "S'ha desat el correu electrònic" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "El correu electrònic no és vàlid" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID ha canviat" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Sol.licitud no vàlida" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "S'ha canviat l'idioma" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Desactiva" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Activa" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "S'està desant..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Català" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "Avís de seguretat" + +#: templates/admin.php:28 msgid "Log" msgstr "Registre" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Més" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Afegeiu la vostra aplicació" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Seleccioneu una aplicació" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Mireu la pàgina d'aplicacions a apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "- amb llicència" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "de" @@ -171,34 +179,42 @@ msgstr "Ajudeu-nos amb la traducció" msgid "use this address to connect to your ownCloud in your file manager" msgstr "useu aquesta adreça per connectar-vos a ownCloud des del gestor de fitxers" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nom" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Contrasenya" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grups" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Crea" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Quota per defecte" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Altre" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Quota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Suprimeix" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 360a7fe9d9..59288cbf81 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.net/projects/p/owncloud/language/cs_CZ/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -24,65 +24,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "E-mail uložen" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Neplatný e-mail" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID změněn" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Chybný dotaz" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Jazyk byl změněn" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Vypnout" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Zapnout" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Ukládám..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Česky" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Log" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Více" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Přidat vaší aplikaci" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Vyberte aplikaci" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Více na stránce s aplikacemi na apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licencováno" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "podle" @@ -174,34 +182,42 @@ msgstr "Pomoci překládat" msgid "use this address to connect to your ownCloud in your file manager" msgstr "tuto adresu použijte pro připojení k ownCloud ve Vašem správci souborů" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Jméno" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Heslo" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Skupiny" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Vytvořit" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Výchozí kvóta" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Jiné" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Kvóta" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Vymazat" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index deab93e2ed..d4d081a64d 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,14 +8,15 @@ # Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. # Pascal d'Hermilly , 2011. # 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-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/language/da/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -24,65 +25,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email adresse gemt" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Ugyldig email adresse" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID ændret" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Ugyldig forespørgsel" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Sprog ændret" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Deaktiver" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Aktiver" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Gemmer..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Dansk" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Log" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Mere" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Tilføj din App" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Vælg en App" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Se applikationens side på apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licenseret" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "af" @@ -174,34 +183,42 @@ msgstr "Hjælp med oversættelsen" msgid "use this address to connect to your ownCloud in your file manager" msgstr "benyt denne adresse til at forbinde til din ownCloud i din filbrowser" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Navn" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Kodeord" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupper" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Ny" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Standard kvote" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Andet" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Kvote" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Slet" diff --git a/l10n/de/calendar.po b/l10n/de/calendar.po index d129d8cae0..fb8cc41c66 100644 --- a/l10n/de/calendar.po +++ b/l10n/de/calendar.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-07-25 22:14+0200\n" -"PO-Revision-Date: 2012-07-25 20:14+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 18:09+0000\n" +"Last-Translator: JamFX \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,11 +27,11 @@ msgstr "" #: ajax/cache/status.php:19 msgid "Not all calendars are completely cached" -msgstr "" +msgstr "Noch sind nicht alle Kalender zwischengespeichert." #: ajax/cache/status.php:21 msgid "Everything seems to be completely cached" -msgstr "" +msgstr "Es sieht so aus, als wäre alles vollständig zwischengespeichert." #: ajax/categories/rescan.php:29 msgid "No calendars found." @@ -49,11 +49,11 @@ msgstr "Falscher Kalender" msgid "" "The file contained either no events or all events are already saved in your " "calendar." -msgstr "" +msgstr "Entweder enthielt die Datei keine Termine oder alle Termine waren schon im Kalender gespeichert." #: ajax/import/dropimport.php:31 ajax/import/import.php:67 msgid "events has been saved in the new calendar" -msgstr "" +msgstr "Der Termin wurde im neuen Kalender gespeichert." #: ajax/import/import.php:56 msgid "Import failed" @@ -61,7 +61,7 @@ msgstr "Import fehlgeschlagen" #: ajax/import/import.php:69 msgid "events has been saved in your calendar" -msgstr "" +msgstr "Der Termin wurde im Kalender gespeichert." #: ajax/settings/guesstimezone.php:25 msgid "New Timezone:" @@ -701,7 +701,7 @@ msgstr "Kalenderdatei Importieren" #: templates/part.import.php:24 msgid "Please choose a calendar" -msgstr "" +msgstr "Wählen Sie bitte einen Kalender." #: templates/part.import.php:36 msgid "Name of new calendar" @@ -709,13 +709,13 @@ msgstr "Kalendername" #: templates/part.import.php:44 msgid "Take an available name!" -msgstr "" +msgstr "Wählen Sie einen verfügbaren Namen." #: templates/part.import.php:45 msgid "" "A Calendar with this name already exists. If you continue anyhow, these " "calendars will be merged." -msgstr "" +msgstr "Ein Kalender mit diesem Namen existiert schon. Sollten Sie fortfahren, werden die beiden Kalender zusammengeführt." #: templates/part.import.php:47 msgid "Import" @@ -771,31 +771,31 @@ msgstr "erster Wochentag" #: templates/settings.php:47 msgid "Cache" -msgstr "" +msgstr "Zwischenspeicher" #: templates/settings.php:48 msgid "Clear cache for repeating events" -msgstr "" +msgstr "Lösche den Zwischenspeicher für wiederholende Veranstaltungen." #: templates/settings.php:53 msgid "Calendar CalDAV syncing addresses" -msgstr "" +msgstr "CalDAV-Kalender gleicht Adressen ab." #: templates/settings.php:53 msgid "more info" -msgstr "" +msgstr "weitere Informationen" #: templates/settings.php:55 msgid "Primary address (Kontact et al)" -msgstr "" +msgstr "Primäre Adresse (Kontakt u.a.)" #: templates/settings.php:57 msgid "iOS/OS X" -msgstr "" +msgstr "iOS/OS X" #: templates/settings.php:59 msgid "Read only iCalendar link(s)" -msgstr "" +msgstr "Nur lesende(r) iCalender-Link(s)" #: templates/share.dropdown.php:20 msgid "Users" diff --git a/l10n/de/contacts.po b/l10n/de/contacts.po index 067ce64126..e91d917df7 100644 --- a/l10n/de/contacts.po +++ b/l10n/de/contacts.po @@ -9,111 +9,110 @@ # , 2011. # Jan-Christoph Borchardt , 2011. # Jan-Christoph Borchardt , 2011. +# Marcel Kühlhorn , 2012. # Melvin Gundlach , 2012. # Michael Krell , 2012. # , 2012. # , 2012. +# , 2012. # Susi <>, 2012. +# , 2012. # Thomas Müller <>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: German (http://www.transifex.net/projects/p/owncloud/language/de/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 18:13+0000\n" +"Last-Translator: JamFX \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" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/activation.php:19 ajax/updateaddressbook.php:32 +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 msgid "Error (de)activating addressbook." msgstr "(De-)Aktivierung des Adressbuches fehlgeschlagen" -#: ajax/addcontact.php:59 +#: ajax/addcontact.php:47 msgid "There was an error adding the contact." msgstr "Erstellen des Kontakts fehlgeschlagen" -#: ajax/addproperty.php:40 +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "Kein Name für das Element angegeben." + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "ID ist nicht angegeben." + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "Konnte folgenden Kontakt nicht verarbeiten:" + +#: ajax/addproperty.php:56 msgid "Cannot add empty property." msgstr "Feld darf nicht leer sein." -#: ajax/addproperty.php:52 +#: ajax/addproperty.php:67 msgid "At least one of the address fields has to be filled out." msgstr "Mindestens eines der Adressfelder muss ausgefüllt werden." -#: ajax/addproperty.php:62 +#: ajax/addproperty.php:76 msgid "Trying to add duplicate property: " msgstr "Versuche, doppelte Eigenschaft hinzuzufügen: " -#: ajax/addproperty.php:120 -msgid "Error adding contact property." -msgstr "Kontakt ändern fehlgeschlagen" +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "Fehler beim Hinzufügen der Kontakteigenschaft:" -#: ajax/categories/categoriesfor.php:15 +#: ajax/categories/categoriesfor.php:17 msgid "No ID provided" msgstr "Keine ID angegeben" -#: ajax/categories/categoriesfor.php:27 +#: ajax/categories/categoriesfor.php:34 msgid "Error setting checksum." msgstr "Fehler beim Setzen der Prüfsumme." -#: ajax/categories/delete.php:29 +#: ajax/categories/delete.php:19 msgid "No categories selected for deletion." msgstr "Keine Kategorien zum Löschen ausgewählt." -#: ajax/categories/delete.php:36 ajax/categories/rescan.php:28 +#: ajax/categories/delete.php:26 msgid "No address books found." msgstr "Keine Adressbücher gefunden." -#: ajax/categories/delete.php:44 ajax/categories/rescan.php:36 +#: ajax/categories/delete.php:34 msgid "No contacts found." msgstr "Keine Kontakte gefunden." -#: ajax/contactdetails.php:37 +#: ajax/contactdetails.php:31 msgid "Missing ID" msgstr "Fehlende ID" -#: ajax/contactdetails.php:41 +#: ajax/contactdetails.php:36 msgid "Error parsing VCard for ID: \"" msgstr "Fehler beim Einlesen der VCard für die ID: \"" -#: ajax/createaddressbook.php:18 -msgid "Cannot add addressbook with an empty name." -msgstr "Bitte einen Namen für das Adressbuch angeben." - -#: ajax/createaddressbook.php:24 -msgid "Error adding addressbook." -msgstr "Adressbuch hinzufügen fehlgeschlagen" - -#: ajax/createaddressbook.php:30 -msgid "Error activating addressbook." -msgstr "Adressbuchaktivierung fehlgeschlagen" - -#: ajax/currentphoto.php:34 ajax/oc_photo.php:37 ajax/uploadphoto.php:41 +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 #: ajax/uploadphoto.php:68 msgid "No contact ID was submitted." msgstr "Es wurde keine Kontakt-ID übermittelt." -#: ajax/currentphoto.php:40 +#: ajax/currentphoto.php:36 msgid "Error reading contact photo." -msgstr "Fehler beim auslesen des Kontaktfotos." +msgstr "Fehler beim Auslesen des Kontaktfotos." -#: ajax/currentphoto.php:52 +#: ajax/currentphoto.php:48 msgid "Error saving temporary file." msgstr "Fehler beim Speichern der temporären Datei." -#: ajax/currentphoto.php:55 +#: ajax/currentphoto.php:51 msgid "The loading photo is not valid." msgstr "Das Kontaktfoto ist fehlerhaft." -#: ajax/deletecard.php:37 ajax/saveproperty.php:58 -msgid "id is not set." -msgstr "ID ist nicht angegeben." - #: ajax/deleteproperty.php:36 msgid "Information about vCard is incorrect. Please reload the page." msgstr "Die Information der vCard ist fehlerhaft. Bitte aktualisiere die Seite." @@ -122,328 +121,387 @@ msgstr "Die Information der vCard ist fehlerhaft. Bitte aktualisiere die Seite." msgid "Error deleting contact property." msgstr "Kontakteigenschaft löschen fehlgeschlagen" -#: ajax/editname.php:37 +#: ajax/editname.php:31 msgid "Contact ID is missing." msgstr "Keine Kontakt-ID angegeben." -#: ajax/loadphoto.php:44 -msgid "Missing contact id." -msgstr "Fehlende Kontakt-ID." - -#: ajax/oc_photo.php:41 +#: ajax/oc_photo.php:32 msgid "No photo path was submitted." msgstr "Kein Foto-Pfad übermittelt." -#: ajax/oc_photo.php:48 +#: ajax/oc_photo.php:39 msgid "File doesn't exist:" msgstr "Datei existiert nicht: " -#: ajax/oc_photo.php:54 ajax/oc_photo.php:57 +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 msgid "Error loading image." msgstr "Fehler beim Laden des Bildes." -#: ajax/savecrop.php:68 +#: ajax/savecrop.php:67 msgid "Error getting contact object." -msgstr "" +msgstr "Fehler beim Abruf des Kontakt-Objektes." -#: ajax/savecrop.php:75 +#: ajax/savecrop.php:76 msgid "Error getting PHOTO property." -msgstr "" +msgstr "Fehler beim Abrufen der PHOTO Eigenschaft." -#: ajax/savecrop.php:88 +#: ajax/savecrop.php:93 msgid "Error saving contact." -msgstr "" +msgstr "Fehler beim Speichern des Kontaktes" -#: ajax/savecrop.php:98 +#: ajax/savecrop.php:103 msgid "Error resizing image" -msgstr "" +msgstr "Fehler bei der Größenänderung des Bildes" -#: ajax/savecrop.php:101 +#: ajax/savecrop.php:106 msgid "Error cropping image" -msgstr "" +msgstr "Fehler beim Zuschneiden des Bildes" -#: ajax/savecrop.php:104 +#: ajax/savecrop.php:109 msgid "Error creating temporary image" -msgstr "" +msgstr "Fehler beim erstellen des temporären Bildes" -#: ajax/savecrop.php:107 +#: ajax/savecrop.php:112 msgid "Error finding image: " -msgstr "" +msgstr "Fehler beim Suchen des Bildes: " -#: ajax/saveproperty.php:55 -msgid "element name is not set." -msgstr "Kein Name für das Element angegeben." - -#: ajax/saveproperty.php:61 +#: ajax/saveproperty.php:40 msgid "checksum is not set." msgstr "Keine Prüfsumme angegeben." -#: ajax/saveproperty.php:78 +#: ajax/saveproperty.php:59 msgid "Information about vCard is incorrect. Please reload the page: " msgstr "Die Informationen zur vCard sind fehlerhaft. Bitte Seite neu laden: " -#: ajax/saveproperty.php:83 +#: ajax/saveproperty.php:64 msgid "Something went FUBAR. " msgstr "Irgendwas ist hier so richtig schief gelaufen. " -#: ajax/saveproperty.php:150 +#: ajax/saveproperty.php:133 msgid "Error updating contact property." msgstr "Kontakteigenschaft aktualisieren fehlgeschlagen" -#: ajax/updateaddressbook.php:20 +#: ajax/updateaddressbook.php:21 msgid "Cannot update addressbook with an empty name." msgstr "Adressbuch kann nicht mir leeren Namen aktualisiert werden." -#: ajax/updateaddressbook.php:26 +#: ajax/updateaddressbook.php:25 msgid "Error updating addressbook." msgstr "Adressbuch aktualisieren fehlgeschlagen" -#: ajax/uploadimport.php:46 ajax/uploadimport.php:76 +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 msgid "Error uploading contacts to storage." msgstr "Übertragen der Kontakte fehlgeschlagen" -#: ajax/uploadimport.php:59 ajax/uploadphoto.php:77 +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 msgid "There is no error, the file uploaded with success" msgstr "Alles bestens, Datei erfolgreich übertragen." -#: ajax/uploadimport.php:60 ajax/uploadphoto.php:78 +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Datei größer als durch die upload_max_filesize Direktive in php.ini erlaubt" -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:79 +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Datei größer als die MAX_FILE_SIZE Direktive erlaubt, die im HTML Formular spezifiziert ist" -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:80 +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 msgid "The uploaded file was only partially uploaded" msgstr "Datei konnte nur teilweise übertragen werden" -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:81 +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:82 +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:102 +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 msgid "Couldn't save temporary image: " -msgstr "" +msgstr "Konnte das temporäre Bild nicht speichern:" -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:105 +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 msgid "Couldn't load temporary image: " -msgstr "" +msgstr "Konnte das temporäre Bild nicht laden:" #: ajax/uploadphoto.php:71 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: appinfo/app.php:17 templates/settings.php:3 +#: appinfo/app.php:19 templates/settings.php:3 msgid "Contacts" msgstr "Kontakte" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Sorry, this functionality has not been implemented yet" -msgstr "" +msgstr "Diese Funktion steht leider noch nicht zur Verfügung" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Not implemented" -msgstr "" +msgstr "Nicht Verfügbar" -#: js/contacts.js:29 +#: js/contacts.js:58 msgid "Couldn't get a valid address." -msgstr "" +msgstr "Konnte keine gültige Adresse abrufen" -#: js/contacts.js:29 js/contacts.js:334 js/contacts.js:341 js/contacts.js:355 -#: js/contacts.js:393 js/contacts.js:399 js/contacts.js:565 js/contacts.js:605 -#: js/contacts.js:631 js/contacts.js:668 js/contacts.js:747 js/contacts.js:753 -#: js/contacts.js:765 js/contacts.js:799 js/contacts.js:1056 -#: js/contacts.js:1064 js/contacts.js:1073 js/contacts.js:1130 -#: js/contacts.js:1146 js/contacts.js:1161 js/contacts.js:1173 -#: js/contacts.js:1196 js/contacts.js:1449 js/contacts.js:1457 -#: js/contacts.js:1483 js/contacts.js:1494 js/contacts.js:1509 -#: js/contacts.js:1526 js/contacts.js:1596 js/contacts.js:1644 -#: js/contacts.js:1654 js/contacts.js:1657 +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 msgid "Error" -msgstr "" +msgstr "Fehler" -#: js/contacts.js:364 -msgid "Are you sure you want to delete this contact?" -msgstr "" - -#: js/contacts.js:364 -msgid "Warning" -msgstr "" - -#: js/contacts.js:605 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:631 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:747 js/contacts.js:765 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:781 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1056 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1064 js/contacts.js:1449 js/contacts.js:1634 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1119 -msgid "Select photo" -msgstr "" - -#: js/contacts.js:1257 js/contacts.js:1290 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1305 templates/part.importaddressbook.php:25 -msgid "Drop a VCF file to import contacts." -msgstr "Zieh' eine VCF Datei hierher zum Kontaktimport" - -#: js/contacts.js:1475 -msgid "Import done. Success/Failure: " -msgstr "" - -#: js/contacts.js:1476 -msgid "OK" -msgstr "" - -#: js/contacts.js:1494 -msgid "Displayname cannot be empty." -msgstr "" - -#: js/contacts.js:1634 -msgid "Upload too large" -msgstr "" - -#: js/contacts.js:1638 -msgid "Only image files can be used as profile picture." -msgstr "" - -#: js/contacts.js:1638 -msgid "Wrong file type" -msgstr "" - -#: js/contacts.js:1644 -msgid "" -"Your browser doesn't support AJAX upload. Please click on the profile " -"picture to select a photo to upload." -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: lib/app.php:30 -msgid "Addressbook not found." -msgstr "Adressbuch nicht gefunden." - -#: lib/app.php:34 -msgid "This is not your addressbook." -msgstr "Dies ist nicht dein Adressbuch." - -#: lib/app.php:45 -msgid "Contact could not be found." -msgstr "Kontakt konnte nicht gefunden werden." - -#: lib/app.php:101 templates/part.contact.php:109 -msgid "Address" -msgstr "Adresse" - -#: lib/app.php:102 -msgid "Telephone" -msgstr "Telefon" - -#: lib/app.php:103 templates/part.contact.php:108 -msgid "Email" -msgstr "Email" - -#: lib/app.php:104 templates/part.contact.php:33 templates/part.contact.php:34 -#: templates/part.contact.php:104 -msgid "Organization" -msgstr "Organisation" - -#: lib/app.php:116 lib/app.php:123 lib/app.php:133 -msgid "Work" -msgstr "Arbeit" - -#: lib/app.php:117 lib/app.php:121 lib/app.php:134 -msgid "Home" -msgstr "Zuhause" - -#: lib/app.php:122 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:124 -msgid "Text" -msgstr "Text" - -#: lib/app.php:125 -msgid "Voice" -msgstr "Anruf" - -#: lib/app.php:126 -msgid "Message" -msgstr "Mitteilung" - -#: lib/app.php:127 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:128 -msgid "Video" -msgstr "Video" - -#: lib/app.php:129 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:135 -msgid "Internet" -msgstr "Internet" - -#: lib/hooks.php:79 -msgid "{name}'s Birthday" -msgstr "Geburtstag von {name}" - -#: lib/search.php:22 +#: js/contacts.js:389 lib/search.php:15 msgid "Contact" msgstr "Kontakt" -#: templates/index.php:13 +#: js/contacts.js:389 +msgid "New" +msgstr "Neu" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "Neuer Kontakt" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "Dieses Feld darf nicht Leer sein." + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "Konnte Elemente nicht serialisieren" + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "'deleteProperty' wurde ohne Argumente aufgerufen, bitte Melde dies auf bugs.owncloud.org" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "Name ändern" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "Keine Datei(en) zum Hochladen ausgewählt" + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "Die Datei, die Sie versuchen hochzuladen, überschreitet die maximale Größe für Datei-Uploads auf diesem Server." + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "Wähle Typ" + +#: js/loader.js:49 +msgid "Result: " +msgstr "Ergebnis: " + +#: js/loader.js:49 +msgid " imported, " +msgstr " importiert, " + +#: js/loader.js:49 +msgid " failed." +msgstr " fehlgeschlagen." + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "Adressbuch nicht gefunden." + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "Dies ist nicht dein Adressbuch." + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "Kontakt konnte nicht gefunden werden." + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "Adresse" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "Telefon" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "E-Mail" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "Organisation" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "Arbeit" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "Zuhause" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "Mobil" + +#: lib/app.php:123 +msgid "Text" +msgstr "Text" + +#: lib/app.php:124 +msgid "Voice" +msgstr "Anruf" + +#: lib/app.php:125 +msgid "Message" +msgstr "Mitteilung" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Pager" + +#: lib/app.php:134 +msgid "Internet" +msgstr "Internet" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "Geburtstag" + +#: lib/app.php:170 +msgid "Business" +msgstr "Geschäftlich" + +#: lib/app.php:171 +msgid "Call" +msgstr "Anruf" + +#: lib/app.php:172 +msgid "Clients" +msgstr "Kunden" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "Lieferant" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "Feiertage" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "Ideen" + +#: lib/app.php:176 +msgid "Journey" +msgstr "Reise" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "Jubiläum" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "Besprechung" + +#: lib/app.php:179 +msgid "Other" +msgstr "Andere" + +#: lib/app.php:180 +msgid "Personal" +msgstr "Persönlich" + +#: lib/app.php:181 +msgid "Projects" +msgstr "Projekte" + +#: lib/app.php:182 +msgid "Questions" +msgstr "Fragen" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "Geburtstag von {name}" + +#: templates/index.php:15 msgid "Add Contact" msgstr "Kontakt hinzufügen" -#: templates/index.php:14 +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "Importieren" + +#: templates/index.php:20 msgid "Addressbooks" msgstr "Adressbücher" +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "Schließen" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "Tastaturbefehle" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "Navigation" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "Nächster Kontakt aus der Liste" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "Vorheriger Kontakt aus der Liste" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "Ausklappen/Einklappen des Adressbuches" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "Nächstes/Vorhergehendes Adressbuch" + +#: templates/index.php:54 +msgid "Actions" +msgstr "Aktionen" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "Kontaktliste neu laden" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "Neuen Kontakt hinzufügen" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "Neues Adressbuch hinzufügen" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "Aktuellen Kontakt löschen" + #: templates/part.chooseaddressbook.php:1 msgid "Configure Address Books" msgstr "Adressbücher konfigurieren" @@ -452,14 +510,10 @@ msgstr "Adressbücher konfigurieren" msgid "New Address Book" msgstr "Neues Adressbuch" -#: templates/part.chooseaddressbook.php:17 -msgid "Import from VCF" -msgstr "Import von VCF Datei" - -#: templates/part.chooseaddressbook.php:22 +#: templates/part.chooseaddressbook.php:21 #: templates/part.chooseaddressbook.rowfields.php:8 msgid "CardDav Link" -msgstr "CardDav Link" +msgstr "CardDav-Link" #: templates/part.chooseaddressbook.rowfields.php:11 msgid "Download" @@ -470,186 +524,195 @@ msgid "Edit" msgstr "Bearbeiten" #: templates/part.chooseaddressbook.rowfields.php:17 -#: templates/part.contact.php:34 templates/part.contact.php:36 -#: templates/part.contact.php:38 templates/part.contact.php:42 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 msgid "Delete" msgstr "Löschen" -#: templates/part.contact.php:12 -msgid "Download contact" -msgstr "Kontakt herunterladen" - -#: templates/part.contact.php:13 -msgid "Delete contact" -msgstr "Kontakt löschen" - -#: templates/part.contact.php:19 +#: templates/part.contact.php:16 msgid "Drop photo to upload" -msgstr "Zieh' ein Foto hierher zum hochladen" +msgstr "Zieh' ein Foto hierher zum Hochladen" -#: templates/part.contact.php:29 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Format benutzerdefiniert, Kurzname, Vollname, Rückwärts order Rückwärts mit Komma" - -#: templates/part.contact.php:30 -msgid "Edit name details" -msgstr "Namen ändern" - -#: templates/part.contact.php:35 templates/part.contact.php:105 -msgid "Nickname" -msgstr "Spitzname" - -#: templates/part.contact.php:36 -msgid "Enter nickname" -msgstr "Spitznamen angeben" - -#: templates/part.contact.php:37 templates/part.contact.php:106 -msgid "Birthday" -msgstr "Geburtstag" - -#: templates/part.contact.php:38 -msgid "dd-mm-yyyy" -msgstr "TT-MM-JJJJ" - -#: templates/part.contact.php:39 templates/part.contact.php:111 -msgid "Groups" -msgstr "Gruppen" - -#: templates/part.contact.php:41 -msgid "Separate groups with commas" -msgstr "Gruppen mit Komma trennt" - -#: templates/part.contact.php:42 -msgid "Edit groups" -msgstr "Gruppen editieren" - -#: templates/part.contact.php:55 templates/part.contact.php:69 -msgid "Preferred" -msgstr "Bevorzugt" - -#: templates/part.contact.php:56 -msgid "Please specify a valid email address." -msgstr "Bitte eine gültige E-Mail-Adresse angeben." - -#: templates/part.contact.php:56 -msgid "Enter email address" -msgstr "E-Mail-Adresse angeben." - -#: templates/part.contact.php:60 -msgid "Mail to address" -msgstr "E-Mail an diese Adresse schreiben" - -#: templates/part.contact.php:61 -msgid "Delete email address" -msgstr "E-Mail-Adresse löschen" - -#: templates/part.contact.php:70 -msgid "Enter phone number" -msgstr "Telefonnummer angeben" - -#: templates/part.contact.php:74 -msgid "Delete phone number" -msgstr "Telefonnummer löschen" - -#: templates/part.contact.php:84 -msgid "View on map" -msgstr "Auf Karte anzeigen" - -#: templates/part.contact.php:84 -msgid "Edit address details" -msgstr "Adressinformationen ändern" - -#: templates/part.contact.php:95 -msgid "Add notes here." -msgstr "Füge hier Notizen ein." - -#: templates/part.contact.php:101 -msgid "Add field" -msgstr "Feld hinzufügen" - -#: templates/part.contact.php:103 -msgid "Profile picture" -msgstr "Profil Bild" - -#: templates/part.contact.php:107 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:110 -msgid "Note" -msgstr "Notiz" - -#: templates/part.contactphoto.php:8 +#: templates/part.contact.php:18 msgid "Delete current photo" msgstr "Derzeitiges Foto löschen" -#: templates/part.contactphoto.php:9 +#: templates/part.contact.php:19 msgid "Edit current photo" msgstr "Foto ändern" -#: templates/part.contactphoto.php:10 +#: templates/part.contact.php:20 msgid "Upload new photo" msgstr "Neues Foto hochladen" -#: templates/part.contactphoto.php:11 +#: templates/part.contact.php:21 msgid "Select photo from ownCloud" msgstr "Foto aus ownCloud auswählen" -#: templates/part.cropphoto.php:64 -msgid "The temporary image has been removed from cache." -msgstr "" +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr "Format benutzerdefiniert, Kurzname, Vollname, Rückwärts oder Rückwärts mit Komma" -#: templates/part.edit_address_dialog.php:9 +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "Name ändern" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "Spitzname" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "Spitzname angeben" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" +msgstr "Webseite" + +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "http://www.somesite.com" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "Webseite aufrufen" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "dd.mm.yyyy" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "Gruppen" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "Gruppen mit Komma getrennt" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "Gruppen editieren" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "Bevorzugt" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "Bitte eine gültige E-Mail-Adresse angeben." + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "E-Mail-Adresse angeben." + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "E-Mail an diese Adresse schreiben" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "E-Mail-Adresse löschen" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "Telefonnummer angeben" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "Telefonnummer löschen" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "Auf Karte anzeigen" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "Adressinformationen ändern" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "Füge hier Notizen ein." + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "Feld hinzufügen" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "Telefon" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "Notiz" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "Kontakt herunterladen" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "Kontakt löschen" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "Das temporäre Bild wurde aus dem Cache gelöscht." + +#: templates/part.edit_address_dialog.php:6 msgid "Edit address" msgstr "Adresse ändern" -#: templates/part.edit_address_dialog.php:14 +#: templates/part.edit_address_dialog.php:10 msgid "Type" msgstr "Typ" -#: templates/part.edit_address_dialog.php:22 -#: templates/part.edit_address_dialog.php:25 +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 msgid "PO Box" msgstr "Postfach" -#: templates/part.edit_address_dialog.php:29 -#: templates/part.edit_address_dialog.php:32 +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "Straßenanschrift" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "Straße und Nummer" + +#: templates/part.edit_address_dialog.php:30 msgid "Extended" msgstr "Erweitert" -#: templates/part.edit_address_dialog.php:35 -#: templates/part.edit_address_dialog.php:38 -msgid "Street" -msgstr "Straße" +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "Wohnungsnummer usw." -#: templates/part.edit_address_dialog.php:41 -#: templates/part.edit_address_dialog.php:44 +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 msgid "City" msgstr "Stadt" -#: templates/part.edit_address_dialog.php:47 -#: templates/part.edit_address_dialog.php:50 +#: templates/part.edit_address_dialog.php:42 msgid "Region" msgstr "Region" -#: templates/part.edit_address_dialog.php:53 -#: templates/part.edit_address_dialog.php:56 +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "Z.B. Staat oder Bezirk" + +#: templates/part.edit_address_dialog.php:48 msgid "Zipcode" msgstr "Postleitzahl" -#: templates/part.edit_address_dialog.php:59 -#: templates/part.edit_address_dialog.php:62 +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "PLZ" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 msgid "Country" msgstr "Land" -#: templates/part.edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Kategorie ändern" - -#: templates/part.edit_categories_dialog.php:14 -msgid "Add" -msgstr "Hinzufügen" - #: templates/part.edit_name_dialog.php:16 msgid "Addressbook" msgstr "Adressbuch" @@ -755,7 +818,6 @@ msgid "Submit" msgstr "Eintragen" #: templates/part.editaddressbook.php:30 -#: templates/part.importaddressbook.php:34 msgid "Cancel" msgstr "Abbrechen" @@ -775,33 +837,10 @@ msgstr "Neues Adressbuch erstellen" msgid "Name of new addressbook" msgstr "Name des neuen Adressbuchs" -#: templates/part.import.php:17 -msgid "Import" -msgstr "Importieren" - #: templates/part.import.php:20 msgid "Importing contacts" msgstr "Kontakte werden importiert" -#: templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/part.importaddressbook.php:12 -msgid "" -"Currently this import function doesn't work while encryption is enabled.
Please upload your VCF file with the file manager and click on it to " -"import." -msgstr "" - -#: templates/part.importaddressbook.php:16 -msgid "Select address book to import to:" -msgstr "Adressbuch, in das importiert werden soll" - -#: templates/part.importaddressbook.php:26 -msgid "Select from HD" -msgstr "Von der Festplatte auswählen" - #: templates/part.no_contacts.php:2 msgid "You have no contacts in your addressbook." msgstr "Du hast keine Kontakte im Adressbuch." @@ -814,6 +853,18 @@ msgstr "Kontakt hinzufügen" msgid "Configure addressbooks" msgstr "Adressbücher konfigurieren" +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "Wähle Adressbuch" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "Name eingeben" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "Beschreibung eingeben" + #: templates/settings.php:4 msgid "CardDAV syncing addresses" msgstr "CardDAV Sync-Adressen" @@ -829,3 +880,7 @@ msgstr "primäre Adresse (für Kontact o.ä. Programme)" #: templates/settings.php:8 msgid "iOS/OS X" msgstr "iOS/OS X" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "Nur lesende(r) vCalender-Verzeichnis-Link(s)" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index f80377f656..9051386acc 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -8,14 +8,15 @@ # Jan-Christoph Borchardt , 2011. # Marcel Kühlhorn , 2012. # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: German (http://www.transifex.net/projects/p/owncloud/language/de/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -24,65 +25,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "E-Mail gespeichert" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Ungültige E-Mail" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID geändert" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Ungültige Anfrage" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Sprache geändert" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Deaktivieren" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Aktivieren" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Speichern..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Deutsch" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "Sicherheitshinweis" + +#: templates/admin.php:28 msgid "Log" msgstr "Log" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "mehr" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Füge deine App hinzu" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Wähle eine Anwendung aus" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Weitere Anwendungen auf apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-lizenziert" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "von" @@ -174,34 +183,42 @@ msgstr "Hilf bei der Übersetzung!" msgid "use this address to connect to your ownCloud in your file manager" msgstr "Benutze diese Adresse, um deine ownCloud mit deinem Dateimanager zu verbinden." -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Name" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Passwort" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Gruppen" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Anlegen" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Standard Quota" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "andere" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Quota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Löschen" diff --git a/l10n/el/calendar.po b/l10n/el/calendar.po index 6b6a6acedb..0be7c6d22c 100644 --- a/l10n/el/calendar.po +++ b/l10n/el/calendar.po @@ -4,27 +4,36 @@ # # Translators: # , 2011. +# Dimitris M. , 2012. # Marios Bekatoros <>, 2012. # Petros Kyladitis , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/language/el/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 09:47+0000\n" +"Last-Translator: Marios Bekatoros <>\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" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/categories/rescan.php:28 +#: ajax/cache/status.php:19 +msgid "Not all calendars are completely cached" +msgstr "" + +#: ajax/cache/status.php:21 +msgid "Everything seems to be completely cached" +msgstr "Όλα έχουν αποθηκευτεί στη cache" + +#: ajax/categories/rescan.php:29 msgid "No calendars found." msgstr "Δε βρέθηκαν ημερολόγια." -#: ajax/categories/rescan.php:36 +#: ajax/categories/rescan.php:37 msgid "No events found." msgstr "Δε βρέθηκαν γεγονότα." @@ -32,43 +41,57 @@ msgstr "Δε βρέθηκαν γεγονότα." msgid "Wrong calendar" msgstr "Λάθος ημερολόγιο" +#: ajax/import/dropimport.php:29 ajax/import/import.php:64 +msgid "" +"The file contained either no events or all events are already saved in your " +"calendar." +msgstr "" + +#: ajax/import/dropimport.php:31 ajax/import/import.php:67 +msgid "events has been saved in the new calendar" +msgstr "τα συμβάντα αποθηκεύτηκαν σε ένα νέο ημερολόγιο" + +#: ajax/import/import.php:56 +msgid "Import failed" +msgstr "Η εισαγωγή απέτυχε" + +#: ajax/import/import.php:69 +msgid "events has been saved in your calendar" +msgstr "το συμβάν αποθηκεύτηκε στο ημερολογιό σου" + #: ajax/settings/guesstimezone.php:25 msgid "New Timezone:" msgstr "Νέα ζώνη ώρας:" -#: ajax/settings/settimezone.php:22 +#: ajax/settings/settimezone.php:23 msgid "Timezone changed" msgstr "Η ζώνη ώρας άλλαξε" -#: ajax/settings/settimezone.php:24 +#: ajax/settings/settimezone.php:25 msgid "Invalid request" msgstr "Μη έγκυρο αίτημα" -#: appinfo/app.php:19 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:31 +#: appinfo/app.php:35 templates/calendar.php:15 +#: templates/part.eventform.php:33 templates/part.showevent.php:33 #: templates/settings.php:12 msgid "Calendar" msgstr "Ημερολόγιο" -#: js/calendar.js:93 -msgid "Deletion failed" -msgstr "" - #: js/calendar.js:828 msgid "ddd" -msgstr "" +msgstr "ddd" #: js/calendar.js:829 msgid "ddd M/d" -msgstr "" +msgstr "ddd M/d" #: js/calendar.js:830 msgid "dddd M/d" -msgstr "" +msgstr "dddd M/d" #: js/calendar.js:833 msgid "MMMM yyyy" -msgstr "" +msgstr "MMMM yyyy" #: js/calendar.js:835 msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" @@ -76,256 +99,337 @@ msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" #: js/calendar.js:837 msgid "dddd, MMM d, yyyy" -msgstr "" +msgstr "dddd, MMM d, yyyy" -#: lib/app.php:125 +#: lib/app.php:121 msgid "Birthday" msgstr "Γενέθλια" -#: lib/app.php:126 +#: lib/app.php:122 msgid "Business" msgstr "Επιχείρηση" -#: lib/app.php:127 +#: lib/app.php:123 msgid "Call" msgstr "Κλήση" -#: lib/app.php:128 +#: lib/app.php:124 msgid "Clients" msgstr "Πελάτες" -#: lib/app.php:129 +#: lib/app.php:125 msgid "Deliverer" -msgstr "Παραδώσας" +msgstr "Προμηθευτής" -#: lib/app.php:130 +#: lib/app.php:126 msgid "Holidays" msgstr "Διακοπές" -#: lib/app.php:131 +#: lib/app.php:127 msgid "Ideas" msgstr "Ιδέες" -#: lib/app.php:132 +#: lib/app.php:128 msgid "Journey" msgstr "Ταξίδι" -#: lib/app.php:133 +#: lib/app.php:129 msgid "Jubilee" msgstr "Γιορτή" -#: lib/app.php:134 +#: lib/app.php:130 msgid "Meeting" msgstr "Συνάντηση" -#: lib/app.php:135 +#: lib/app.php:131 msgid "Other" msgstr "Άλλο" -#: lib/app.php:136 +#: lib/app.php:132 msgid "Personal" msgstr "Προσωπικό" -#: lib/app.php:137 +#: lib/app.php:133 msgid "Projects" msgstr "Έργα" -#: lib/app.php:138 +#: lib/app.php:134 msgid "Questions" msgstr "Ερωτήσεις" -#: lib/app.php:139 +#: lib/app.php:135 msgid "Work" msgstr "Εργασία" -#: lib/app.php:380 +#: lib/app.php:351 lib/app.php:361 +msgid "by" +msgstr "από" + +#: lib/app.php:359 lib/app.php:399 msgid "unnamed" msgstr "ανώνυμο" -#: lib/object.php:330 +#: lib/import.php:184 templates/calendar.php:12 +#: templates/part.choosecalendar.php:22 +msgid "New Calendar" +msgstr "Νέα Ημερολόγιο" + +#: lib/object.php:372 msgid "Does not repeat" msgstr "Μη επαναλαμβανόμενο" -#: lib/object.php:331 +#: lib/object.php:373 msgid "Daily" msgstr "Καθημερινά" -#: lib/object.php:332 +#: lib/object.php:374 msgid "Weekly" msgstr "Εβδομαδιαία" -#: lib/object.php:333 +#: lib/object.php:375 msgid "Every Weekday" msgstr "Κάθε μέρα" -#: lib/object.php:334 +#: lib/object.php:376 msgid "Bi-Weekly" msgstr "Δύο φορές την εβδομάδα" -#: lib/object.php:335 +#: lib/object.php:377 msgid "Monthly" msgstr "Μηνιαία" -#: lib/object.php:336 +#: lib/object.php:378 msgid "Yearly" msgstr "Ετήσια" -#: lib/object.php:343 +#: lib/object.php:388 msgid "never" msgstr "ποτέ" -#: lib/object.php:344 +#: lib/object.php:389 msgid "by occurrences" msgstr "κατά συχνότητα πρόσβασης" -#: lib/object.php:345 +#: lib/object.php:390 msgid "by date" msgstr "κατά ημερομηνία" -#: lib/object.php:352 +#: lib/object.php:400 msgid "by monthday" msgstr "κατά ημέρα" -#: lib/object.php:353 +#: lib/object.php:401 msgid "by weekday" msgstr "κατά εβδομάδα" -#: lib/object.php:360 templates/settings.php:42 +#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 msgid "Monday" msgstr "Δευτέρα" -#: lib/object.php:361 +#: lib/object.php:412 templates/calendar.php:5 msgid "Tuesday" msgstr "Τρίτη" -#: lib/object.php:362 +#: lib/object.php:413 templates/calendar.php:5 msgid "Wednesday" msgstr "Τετάρτη" -#: lib/object.php:363 +#: lib/object.php:414 templates/calendar.php:5 msgid "Thursday" msgstr "Πέμπτη" -#: lib/object.php:364 +#: lib/object.php:415 templates/calendar.php:5 msgid "Friday" msgstr "Παρασκευή" -#: lib/object.php:365 +#: lib/object.php:416 templates/calendar.php:5 msgid "Saturday" msgstr "Σάββατο" -#: lib/object.php:366 templates/settings.php:43 +#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 msgid "Sunday" msgstr "Κυριακή" -#: lib/object.php:373 +#: lib/object.php:427 msgid "events week of month" msgstr "συμβάντα της εβδομάδας του μήνα" -#: lib/object.php:374 +#: lib/object.php:428 msgid "first" msgstr "πρώτο" -#: lib/object.php:375 +#: lib/object.php:429 msgid "second" msgstr "δεύτερο" -#: lib/object.php:376 +#: lib/object.php:430 msgid "third" msgstr "τρίτο" -#: lib/object.php:377 +#: lib/object.php:431 msgid "fourth" msgstr "τέταρτο" -#: lib/object.php:378 +#: lib/object.php:432 msgid "fifth" msgstr "πέμπτο" -#: lib/object.php:379 +#: lib/object.php:433 msgid "last" msgstr "τελευταίο" -#: lib/object.php:401 +#: lib/object.php:467 templates/calendar.php:7 msgid "January" msgstr "Ιανουάριος" -#: lib/object.php:402 +#: lib/object.php:468 templates/calendar.php:7 msgid "February" msgstr "Φεβρουάριος" -#: lib/object.php:403 +#: lib/object.php:469 templates/calendar.php:7 msgid "March" msgstr "Μάρτιος" -#: lib/object.php:404 +#: lib/object.php:470 templates/calendar.php:7 msgid "April" msgstr "Απρίλιος" -#: lib/object.php:405 +#: lib/object.php:471 templates/calendar.php:7 msgid "May" msgstr "Μάϊος" -#: lib/object.php:406 +#: lib/object.php:472 templates/calendar.php:7 msgid "June" msgstr "Ιούνιος" -#: lib/object.php:407 +#: lib/object.php:473 templates/calendar.php:7 msgid "July" msgstr "Ιούλιος" -#: lib/object.php:408 +#: lib/object.php:474 templates/calendar.php:7 msgid "August" msgstr "Αύγουστος" -#: lib/object.php:409 +#: lib/object.php:475 templates/calendar.php:7 msgid "September" msgstr "Σεπτέμβριος" -#: lib/object.php:410 +#: lib/object.php:476 templates/calendar.php:7 msgid "October" msgstr "Οκτώβριος" -#: lib/object.php:411 +#: lib/object.php:477 templates/calendar.php:7 msgid "November" msgstr "Νοέμβριος" -#: lib/object.php:412 +#: lib/object.php:478 templates/calendar.php:7 msgid "December" msgstr "Δεκέμβριος" -#: lib/object.php:418 +#: lib/object.php:488 msgid "by events date" msgstr "κατά ημερομηνία συμβάντων" -#: lib/object.php:419 +#: lib/object.php:489 msgid "by yearday(s)" msgstr "κατά ημέρα(ες) του έτους" -#: lib/object.php:420 +#: lib/object.php:490 msgid "by weeknumber(s)" msgstr "κατά εβδομάδα(ες)" -#: lib/object.php:421 +#: lib/object.php:491 msgid "by day and month" msgstr "κατά ημέρα και μήνα" -#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +#: lib/search.php:35 lib/search.php:37 lib/search.php:40 msgid "Date" msgstr "Ημερομηνία" -#: lib/search.php:40 +#: lib/search.php:43 msgid "Cal." msgstr "Ημερ." +#: templates/calendar.php:6 +msgid "Sun." +msgstr "Κυρ." + +#: templates/calendar.php:6 +msgid "Mon." +msgstr "Δευ." + +#: templates/calendar.php:6 +msgid "Tue." +msgstr "Τρί." + +#: templates/calendar.php:6 +msgid "Wed." +msgstr "Τετ." + +#: templates/calendar.php:6 +msgid "Thu." +msgstr "Πέμ." + +#: templates/calendar.php:6 +msgid "Fri." +msgstr "Παρ." + +#: templates/calendar.php:6 +msgid "Sat." +msgstr "Σάβ." + +#: templates/calendar.php:8 +msgid "Jan." +msgstr "Ιαν." + +#: templates/calendar.php:8 +msgid "Feb." +msgstr "Φεβ." + +#: templates/calendar.php:8 +msgid "Mar." +msgstr "Μάρ." + +#: templates/calendar.php:8 +msgid "Apr." +msgstr "Απρ." + +#: templates/calendar.php:8 +msgid "May." +msgstr "Μαΐ." + +#: templates/calendar.php:8 +msgid "Jun." +msgstr "Ιούν." + +#: templates/calendar.php:8 +msgid "Jul." +msgstr "Ιούλ." + +#: templates/calendar.php:8 +msgid "Aug." +msgstr "Αύγ." + +#: templates/calendar.php:8 +msgid "Sep." +msgstr "Σεπ." + +#: templates/calendar.php:8 +msgid "Oct." +msgstr "Οκτ." + +#: templates/calendar.php:8 +msgid "Nov." +msgstr "Νοέ." + +#: templates/calendar.php:8 +msgid "Dec." +msgstr "Δεκ." + #: templates/calendar.php:11 msgid "All day" msgstr "Ολοήμερο" -#: templates/calendar.php:12 templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Νέα Ημερολόγιο" - #: templates/calendar.php:13 msgid "Missing fields" msgstr "Πεδία που λείπουν" @@ -359,27 +463,27 @@ msgstr "Το συμβάν ολοκληρώνεται πριν από την έν msgid "There was a database fail" msgstr "Υπήρξε σφάλμα στη βάση δεδομένων" -#: templates/calendar.php:40 +#: templates/calendar.php:38 msgid "Week" msgstr "Εβδομάδα" -#: templates/calendar.php:41 +#: templates/calendar.php:39 msgid "Month" msgstr "Μήνας" -#: templates/calendar.php:42 +#: templates/calendar.php:40 msgid "List" msgstr "Λίστα" -#: templates/calendar.php:48 +#: templates/calendar.php:44 msgid "Today" msgstr "Σήμερα" -#: templates/calendar.php:49 +#: templates/calendar.php:45 msgid "Calendars" msgstr "Ημερολόγια" -#: templates/calendar.php:67 +#: templates/calendar.php:59 msgid "There was a fail, while parsing the file." msgstr "Υπήρξε μια αποτυχία, κατά την σάρωση του αρχείου." @@ -392,7 +496,7 @@ msgid "Your calendars" msgstr "Τα ημερολόγια σου" #: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:5 +#: templates/part.choosecalendar.rowfields.php:11 msgid "CalDav Link" msgstr "Σύνδεση CalDAV" @@ -404,19 +508,19 @@ msgstr "Κοινόχρηστα ημερολόγια" msgid "No shared calendars" msgstr "Δεν υπάρχουν κοινόχρηστα ημερολόγια" -#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.choosecalendar.rowfields.php:8 msgid "Share Calendar" msgstr "Διαμοίρασε ένα ημερολόγιο" -#: templates/part.choosecalendar.rowfields.php:6 +#: templates/part.choosecalendar.rowfields.php:14 msgid "Download" msgstr "Λήψη" -#: templates/part.choosecalendar.rowfields.php:7 +#: templates/part.choosecalendar.rowfields.php:17 msgid "Edit" msgstr "Επεξεργασία" -#: templates/part.choosecalendar.rowfields.php:8 +#: templates/part.choosecalendar.rowfields.php:20 #: templates/part.editevent.php:9 msgid "Delete" msgstr "Διαγραφή" @@ -502,23 +606,23 @@ msgstr "Διαχώρισε τις κατηγορίες με κόμμα" msgid "Edit categories" msgstr "Επεξεργασία κατηγοριών" -#: templates/part.eventform.php:56 templates/part.showevent.php:55 +#: templates/part.eventform.php:56 templates/part.showevent.php:52 msgid "All Day Event" msgstr "Ολοήμερο συμβάν" -#: templates/part.eventform.php:60 templates/part.showevent.php:59 +#: templates/part.eventform.php:60 templates/part.showevent.php:56 msgid "From" msgstr "Από" -#: templates/part.eventform.php:68 templates/part.showevent.php:67 +#: templates/part.eventform.php:68 templates/part.showevent.php:64 msgid "To" msgstr "Έως" -#: templates/part.eventform.php:76 templates/part.showevent.php:75 +#: templates/part.eventform.php:76 templates/part.showevent.php:72 msgid "Advanced options" msgstr "Επιλογές για προχωρημένους" -#: templates/part.eventform.php:81 templates/part.showevent.php:80 +#: templates/part.eventform.php:81 templates/part.showevent.php:77 msgid "Location" msgstr "Τοποθεσία" @@ -526,7 +630,7 @@ msgstr "Τοποθεσία" msgid "Location of the Event" msgstr "Τοποθεσία συμβάντος" -#: templates/part.eventform.php:89 templates/part.showevent.php:88 +#: templates/part.eventform.php:89 templates/part.showevent.php:85 msgid "Description" msgstr "Περιγραφή" @@ -534,84 +638,86 @@ msgstr "Περιγραφή" msgid "Description of the Event" msgstr "Περιγραφή του συμβάντος" -#: templates/part.eventform.php:100 templates/part.showevent.php:98 +#: templates/part.eventform.php:100 templates/part.showevent.php:95 msgid "Repeat" msgstr "Επαναλαμβανόμενο" -#: templates/part.eventform.php:107 templates/part.showevent.php:105 +#: templates/part.eventform.php:107 templates/part.showevent.php:102 msgid "Advanced" msgstr "Για προχωρημένους" -#: templates/part.eventform.php:151 templates/part.showevent.php:149 +#: templates/part.eventform.php:151 templates/part.showevent.php:146 msgid "Select weekdays" msgstr "Επιλογή ημερών εβδομάδας" #: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:162 templates/part.showevent.php:175 +#: templates/part.showevent.php:159 templates/part.showevent.php:172 msgid "Select days" msgstr "Επιλογή ημερών" -#: templates/part.eventform.php:169 templates/part.showevent.php:167 +#: templates/part.eventform.php:169 templates/part.showevent.php:164 msgid "and the events day of year." msgstr "και των ημερών του χρόνου που υπάρχουν συμβάντα." -#: templates/part.eventform.php:182 templates/part.showevent.php:180 +#: templates/part.eventform.php:182 templates/part.showevent.php:177 msgid "and the events day of month." msgstr "και των ημερών του μήνα που υπάρχουν συμβάντα." -#: templates/part.eventform.php:190 templates/part.showevent.php:188 +#: templates/part.eventform.php:190 templates/part.showevent.php:185 msgid "Select months" msgstr "Επιλογή μηνών" -#: templates/part.eventform.php:203 templates/part.showevent.php:201 +#: templates/part.eventform.php:203 templates/part.showevent.php:198 msgid "Select weeks" msgstr "Επιλογή εβδομάδων" -#: templates/part.eventform.php:208 templates/part.showevent.php:206 +#: templates/part.eventform.php:208 templates/part.showevent.php:203 msgid "and the events week of year." msgstr "και των εβδομάδων του χρόνου που υπάρουν συμβάντα." -#: templates/part.eventform.php:214 templates/part.showevent.php:212 +#: templates/part.eventform.php:214 templates/part.showevent.php:209 msgid "Interval" msgstr "Διάστημα" -#: templates/part.eventform.php:220 templates/part.showevent.php:218 +#: templates/part.eventform.php:220 templates/part.showevent.php:215 msgid "End" msgstr "Τέλος" -#: templates/part.eventform.php:233 templates/part.showevent.php:231 +#: templates/part.eventform.php:233 templates/part.showevent.php:228 msgid "occurrences" msgstr "περιστατικά" -#: templates/part.import.php:1 -msgid "Import a calendar file" -msgstr "Εισαγωγή αρχείου ημερολογίου" - -#: templates/part.import.php:6 -msgid "Please choose the calendar" -msgstr "Παρακαλώ επιλέξτε το ημερολόγιο" - -#: templates/part.import.php:10 +#: templates/part.import.php:14 msgid "create a new calendar" msgstr "δημιουργία νέου ημερολογίου" -#: templates/part.import.php:15 +#: templates/part.import.php:17 +msgid "Import a calendar file" +msgstr "Εισαγωγή αρχείου ημερολογίου" + +#: templates/part.import.php:24 +msgid "Please choose a calendar" +msgstr "Παρακαλώ επέλεξε ένα ημερολόγιο" + +#: templates/part.import.php:36 msgid "Name of new calendar" msgstr "Όνομα νέου ημερολογίου" -#: templates/part.import.php:17 +#: templates/part.import.php:44 +msgid "Take an available name!" +msgstr "Επέλεξε ένα διαθέσιμο όνομα!" + +#: templates/part.import.php:45 +msgid "" +"A Calendar with this name already exists. If you continue anyhow, these " +"calendars will be merged." +msgstr "" + +#: templates/part.import.php:47 msgid "Import" msgstr "Εισαγωγή" -#: templates/part.import.php:20 -msgid "Importing calendar" -msgstr "Εισαγωγή ημερολογίου" - -#: templates/part.import.php:23 -msgid "Calendar imported successfully" -msgstr "Το ημερολόγιο εισήχθει επιτυχώς" - -#: templates/part.import.php:24 +#: templates/part.import.php:56 msgid "Close Dialog" msgstr "Κλείσιμο Διαλόγου" @@ -627,15 +733,11 @@ msgstr "Εμφάνισε ένα γεγονός" msgid "No categories selected" msgstr "Δεν επελέγησαν κατηγορίες" -#: templates/part.showevent.php:25 -msgid "Select category" -msgstr "Επιλέξτε κατηγορία" - #: templates/part.showevent.php:37 msgid "of" msgstr "του" -#: templates/part.showevent.php:62 templates/part.showevent.php:70 +#: templates/part.showevent.php:59 templates/part.showevent.php:67 msgid "at" msgstr "στο" @@ -663,9 +765,33 @@ msgstr "12ω" msgid "First day of the week" msgstr "Πρώτη μέρα της εβδομάδας" -#: templates/settings.php:49 -msgid "Calendar CalDAV syncing address:" -msgstr "Διεύθυνση για το συγχρονισμού του ημερολογίου CalDAV:" +#: templates/settings.php:47 +msgid "Cache" +msgstr "Cache" + +#: templates/settings.php:48 +msgid "Clear cache for repeating events" +msgstr "" + +#: templates/settings.php:53 +msgid "Calendar CalDAV syncing addresses" +msgstr "" + +#: templates/settings.php:53 +msgid "more info" +msgstr "περισσότερες πλροφορίες" + +#: templates/settings.php:55 +msgid "Primary address (Kontact et al)" +msgstr "Κύρια Διεύθυνση(Επαφή και άλλα)" + +#: templates/settings.php:57 +msgid "iOS/OS X" +msgstr "iOS/OS X" + +#: templates/settings.php:59 +msgid "Read only iCalendar link(s)" +msgstr " iCalendar link(s) μόνο για ανάγνωση" #: templates/share.dropdown.php:20 msgid "Users" diff --git a/l10n/el/contacts.po b/l10n/el/contacts.po index c5718b30c8..1e03429730 100644 --- a/l10n/el/contacts.po +++ b/l10n/el/contacts.po @@ -4,108 +4,106 @@ # # Translators: # , 2011. +# Dimitris M. , 2012. # Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. # Petros Kyladitis , 2011, 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/language/el/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 08:32+0000\n" +"Last-Translator: Marios Bekatoros <>\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" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/activation.php:19 ajax/updateaddressbook.php:32 +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 msgid "Error (de)activating addressbook." msgstr "Σφάλμα (απ)ενεργοποίησης βιβλίου διευθύνσεων" -#: ajax/addcontact.php:59 +#: ajax/addcontact.php:47 msgid "There was an error adding the contact." msgstr "Σφάλμα κατά την προσθήκη επαφής." -#: ajax/addproperty.php:40 +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "δεν ορίστηκε όνομα στοιχείου" + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "δεν ορίστηκε id" + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "Δε αναγνώστηκε η επαφή" + +#: ajax/addproperty.php:56 msgid "Cannot add empty property." msgstr "Αδύνατη προσθήκη κενής ιδιότητας." -#: ajax/addproperty.php:52 +#: ajax/addproperty.php:67 msgid "At least one of the address fields has to be filled out." msgstr "Πρέπει να συμπληρωθεί τουλάχιστον ένα από τα παιδία διεύθυνσης." -#: ajax/addproperty.php:62 +#: ajax/addproperty.php:76 msgid "Trying to add duplicate property: " msgstr "Προσπάθεια προσθήκης διπλότυπης ιδιότητας:" -#: ajax/addproperty.php:120 -msgid "Error adding contact property." -msgstr "Σφάλμα προσθήκης ιδιότητας επαφής." +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "Σφάλμα στη προσθήκη ιδιότητας επαφής" -#: ajax/categories/categoriesfor.php:15 +#: ajax/categories/categoriesfor.php:17 msgid "No ID provided" -msgstr "Δε δώθηκε ID" +msgstr "Δε δόθηκε ID" -#: ajax/categories/categoriesfor.php:27 +#: ajax/categories/categoriesfor.php:34 msgid "Error setting checksum." msgstr "Λάθος κατά τον ορισμό checksum " -#: ajax/categories/delete.php:29 +#: ajax/categories/delete.php:19 msgid "No categories selected for deletion." msgstr "Δε επελέγησαν κατηγορίες για διαγραφή" -#: ajax/categories/delete.php:36 ajax/categories/rescan.php:28 +#: ajax/categories/delete.php:26 msgid "No address books found." msgstr "Δε βρέθηκε βιβλίο διευθύνσεων" -#: ajax/categories/delete.php:44 ajax/categories/rescan.php:36 +#: ajax/categories/delete.php:34 msgid "No contacts found." msgstr "Δεν βρέθηκαν επαφές" -#: ajax/contactdetails.php:37 +#: ajax/contactdetails.php:31 msgid "Missing ID" msgstr "Λείπει ID" -#: ajax/contactdetails.php:41 +#: ajax/contactdetails.php:36 msgid "Error parsing VCard for ID: \"" msgstr "Σφάλμα κατά την ανάγνωση του VCard για το ID:\"" -#: ajax/createaddressbook.php:18 -msgid "Cannot add addressbook with an empty name." -msgstr "Δε μπορεί να προστεθεί βιβλίο διευθύνσεων με κενό όνομα" - -#: ajax/createaddressbook.php:24 -msgid "Error adding addressbook." -msgstr "Σφάλμα προσθήκης βιβλίου διευθύνσεων." - -#: ajax/createaddressbook.php:30 -msgid "Error activating addressbook." -msgstr "Σφάλμα ενεργοποίησης βιβλίου διευθύνσεων" - -#: ajax/currentphoto.php:34 ajax/oc_photo.php:37 ajax/uploadphoto.php:41 +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 #: ajax/uploadphoto.php:68 msgid "No contact ID was submitted." msgstr "Δε υπεβλήθει ID επαφής" -#: ajax/currentphoto.php:40 +#: ajax/currentphoto.php:36 msgid "Error reading contact photo." msgstr "Σφάλμα ανάγνωσης εικόνας επαφής" -#: ajax/currentphoto.php:52 +#: ajax/currentphoto.php:48 msgid "Error saving temporary file." msgstr "Σφάλμα αποθήκευσης προσωρινού αρχείου" -#: ajax/currentphoto.php:55 +#: ajax/currentphoto.php:51 msgid "The loading photo is not valid." msgstr "Η φορτωμένη φωτογραφία δεν είναι έγκυρη" -#: ajax/deletecard.php:37 ajax/saveproperty.php:58 -msgid "id is not set." -msgstr "δεν ορίστηκε id" - #: ajax/deleteproperty.php:36 msgid "Information about vCard is incorrect. Please reload the page." msgstr "Οι πληροφορίες σχετικά με vCard είναι εσφαλμένες. Παρακαλώ επαναφορτώστε τη σελίδα." @@ -114,328 +112,387 @@ msgstr "Οι πληροφορίες σχετικά με vCard είναι εσφ msgid "Error deleting contact property." msgstr "Σφάλμα διαγραφής ιδιότητας επαφής." -#: ajax/editname.php:37 +#: ajax/editname.php:31 msgid "Contact ID is missing." msgstr "Λείπει ID επαφής" -#: ajax/loadphoto.php:44 -msgid "Missing contact id." -msgstr "Απουσιαζει ID επαφής" - -#: ajax/oc_photo.php:41 +#: ajax/oc_photo.php:32 msgid "No photo path was submitted." msgstr "Δε δόθηκε διαδρομή εικόνας" -#: ajax/oc_photo.php:48 +#: ajax/oc_photo.php:39 msgid "File doesn't exist:" msgstr "Το αρχείο δεν υπάρχει:" -#: ajax/oc_photo.php:54 ajax/oc_photo.php:57 +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 msgid "Error loading image." msgstr "Σφάλμα φόρτωσης εικόνας" -#: ajax/savecrop.php:68 +#: ajax/savecrop.php:67 msgid "Error getting contact object." -msgstr "" +msgstr "Σφάλμα κατά τη λήψη αντικειμένου επαφής" -#: ajax/savecrop.php:75 +#: ajax/savecrop.php:76 msgid "Error getting PHOTO property." -msgstr "" +msgstr "Σφάλμα κατά τη λήψη ιδιοτήτων ΦΩΤΟΓΡΑΦΙΑΣ." -#: ajax/savecrop.php:88 +#: ajax/savecrop.php:93 msgid "Error saving contact." -msgstr "" +msgstr "Σφάλμα κατά την αποθήκευση επαφής." -#: ajax/savecrop.php:98 +#: ajax/savecrop.php:103 msgid "Error resizing image" -msgstr "" +msgstr "Σφάλμα κατά την αλλαγή μεγέθους εικόνας" -#: ajax/savecrop.php:101 +#: ajax/savecrop.php:106 msgid "Error cropping image" -msgstr "" +msgstr "Σφάλμα κατά την περικοπή εικόνας" -#: ajax/savecrop.php:104 +#: ajax/savecrop.php:109 msgid "Error creating temporary image" -msgstr "" +msgstr "Σφάλμα κατά την δημιουργία προσωρινής εικόνας" -#: ajax/savecrop.php:107 +#: ajax/savecrop.php:112 msgid "Error finding image: " -msgstr "" +msgstr "Σφάλμα κατά την εύρεση της εικόνας: " -#: ajax/saveproperty.php:55 -msgid "element name is not set." -msgstr "δεν ορίστηκε όνομα στοιχείου" - -#: ajax/saveproperty.php:61 +#: ajax/saveproperty.php:40 msgid "checksum is not set." msgstr "δε ορίστηκε checksum " -#: ajax/saveproperty.php:78 +#: ajax/saveproperty.php:59 msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Οι πληροφορίες για τη vCard είναι λανθασμένες.Παρακαλώ ξαναφορτώστε τη σελίδα:" +msgstr "Οι πληροφορίες για τη vCard είναι λανθασμένες.Παρακαλώ ξαναφορτώστε τη σελίδα: " -#: ajax/saveproperty.php:83 +#: ajax/saveproperty.php:64 msgid "Something went FUBAR. " -msgstr "Κάτι χάθηκε στο άγνωστο" +msgstr "Κάτι χάθηκε στο άγνωστο. " -#: ajax/saveproperty.php:150 +#: ajax/saveproperty.php:133 msgid "Error updating contact property." msgstr "Σφάλμα ενημέρωσης ιδιότητας επαφής." -#: ajax/updateaddressbook.php:20 +#: ajax/updateaddressbook.php:21 msgid "Cannot update addressbook with an empty name." msgstr "Δε μπορεί να γίνει αλλαγή βιβλίου διευθύνσεων χωρίς όνομα" -#: ajax/updateaddressbook.php:26 +#: ajax/updateaddressbook.php:25 msgid "Error updating addressbook." msgstr "Σφάλμα ενημέρωσης βιβλίου διευθύνσεων." -#: ajax/uploadimport.php:46 ajax/uploadimport.php:76 +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 msgid "Error uploading contacts to storage." msgstr "Σφάλμα κατά την αποθήκευση επαφών" -#: ajax/uploadimport.php:59 ajax/uploadphoto.php:77 +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο ανέβηκε με επιτυχία " -#: ajax/uploadimport.php:60 ajax/uploadphoto.php:78 +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Το μέγεθος του αρχείου ξεπερνάει το upload_max_filesize του php.ini" -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:79 +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα" -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:80 +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο ανέβηκε μερικώς" -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:81 +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 msgid "No file was uploaded" msgstr "Δεν ανέβηκε κάποιο αρχείο" -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:82 +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:102 +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 msgid "Couldn't save temporary image: " -msgstr "" +msgstr "Δεν ήταν δυνατή η αποθήκευση της προσωρινής εικόνας: " -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:105 +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 msgid "Couldn't load temporary image: " -msgstr "" +msgstr "Δεν ήταν δυνατή η φόρτωση της προσωρινής εικόνας: " #: ajax/uploadphoto.php:71 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: appinfo/app.php:17 templates/settings.php:3 +#: appinfo/app.php:19 templates/settings.php:3 msgid "Contacts" msgstr "Επαφές" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Sorry, this functionality has not been implemented yet" -msgstr "" +msgstr "Λυπούμαστε, αυτή η λειτουργία δεν έχει υλοποιηθεί ακόμα" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Not implemented" -msgstr "" +msgstr "Δεν έχει υλοποιηθεί" -#: js/contacts.js:29 +#: js/contacts.js:58 msgid "Couldn't get a valid address." -msgstr "" +msgstr "Αδυναμία λήψης έγκυρης διεύθυνσης" -#: js/contacts.js:29 js/contacts.js:334 js/contacts.js:341 js/contacts.js:355 -#: js/contacts.js:393 js/contacts.js:399 js/contacts.js:565 js/contacts.js:605 -#: js/contacts.js:631 js/contacts.js:668 js/contacts.js:747 js/contacts.js:753 -#: js/contacts.js:765 js/contacts.js:799 js/contacts.js:1056 -#: js/contacts.js:1064 js/contacts.js:1073 js/contacts.js:1130 -#: js/contacts.js:1146 js/contacts.js:1161 js/contacts.js:1173 -#: js/contacts.js:1196 js/contacts.js:1449 js/contacts.js:1457 -#: js/contacts.js:1483 js/contacts.js:1494 js/contacts.js:1509 -#: js/contacts.js:1526 js/contacts.js:1596 js/contacts.js:1644 -#: js/contacts.js:1654 js/contacts.js:1657 +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 msgid "Error" -msgstr "" +msgstr "Σφάλμα" -#: js/contacts.js:364 -msgid "Are you sure you want to delete this contact?" -msgstr "" - -#: js/contacts.js:364 -msgid "Warning" -msgstr "" - -#: js/contacts.js:605 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:631 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:747 js/contacts.js:765 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:781 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1056 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1064 js/contacts.js:1449 js/contacts.js:1634 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1119 -msgid "Select photo" -msgstr "" - -#: js/contacts.js:1257 js/contacts.js:1290 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1305 templates/part.importaddressbook.php:25 -msgid "Drop a VCF file to import contacts." -msgstr "Εισάγεται ένα VCF αρχείο για εισαγωγή επαφών" - -#: js/contacts.js:1475 -msgid "Import done. Success/Failure: " -msgstr "" - -#: js/contacts.js:1476 -msgid "OK" -msgstr "" - -#: js/contacts.js:1494 -msgid "Displayname cannot be empty." -msgstr "" - -#: js/contacts.js:1634 -msgid "Upload too large" -msgstr "" - -#: js/contacts.js:1638 -msgid "Only image files can be used as profile picture." -msgstr "" - -#: js/contacts.js:1638 -msgid "Wrong file type" -msgstr "" - -#: js/contacts.js:1644 -msgid "" -"Your browser doesn't support AJAX upload. Please click on the profile " -"picture to select a photo to upload." -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: lib/app.php:30 -msgid "Addressbook not found." -msgstr "Δε βρέθηκε βιβλίο διευθύνσεων" - -#: lib/app.php:34 -msgid "This is not your addressbook." -msgstr "Αυτό δεν είναι το βιβλίο διευθύνσεων σας." - -#: lib/app.php:45 -msgid "Contact could not be found." -msgstr "Η επαφή δεν μπόρεσε να βρεθεί." - -#: lib/app.php:101 templates/part.contact.php:109 -msgid "Address" -msgstr "Διεύθυνση" - -#: lib/app.php:102 -msgid "Telephone" -msgstr "Τηλέφωνο" - -#: lib/app.php:103 templates/part.contact.php:108 -msgid "Email" -msgstr "Email" - -#: lib/app.php:104 templates/part.contact.php:33 templates/part.contact.php:34 -#: templates/part.contact.php:104 -msgid "Organization" -msgstr "Οργανισμός" - -#: lib/app.php:116 lib/app.php:123 lib/app.php:133 -msgid "Work" -msgstr "Εργασία" - -#: lib/app.php:117 lib/app.php:121 lib/app.php:134 -msgid "Home" -msgstr "Σπίτι" - -#: lib/app.php:122 -msgid "Mobile" -msgstr "Κινητό" - -#: lib/app.php:124 -msgid "Text" -msgstr "Κείμενο" - -#: lib/app.php:125 -msgid "Voice" -msgstr "Ομιλία" - -#: lib/app.php:126 -msgid "Message" -msgstr "Μήνυμα " - -#: lib/app.php:127 -msgid "Fax" -msgstr "Φαξ" - -#: lib/app.php:128 -msgid "Video" -msgstr "Βίντεο" - -#: lib/app.php:129 -msgid "Pager" -msgstr "Βομβητής" - -#: lib/app.php:135 -msgid "Internet" -msgstr "Διαδίκτυο" - -#: lib/hooks.php:79 -msgid "{name}'s Birthday" -msgstr "{name} έχει Γενέθλια" - -#: lib/search.php:22 +#: js/contacts.js:389 lib/search.php:15 msgid "Contact" msgstr "Επαφή" -#: templates/index.php:13 +#: js/contacts.js:389 +msgid "New" +msgstr "Νέο" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "Νέα επαφή" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "Το πεδίο δεν πρέπει να είναι άδειο." + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "Αδύνατο να μπουν σε σειρά τα στοιχεία" + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "το 'deleteProperty' καλέστηκε χωρίς without type argument. Παρακαλώ αναφέρατε στο bugs.owncloud.org" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "Αλλαγή ονόματος" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "Δεν επιλέχτηκαν αρχεία για μεταφόρτωση" + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "Το αρχείο που προσπαθείτε να ανεβάσετε υπερβαίνει το μέγιστο μέγεθος για τις προσθήκες αρχείων σε αυτόν τον server." + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "Επιλογή τύπου" + +#: js/loader.js:49 +msgid "Result: " +msgstr "Αποτέλεσμα: " + +#: js/loader.js:49 +msgid " imported, " +msgstr " εισάγεται," + +#: js/loader.js:49 +msgid " failed." +msgstr " απέτυχε." + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "Δε βρέθηκε βιβλίο διευθύνσεων" + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "Αυτό δεν είναι το βιβλίο διευθύνσεων σας." + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "Η επαφή δεν μπόρεσε να βρεθεί." + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "Διεύθυνση" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "Τηλέφωνο" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "Email" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "Οργανισμός" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "Εργασία" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "Σπίτι" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "Κινητό" + +#: lib/app.php:123 +msgid "Text" +msgstr "Κείμενο" + +#: lib/app.php:124 +msgid "Voice" +msgstr "Ομιλία" + +#: lib/app.php:125 +msgid "Message" +msgstr "Μήνυμα" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Φαξ" + +#: lib/app.php:127 +msgid "Video" +msgstr "Βίντεο" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Βομβητής" + +#: lib/app.php:134 +msgid "Internet" +msgstr "Διαδίκτυο" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "Γενέθλια" + +#: lib/app.php:170 +msgid "Business" +msgstr "Επιχείρηση" + +#: lib/app.php:171 +msgid "Call" +msgstr "Κάλεσε" + +#: lib/app.php:172 +msgid "Clients" +msgstr "Πελάτες" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "Προμηθευτής" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "Διακοπές" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "Ιδέες" + +#: lib/app.php:176 +msgid "Journey" +msgstr "Ταξίδι" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "Ιωβηλαίο" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "Συνάντηση" + +#: lib/app.php:179 +msgid "Other" +msgstr "Άλλο" + +#: lib/app.php:180 +msgid "Personal" +msgstr "Προσωπικό" + +#: lib/app.php:181 +msgid "Projects" +msgstr "Έργα" + +#: lib/app.php:182 +msgid "Questions" +msgstr "Ερωτήσεις" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "{name} έχει Γενέθλια" + +#: templates/index.php:15 msgid "Add Contact" msgstr "Προσθήκη επαφής" -#: templates/index.php:14 +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "Εισαγωγή" + +#: templates/index.php:20 msgid "Addressbooks" msgstr "Βιβλία διευθύνσεων" +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "Κλείσιμο " + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "Συντομεύσεις πλητρολογίου" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "Πλοήγηση" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "Επόμενη επαφή στη λίστα" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "Προηγούμενη επαφή στη λίστα" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "Επόμενο/προηγούμενο βιβλίο διευθύνσεων" + +#: templates/index.php:54 +msgid "Actions" +msgstr "Ενέργειες" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "Ανανέωσε τη λίστα επαφών" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "Προσθήκη νέας επαφής" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "Προσθήκη νέου βιβλίου επαφών" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "Διαγραφή τρέχουσας επαφής" + #: templates/part.chooseaddressbook.php:1 msgid "Configure Address Books" msgstr "Ρυθμίστε το βιβλίο διευθύνσεων " @@ -444,11 +501,7 @@ msgstr "Ρυθμίστε το βιβλίο διευθύνσεων " msgid "New Address Book" msgstr "Νέο βιβλίο διευθύνσεων" -#: templates/part.chooseaddressbook.php:17 -msgid "Import from VCF" -msgstr "Εισαγωγή από VCF αρχείο" - -#: templates/part.chooseaddressbook.php:22 +#: templates/part.chooseaddressbook.php:21 #: templates/part.chooseaddressbook.rowfields.php:8 msgid "CardDav Link" msgstr "Σύνδεσμος CardDav" @@ -462,186 +515,195 @@ msgid "Edit" msgstr "Επεξεργασία" #: templates/part.chooseaddressbook.rowfields.php:17 -#: templates/part.contact.php:34 templates/part.contact.php:36 -#: templates/part.contact.php:38 templates/part.contact.php:42 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 msgid "Delete" msgstr "Διαγραφή" -#: templates/part.contact.php:12 -msgid "Download contact" -msgstr "Λήψη επαφής" - -#: templates/part.contact.php:13 -msgid "Delete contact" -msgstr "Διαγραφή επαφής" - -#: templates/part.contact.php:19 +#: templates/part.contact.php:16 msgid "Drop photo to upload" msgstr "Ρίξε μια φωτογραφία για ανέβασμα" -#: templates/part.contact.php:29 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Format custom, Όνομα, Επώνυμο, Αντίστροφο ή Αντίστροφο με κόμμα" - -#: templates/part.contact.php:30 -msgid "Edit name details" -msgstr "Αλλάξτε τις λεπτομέρειες ονόματος" - -#: templates/part.contact.php:35 templates/part.contact.php:105 -msgid "Nickname" -msgstr "Παρατσούκλι" - -#: templates/part.contact.php:36 -msgid "Enter nickname" -msgstr "Εισάγεται παρατσούκλι" - -#: templates/part.contact.php:37 templates/part.contact.php:106 -msgid "Birthday" -msgstr "Γενέθλια" - -#: templates/part.contact.php:38 -msgid "dd-mm-yyyy" -msgstr "ΗΗ-ΜΜ-ΕΕΕΕ" - -#: templates/part.contact.php:39 templates/part.contact.php:111 -msgid "Groups" -msgstr "Ομάδες" - -#: templates/part.contact.php:41 -msgid "Separate groups with commas" -msgstr "Διαχώρισε τις ομάδες με κόμμα " - -#: templates/part.contact.php:42 -msgid "Edit groups" -msgstr "Επεξεργασία ομάδων" - -#: templates/part.contact.php:55 templates/part.contact.php:69 -msgid "Preferred" -msgstr "Προτιμώμενο" - -#: templates/part.contact.php:56 -msgid "Please specify a valid email address." -msgstr "Παρακαλώ εισήγαγε μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου" - -#: templates/part.contact.php:56 -msgid "Enter email address" -msgstr "Εισήγαγε διεύθυνση ηλεκτρονικού ταχυδρομείου" - -#: templates/part.contact.php:60 -msgid "Mail to address" -msgstr "Αποστολή σε διεύθυνση" - -#: templates/part.contact.php:61 -msgid "Delete email address" -msgstr "Διαγραφή διεύθυνση email" - -#: templates/part.contact.php:70 -msgid "Enter phone number" -msgstr "Εισήγαγε αριθμό τηλεφώνου" - -#: templates/part.contact.php:74 -msgid "Delete phone number" -msgstr "Διέγραψε αριθμό τηλεφώνου" - -#: templates/part.contact.php:84 -msgid "View on map" -msgstr "Προβολή στο χάρτη" - -#: templates/part.contact.php:84 -msgid "Edit address details" -msgstr "Επεξεργασία λεπτομερειών διεύθυνσης" - -#: templates/part.contact.php:95 -msgid "Add notes here." -msgstr "Πρόσθεσε τις σημειώσεις εδώ" - -#: templates/part.contact.php:101 -msgid "Add field" -msgstr "Προσθήκη πεδίου" - -#: templates/part.contact.php:103 -msgid "Profile picture" -msgstr "Φωτογραφία προφίλ" - -#: templates/part.contact.php:107 -msgid "Phone" -msgstr "Τηλέφωνο" - -#: templates/part.contact.php:110 -msgid "Note" -msgstr "Σημείωση" - -#: templates/part.contactphoto.php:8 +#: templates/part.contact.php:18 msgid "Delete current photo" msgstr "Διαγραφή τρέχουσας φωτογραφίας" -#: templates/part.contactphoto.php:9 +#: templates/part.contact.php:19 msgid "Edit current photo" msgstr "Επεξεργασία τρέχουσας φωτογραφίας" -#: templates/part.contactphoto.php:10 +#: templates/part.contact.php:20 msgid "Upload new photo" msgstr "Ανέβασε νέα φωτογραφία" -#: templates/part.contactphoto.php:11 +#: templates/part.contact.php:21 msgid "Select photo from ownCloud" msgstr "Επέλεξε φωτογραφία από το ownCloud" -#: templates/part.cropphoto.php:64 -msgid "The temporary image has been removed from cache." -msgstr "" +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr "Format custom, Όνομα, Επώνυμο, Αντίστροφο ή Αντίστροφο με κόμμα" -#: templates/part.edit_address_dialog.php:9 +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "Αλλάξτε τις λεπτομέρειες ονόματος" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "Παρατσούκλι" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "Εισάγετε παρατσούκλι" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" +msgstr "Ιστότοπος" + +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "http://www.somesite.com" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "Πήγαινε στον ιστότοπο" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "ΗΗ-ΜΜ-ΕΕΕΕ" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "Ομάδες" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "Διαχώρισε τις ομάδες με κόμμα " + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "Επεξεργασία ομάδων" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "Προτιμώμενο" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "Παρακαλώ εισήγαγε μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου" + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "Εισήγαγε διεύθυνση ηλεκτρονικού ταχυδρομείου" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "Αποστολή σε διεύθυνση" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "Διαγραφή διεύθυνση email" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "Εισήγαγε αριθμό τηλεφώνου" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "Διέγραψε αριθμό τηλεφώνου" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "Προβολή στο χάρτη" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "Επεξεργασία λεπτομερειών διεύθυνσης" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "Πρόσθεσε τις σημειώσεις εδώ" + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "Προσθήκη πεδίου" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "Τηλέφωνο" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "Σημείωση" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "Λήψη επαφής" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "Διαγραφή επαφής" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "Η προσωρινή εικόνα αφαιρέθηκε από την κρυφή μνήμη." + +#: templates/part.edit_address_dialog.php:6 msgid "Edit address" msgstr "Επεξεργασία διεύθυνσης" -#: templates/part.edit_address_dialog.php:14 +#: templates/part.edit_address_dialog.php:10 msgid "Type" msgstr "Τύπος" -#: templates/part.edit_address_dialog.php:22 -#: templates/part.edit_address_dialog.php:25 +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 msgid "PO Box" msgstr "Ταχ. Θυρίδα" -#: templates/part.edit_address_dialog.php:29 -#: templates/part.edit_address_dialog.php:32 +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "Διεύθυνση οδού" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "Οδός και αριθμός" + +#: templates/part.edit_address_dialog.php:30 msgid "Extended" msgstr "Εκτεταμένη" -#: templates/part.edit_address_dialog.php:35 -#: templates/part.edit_address_dialog.php:38 -msgid "Street" -msgstr "Οδός" +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "Αριθμός διαμερίσματος" -#: templates/part.edit_address_dialog.php:41 -#: templates/part.edit_address_dialog.php:44 +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 msgid "City" msgstr "Πόλη" -#: templates/part.edit_address_dialog.php:47 -#: templates/part.edit_address_dialog.php:50 +#: templates/part.edit_address_dialog.php:42 msgid "Region" msgstr "Περιοχή" -#: templates/part.edit_address_dialog.php:53 -#: templates/part.edit_address_dialog.php:56 +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "Π.χ. Πολιτεία ή επαρχεία" + +#: templates/part.edit_address_dialog.php:48 msgid "Zipcode" msgstr "Τ.Κ." -#: templates/part.edit_address_dialog.php:59 -#: templates/part.edit_address_dialog.php:62 +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "Ταχυδρομικός Κωδικός" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 msgid "Country" msgstr "Χώρα" -#: templates/part.edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Επεξεργασία κατηγορίας" - -#: templates/part.edit_categories_dialog.php:14 -msgid "Add" -msgstr "Προσθήκη" - #: templates/part.edit_name_dialog.php:16 msgid "Addressbook" msgstr "Βιβλίο διευθύνσεων" @@ -732,7 +794,7 @@ msgstr "Επεξεργασία βιβλίου διευθύνσεων" #: templates/part.editaddressbook.php:12 msgid "Displayname" -msgstr "Προβαλόμενο όνομα" +msgstr "Προβαλλόμενο όνομα" #: templates/part.editaddressbook.php:23 msgid "Active" @@ -747,7 +809,6 @@ msgid "Submit" msgstr "Καταχώρηση" #: templates/part.editaddressbook.php:30 -#: templates/part.importaddressbook.php:34 msgid "Cancel" msgstr "Ακύρωση" @@ -767,33 +828,10 @@ msgstr "Δημιουργία νέου βιβλίου διευθύνσεων" msgid "Name of new addressbook" msgstr "Όνομα νέου βιβλίου διευθύνσεων" -#: templates/part.import.php:17 -msgid "Import" -msgstr "Εισαγωγή" - #: templates/part.import.php:20 msgid "Importing contacts" msgstr "Εισαγωγή επαφών" -#: templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/part.importaddressbook.php:12 -msgid "" -"Currently this import function doesn't work while encryption is enabled.
Please upload your VCF file with the file manager and click on it to " -"import." -msgstr "" - -#: templates/part.importaddressbook.php:16 -msgid "Select address book to import to:" -msgstr "Επέλεξε σε ποιο βιβλίο διευθύνσεων για εισαγωγή:" - -#: templates/part.importaddressbook.php:26 -msgid "Select from HD" -msgstr "Επιλογή από HD" - #: templates/part.no_contacts.php:2 msgid "You have no contacts in your addressbook." msgstr "Δεν έχεις επαφές στο βιβλίο διευθύνσεων" @@ -806,6 +844,18 @@ msgstr "Προσθήκη επαφής" msgid "Configure addressbooks" msgstr "Ρύθμισε το βιβλίο διευθύνσεων" +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "Επέλεξε βιβλίο διευθύνσεων" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "Εισαγωγή ονόματος" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "Εισαγωγή περιγραφής" + #: templates/settings.php:4 msgid "CardDAV syncing addresses" msgstr "συγχρονισμός διευθύνσεων μέσω CardDAV " @@ -821,3 +871,7 @@ msgstr "Κύρια διεύθυνση" #: templates/settings.php:8 msgid "iOS/OS X" msgstr "iOS/OS X" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "vCard σύνδεσμος(οι) φάκελου μόνο για ανάγνωση" diff --git a/l10n/el/files.po b/l10n/el/files.po index 87cbcd3e9b..abadb91274 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -3,49 +3,50 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dimitris M. , 2012. # Marios Bekatoros <>, 2012. # Petros Kyladitis , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/language/el/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 08:08+0000\n" +"Last-Translator: Marios Bekatoros <>\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" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει λάθος, το αρχείο μεταφορτώθηκε επιτυχώς" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Το αρχείο που μεταφορτώθηκε υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο μεταφορώθηκε μόνο εν μέρει" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Το αρχείο δεν μεταφορτώθηκε" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Λείπει ένας προσωρινός φάκελος" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Η εγγραφή στο δίσκο απέτυχε" @@ -53,57 +54,65 @@ msgstr "Η εγγραφή στο δίσκο απέτυχε" msgid "Files" msgstr "Αρχεία" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "Ακύρωση Διαμοιρασμού" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Διαγραφή" + #: js/filelist.js:186 msgid "undo deletion" -msgstr "" +msgstr "αναίρεση διαγραφής" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Σφάλμα Μεταφόρτωσης" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Εν αναμονή" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Η μεταφόρτωση ακυρώθηκε." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "φάκελος" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "φάκελοι" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "αρχείο" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "αρχεία" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +182,6 @@ msgstr "Διαμοίρασε" msgid "Download" msgstr "Λήψη" -#: templates/index.php:56 -msgid "Delete" -msgstr "Διαγραφή" - #: templates/index.php:64 msgid "Upload too large" msgstr "Πολύ μεγάλο το αρχείο προς μεταφόρτωση" diff --git a/l10n/el/gallery.po b/l10n/el/gallery.po index 71bb2bf4bc..57be7acc26 100644 --- a/l10n/el/gallery.po +++ b/l10n/el/gallery.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dimitris M. , 2012. # Efstathios Iosifidis , 2012. # Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. @@ -10,71 +11,35 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/language/el/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 08:11+0000\n" +"Last-Translator: Marios Bekatoros <>\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" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:37 +#: appinfo/app.php:39 msgid "Pictures" msgstr "Εικόνες" -#: js/album_cover.js:44 +#: js/pictures.js:12 msgid "Share gallery" -msgstr "" +msgstr "Κοινοποίηση συλλογής" -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 +#: js/pictures.js:32 msgid "Error: " -msgstr "" +msgstr "Σφάλμα: " -#: js/album_cover.js:64 js/album_cover.js:100 +#: js/pictures.js:32 msgid "Internal error" -msgstr "" +msgstr "Εσωτερικό σφάλμα" -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Ρυθμίσεις" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Επανασάρωση" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Διακοπή" - -#: templates/index.php:18 -msgid "Share" -msgstr "Κοινοποίηση" +#: templates/index.php:27 +msgid "Slideshow" +msgstr "Προβολή Διαφανειών" #: templates/view_album.php:19 msgid "Back" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 50279c5c14..8a66091272 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dimitris M. , 2012. # Efstathios Iosifidis , 2012. # , 2012. # Marios Bekatoros <>, 2012. @@ -12,10 +13,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/language/el/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -24,65 +25,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Το Email αποθηκεύτηκε " #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Μη έγκυρο email" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "Το OpenID άλλαξε" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Μη έγκυρο αίτημα" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Η γλώσσα άλλαξε" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Απενεργοποίηση" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Ενεργοποίηση" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Αποθήκευση..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__όνομα_γλώσσας__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "Προειδοποίηση Ασφαλείας" + +#: templates/admin.php:28 msgid "Log" msgstr "Αρχείο καταγραφής" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Περισσότερο" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Πρόσθεσε τη δικιά σου εφαρμογή " -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Επιλέξτε μια εφαρμογή" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Η σελίδα εφαρμογών στο apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-με άδεια" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "από" @@ -174,34 +183,42 @@ msgstr "Βοηθήστε στην μετάφραση" msgid "use this address to connect to your ownCloud in your file manager" msgstr "χρησιμοποιήστε αυτή τη διεύθυνση για να συνδεθείτε στο ownCloud σας από το διαχειριστή αρχείων σας" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Όνομα" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Κωδικός" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Ομάδες" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Δημιουργία" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Προεπιλεγμένο όριο" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Άλλα" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Σύνολο χώρου" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Διαγραφή" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index eadd0fca66..662744f091 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Esperanto (http://www.transifex.net/projects/p/owncloud/language/eo/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -20,65 +20,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "La retpoŝtadreso konserviĝis" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Nevalida retpoŝtadreso" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "La agordo de OpenID estas ŝanĝita" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Nevalida peto" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "La lingvo estas ŝanĝita" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Malkapabligi" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Kapabligi" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Konservante..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Esperanto" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Registro" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Pli" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Aldonu vian aplikaĵon" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Elekti aplikaĵon" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-permesila" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "de" @@ -170,34 +178,42 @@ msgstr "Helpu traduki" msgid "use this address to connect to your ownCloud in your file manager" msgstr "uzu ĉi tiun adreson por konektiĝi al via ownCloud per via dosieradministrilo" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nomo" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Pasvorto" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupoj" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Krei" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Defaŭlta kvoto" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Alia" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Kvoto" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Forigi" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index d594551c6e..194013f4b0 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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-07-26 02:01+0200\n" -"PO-Revision-Date: 2012-07-25 23:06+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" @@ -40,6 +40,10 @@ msgstr "OpenID cambiado" msgid "Invalid request" msgstr "Solicitud no válida" +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Idioma cambiado" @@ -56,7 +60,7 @@ msgstr "Activar" msgid "Saving..." msgstr "Salvando.." -#: personal.php:41 personal.php:42 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Castellano" @@ -180,34 +184,42 @@ msgstr "Ayúdanos a traducir" msgid "use this address to connect to your ownCloud in your file manager" msgstr "utiliza esta dirección para conectar a tu ownCloud desde tu gestor de archivos" -#: templates/users.php:15 templates/users.php:60 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nombre" -#: templates/users.php:17 templates/users.php:61 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Contraseña" -#: templates/users.php:19 templates/users.php:62 templates/users.php:78 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupos" -#: templates/users.php:25 +#: templates/users.php:32 msgid "Create" msgstr "Crear" -#: templates/users.php:28 +#: templates/users.php:35 msgid "Default Quota" msgstr "Cuota predeterminada" -#: templates/users.php:47 templates/users.php:103 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Otro" -#: templates/users.php:63 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Cuota" -#: templates/users.php:110 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 6b303c8c23..e9ec42e530 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/language/et_EE/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,65 +21,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Kiri on salvestatud" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Vigane e-post" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID on muudetud" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Vigane päring" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Keel on muudetud" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Lülita välja" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Lülita sisse" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Salvestamine..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Eesti" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Logi" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Veel" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Lisa oma rakendus" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Vali programm" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Vaata rakenduste lehte aadressil apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-litsenseeritud" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "kelle poolt" @@ -171,34 +179,42 @@ msgstr "Aita tõlkida" msgid "use this address to connect to your ownCloud in your file manager" msgstr "kasuta seda aadressi oma ownCloudiga ühendamiseks failihalduriga" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nimi" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Parool" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupid" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Lisa" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Vaikimisi kvoot" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Muu" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Mahupiir" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Kustuta" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index cca5da2a9c..5b5b358bca 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Basque (http://www.transifex.net/projects/p/owncloud/language/eu/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -22,65 +22,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Eposta gorde da" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Baliogabeko eposta" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID aldatuta" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Baliogabeko eskaria" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Hizkuntza aldatuta" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Ez-gaitu" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Gaitu" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Gordetzen..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Euskera" -#: templates/admin.php:13 -msgid "Log" +#: templates/admin.php:14 +msgid "Security Warning" msgstr "" -#: templates/admin.php:40 +#: templates/admin.php:28 +msgid "Log" +msgstr "Egunkaria" + +#: templates/admin.php:55 msgid "More" msgstr "Gehiago" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Gehitu zure aplikazioa" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Aukeratu programa bat" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Ikusi programen orria apps.owncloud.com en" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "lizentziarekin" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr " Egilea:" @@ -172,34 +180,42 @@ msgstr "Lagundu itzultzen" msgid "use this address to connect to your ownCloud in your file manager" msgstr "erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Izena" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Pasahitza" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Taldeak" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Sortu" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" -msgstr "" +msgstr "Kuota lehentsia" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Besteak" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Kuota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Ezabatu" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 1ee3d62cdb..ab1c42e295 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Persian (http://www.transifex.net/projects/p/owncloud/language/fa/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,65 +20,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "ایمیل ذخیره شد" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "ایمیل غیر قابل قبول" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID تغییر کرد" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "درخواست غیر قابل قبول" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "زبان تغییر کرد" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "غیرفعال" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "فعال" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "درحال ذخیره ..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "بیشتر" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "برنامه خود را بیافزایید" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "یک برنامه انتخاب کنید" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "صفحه این اٌپ را در apps.owncloud.com ببینید" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "مجوزنامه" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "به وسیله" @@ -170,34 +178,42 @@ msgstr "به ترجمه آن کمک کنید" msgid "use this address to connect to your ownCloud in your file manager" msgstr "از این نشانی برای وصل شدن به ابرهایتان در مدیرپرونده استفاده کنید" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "نام" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "گذرواژه" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "گروه ها" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "ایجاد کردن" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "سهم پیش فرض" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "سایر" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "سهم" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "پاک کردن" diff --git a/l10n/fi_FI/calendar.po b/l10n/fi_FI/calendar.po index 17475e37a0..db9bb175eb 100644 --- a/l10n/fi_FI/calendar.po +++ b/l10n/fi_FI/calendar.po @@ -10,21 +10,29 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Finnish (Finland) (http://www.transifex.net/projects/p/owncloud/language/fi_FI/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 10: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" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/categories/rescan.php:28 +#: ajax/cache/status.php:19 +msgid "Not all calendars are completely cached" +msgstr "" + +#: ajax/cache/status.php:21 +msgid "Everything seems to be completely cached" +msgstr "" + +#: ajax/categories/rescan.php:29 msgid "No calendars found." msgstr "Kalentereita ei löytynyt" -#: ajax/categories/rescan.php:36 +#: ajax/categories/rescan.php:37 msgid "No events found." msgstr "Tapahtumia ei löytynyt." @@ -32,28 +40,42 @@ msgstr "Tapahtumia ei löytynyt." msgid "Wrong calendar" msgstr "Väärä kalenteri" +#: ajax/import/dropimport.php:29 ajax/import/import.php:64 +msgid "" +"The file contained either no events or all events are already saved in your " +"calendar." +msgstr "" + +#: ajax/import/dropimport.php:31 ajax/import/import.php:67 +msgid "events has been saved in the new calendar" +msgstr "" + +#: ajax/import/import.php:56 +msgid "Import failed" +msgstr "Tuonti epäonnistui" + +#: ajax/import/import.php:69 +msgid "events has been saved in your calendar" +msgstr "tapahtumaa on tallennettu kalenteriisi" + #: ajax/settings/guesstimezone.php:25 msgid "New Timezone:" msgstr "Uusi aikavyöhyke:" -#: ajax/settings/settimezone.php:22 +#: ajax/settings/settimezone.php:23 msgid "Timezone changed" msgstr "Aikavyöhyke vaihdettu" -#: ajax/settings/settimezone.php:24 +#: ajax/settings/settimezone.php:25 msgid "Invalid request" msgstr "Virheellinen pyyntö" -#: appinfo/app.php:19 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:31 +#: appinfo/app.php:35 templates/calendar.php:15 +#: templates/part.eventform.php:33 templates/part.showevent.php:33 #: templates/settings.php:12 msgid "Calendar" msgstr "Kalenteri" -#: js/calendar.js:93 -msgid "Deletion failed" -msgstr "" - #: js/calendar.js:828 msgid "ddd" msgstr "" @@ -78,254 +100,335 @@ msgstr "" msgid "dddd, MMM d, yyyy" msgstr "" -#: lib/app.php:125 +#: lib/app.php:121 msgid "Birthday" msgstr "Syntymäpäivä" -#: lib/app.php:126 +#: lib/app.php:122 msgid "Business" msgstr "" -#: lib/app.php:127 +#: lib/app.php:123 msgid "Call" msgstr "Ota yhteyttä" -#: lib/app.php:128 +#: lib/app.php:124 msgid "Clients" msgstr "Asiakkaat" -#: lib/app.php:129 +#: lib/app.php:125 msgid "Deliverer" msgstr "Toimittaja" -#: lib/app.php:130 +#: lib/app.php:126 msgid "Holidays" msgstr "Vapaapäivät" -#: lib/app.php:131 +#: lib/app.php:127 msgid "Ideas" msgstr "Ideat" -#: lib/app.php:132 +#: lib/app.php:128 msgid "Journey" msgstr "Matkustus" -#: lib/app.php:133 +#: lib/app.php:129 msgid "Jubilee" msgstr "Vuosipäivät" -#: lib/app.php:134 +#: lib/app.php:130 msgid "Meeting" msgstr "Tapaamiset" -#: lib/app.php:135 +#: lib/app.php:131 msgid "Other" msgstr "Muut" -#: lib/app.php:136 +#: lib/app.php:132 msgid "Personal" msgstr "Henkilökohtainen" -#: lib/app.php:137 +#: lib/app.php:133 msgid "Projects" msgstr "Projektit" -#: lib/app.php:138 +#: lib/app.php:134 msgid "Questions" msgstr "Kysymykset" -#: lib/app.php:139 +#: lib/app.php:135 msgid "Work" msgstr "Työ" -#: lib/app.php:380 +#: lib/app.php:351 lib/app.php:361 +msgid "by" +msgstr "" + +#: lib/app.php:359 lib/app.php:399 msgid "unnamed" msgstr "nimetön" -#: lib/object.php:330 +#: lib/import.php:184 templates/calendar.php:12 +#: templates/part.choosecalendar.php:22 +msgid "New Calendar" +msgstr "Uusi kalenteri" + +#: lib/object.php:372 msgid "Does not repeat" msgstr "Ei toistoa" -#: lib/object.php:331 +#: lib/object.php:373 msgid "Daily" msgstr "Päivittäin" -#: lib/object.php:332 +#: lib/object.php:374 msgid "Weekly" msgstr "Viikottain" -#: lib/object.php:333 +#: lib/object.php:375 msgid "Every Weekday" msgstr "Arkipäivisin" -#: lib/object.php:334 +#: lib/object.php:376 msgid "Bi-Weekly" msgstr "Joka toinen viikko" -#: lib/object.php:335 +#: lib/object.php:377 msgid "Monthly" msgstr "Kuukausittain" -#: lib/object.php:336 +#: lib/object.php:378 msgid "Yearly" msgstr "Vuosittain" -#: lib/object.php:343 +#: lib/object.php:388 msgid "never" msgstr "Ei koskaan" -#: lib/object.php:344 +#: lib/object.php:389 msgid "by occurrences" msgstr "" -#: lib/object.php:345 +#: lib/object.php:390 msgid "by date" msgstr "" -#: lib/object.php:352 +#: lib/object.php:400 msgid "by monthday" msgstr "" -#: lib/object.php:353 +#: lib/object.php:401 msgid "by weekday" msgstr "" -#: lib/object.php:360 templates/settings.php:42 +#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 msgid "Monday" msgstr "Maanantai" -#: lib/object.php:361 +#: lib/object.php:412 templates/calendar.php:5 msgid "Tuesday" msgstr "Tiistai" -#: lib/object.php:362 +#: lib/object.php:413 templates/calendar.php:5 msgid "Wednesday" msgstr "Keskiviikko" -#: lib/object.php:363 +#: lib/object.php:414 templates/calendar.php:5 msgid "Thursday" msgstr "Torstai" -#: lib/object.php:364 +#: lib/object.php:415 templates/calendar.php:5 msgid "Friday" msgstr "Perjantai" -#: lib/object.php:365 +#: lib/object.php:416 templates/calendar.php:5 msgid "Saturday" msgstr "Lauantai" -#: lib/object.php:366 templates/settings.php:43 +#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 msgid "Sunday" msgstr "Sunnuntai" -#: lib/object.php:373 +#: lib/object.php:427 msgid "events week of month" msgstr "" -#: lib/object.php:374 +#: lib/object.php:428 msgid "first" msgstr "ensimmäinen" -#: lib/object.php:375 +#: lib/object.php:429 msgid "second" msgstr "toinen" -#: lib/object.php:376 +#: lib/object.php:430 msgid "third" msgstr "kolmas" -#: lib/object.php:377 +#: lib/object.php:431 msgid "fourth" msgstr "neljäs" -#: lib/object.php:378 +#: lib/object.php:432 msgid "fifth" msgstr "viides" -#: lib/object.php:379 +#: lib/object.php:433 msgid "last" msgstr "viimeinen" -#: lib/object.php:401 +#: lib/object.php:467 templates/calendar.php:7 msgid "January" msgstr "Tammikuu" -#: lib/object.php:402 +#: lib/object.php:468 templates/calendar.php:7 msgid "February" msgstr "Helmikuu" -#: lib/object.php:403 +#: lib/object.php:469 templates/calendar.php:7 msgid "March" msgstr "Maaliskuu" -#: lib/object.php:404 +#: lib/object.php:470 templates/calendar.php:7 msgid "April" msgstr "Huhtikuu" -#: lib/object.php:405 +#: lib/object.php:471 templates/calendar.php:7 msgid "May" msgstr "Toukokuu" -#: lib/object.php:406 +#: lib/object.php:472 templates/calendar.php:7 msgid "June" msgstr "Kesäkuu" -#: lib/object.php:407 +#: lib/object.php:473 templates/calendar.php:7 msgid "July" msgstr "Heinäkuu" -#: lib/object.php:408 +#: lib/object.php:474 templates/calendar.php:7 msgid "August" msgstr "Elokuu" -#: lib/object.php:409 +#: lib/object.php:475 templates/calendar.php:7 msgid "September" msgstr "Syyskuu" -#: lib/object.php:410 +#: lib/object.php:476 templates/calendar.php:7 msgid "October" msgstr "Lokakuu" -#: lib/object.php:411 +#: lib/object.php:477 templates/calendar.php:7 msgid "November" msgstr "Marraskuu" -#: lib/object.php:412 +#: lib/object.php:478 templates/calendar.php:7 msgid "December" msgstr "Joulukuu" -#: lib/object.php:418 +#: lib/object.php:488 msgid "by events date" msgstr "" -#: lib/object.php:419 +#: lib/object.php:489 msgid "by yearday(s)" msgstr "" -#: lib/object.php:420 +#: lib/object.php:490 msgid "by weeknumber(s)" msgstr "" -#: lib/object.php:421 +#: lib/object.php:491 msgid "by day and month" msgstr "" -#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +#: lib/search.php:35 lib/search.php:37 lib/search.php:40 msgid "Date" msgstr "Päivämäärä" -#: lib/search.php:40 +#: lib/search.php:43 msgid "Cal." msgstr "" +#: templates/calendar.php:6 +msgid "Sun." +msgstr "Su" + +#: templates/calendar.php:6 +msgid "Mon." +msgstr "Ma" + +#: templates/calendar.php:6 +msgid "Tue." +msgstr "Ti" + +#: templates/calendar.php:6 +msgid "Wed." +msgstr "Ke" + +#: templates/calendar.php:6 +msgid "Thu." +msgstr "To" + +#: templates/calendar.php:6 +msgid "Fri." +msgstr "Pe" + +#: templates/calendar.php:6 +msgid "Sat." +msgstr "La" + +#: templates/calendar.php:8 +msgid "Jan." +msgstr "Tammi" + +#: templates/calendar.php:8 +msgid "Feb." +msgstr "Helmi" + +#: templates/calendar.php:8 +msgid "Mar." +msgstr "Maalis" + +#: templates/calendar.php:8 +msgid "Apr." +msgstr "Huhti" + +#: templates/calendar.php:8 +msgid "May." +msgstr "Touko" + +#: templates/calendar.php:8 +msgid "Jun." +msgstr "Kesä" + +#: templates/calendar.php:8 +msgid "Jul." +msgstr "Heinä" + +#: templates/calendar.php:8 +msgid "Aug." +msgstr "Elo" + +#: templates/calendar.php:8 +msgid "Sep." +msgstr "Syys" + +#: templates/calendar.php:8 +msgid "Oct." +msgstr "Loka" + +#: templates/calendar.php:8 +msgid "Nov." +msgstr "Marras" + +#: templates/calendar.php:8 +msgid "Dec." +msgstr "Joulu" + #: templates/calendar.php:11 msgid "All day" msgstr "Koko päivä" -#: templates/calendar.php:12 templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Uusi kalenteri" - #: templates/calendar.php:13 msgid "Missing fields" msgstr "Puuttuvat kentät" @@ -359,27 +462,27 @@ msgstr "Tapahtuma päättyy ennen alkamistaan" msgid "There was a database fail" msgstr "Tapahtui tietokantavirhe" -#: templates/calendar.php:40 +#: templates/calendar.php:38 msgid "Week" msgstr "Viikko" -#: templates/calendar.php:41 +#: templates/calendar.php:39 msgid "Month" msgstr "Kuukausi" -#: templates/calendar.php:42 +#: templates/calendar.php:40 msgid "List" msgstr "Lista" -#: templates/calendar.php:48 +#: templates/calendar.php:44 msgid "Today" msgstr "Tänään" -#: templates/calendar.php:49 +#: templates/calendar.php:45 msgid "Calendars" msgstr "Kalenterit" -#: templates/calendar.php:67 +#: templates/calendar.php:59 msgid "There was a fail, while parsing the file." msgstr "Tiedostoa jäsennettäessä tapahtui virhe." @@ -392,7 +495,7 @@ msgid "Your calendars" msgstr "Omat kalenterisi" #: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:5 +#: templates/part.choosecalendar.rowfields.php:11 msgid "CalDav Link" msgstr "CalDav-linkki" @@ -404,19 +507,19 @@ msgstr "Jaetut kalenterit" msgid "No shared calendars" msgstr "Ei jaettuja kalentereita" -#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.choosecalendar.rowfields.php:8 msgid "Share Calendar" msgstr "Jaa kalenteri" -#: templates/part.choosecalendar.rowfields.php:6 +#: templates/part.choosecalendar.rowfields.php:14 msgid "Download" msgstr "Lataa" -#: templates/part.choosecalendar.rowfields.php:7 +#: templates/part.choosecalendar.rowfields.php:17 msgid "Edit" msgstr "Muokkaa" -#: templates/part.choosecalendar.rowfields.php:8 +#: templates/part.choosecalendar.rowfields.php:20 #: templates/part.editevent.php:9 msgid "Delete" msgstr "Poista" @@ -502,23 +605,23 @@ msgstr "Erota luokat pilkuilla" msgid "Edit categories" msgstr "Muokkaa luokkia" -#: templates/part.eventform.php:56 templates/part.showevent.php:55 +#: templates/part.eventform.php:56 templates/part.showevent.php:52 msgid "All Day Event" msgstr "Koko päivän tapahtuma" -#: templates/part.eventform.php:60 templates/part.showevent.php:59 +#: templates/part.eventform.php:60 templates/part.showevent.php:56 msgid "From" msgstr "Alkaa" -#: templates/part.eventform.php:68 templates/part.showevent.php:67 +#: templates/part.eventform.php:68 templates/part.showevent.php:64 msgid "To" msgstr "Päättyy" -#: templates/part.eventform.php:76 templates/part.showevent.php:75 +#: templates/part.eventform.php:76 templates/part.showevent.php:72 msgid "Advanced options" msgstr "Tarkemmat asetukset" -#: templates/part.eventform.php:81 templates/part.showevent.php:80 +#: templates/part.eventform.php:81 templates/part.showevent.php:77 msgid "Location" msgstr "Sijainti" @@ -526,7 +629,7 @@ msgstr "Sijainti" msgid "Location of the Event" msgstr "Tapahtuman sijainti" -#: templates/part.eventform.php:89 templates/part.showevent.php:88 +#: templates/part.eventform.php:89 templates/part.showevent.php:85 msgid "Description" msgstr "Kuvaus" @@ -534,84 +637,86 @@ msgstr "Kuvaus" msgid "Description of the Event" msgstr "Tapahtuman kuvaus" -#: templates/part.eventform.php:100 templates/part.showevent.php:98 +#: templates/part.eventform.php:100 templates/part.showevent.php:95 msgid "Repeat" msgstr "Toisto" -#: templates/part.eventform.php:107 templates/part.showevent.php:105 +#: templates/part.eventform.php:107 templates/part.showevent.php:102 msgid "Advanced" msgstr "" -#: templates/part.eventform.php:151 templates/part.showevent.php:149 +#: templates/part.eventform.php:151 templates/part.showevent.php:146 msgid "Select weekdays" msgstr "Valitse viikonpäivät" #: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:162 templates/part.showevent.php:175 +#: templates/part.showevent.php:159 templates/part.showevent.php:172 msgid "Select days" msgstr "Valitse päivät" -#: templates/part.eventform.php:169 templates/part.showevent.php:167 +#: templates/part.eventform.php:169 templates/part.showevent.php:164 msgid "and the events day of year." msgstr "" -#: templates/part.eventform.php:182 templates/part.showevent.php:180 +#: templates/part.eventform.php:182 templates/part.showevent.php:177 msgid "and the events day of month." msgstr "" -#: templates/part.eventform.php:190 templates/part.showevent.php:188 +#: templates/part.eventform.php:190 templates/part.showevent.php:185 msgid "Select months" msgstr "Valitse kuukaudet" -#: templates/part.eventform.php:203 templates/part.showevent.php:201 +#: templates/part.eventform.php:203 templates/part.showevent.php:198 msgid "Select weeks" msgstr "Valitse viikot" -#: templates/part.eventform.php:208 templates/part.showevent.php:206 +#: templates/part.eventform.php:208 templates/part.showevent.php:203 msgid "and the events week of year." msgstr "" -#: templates/part.eventform.php:214 templates/part.showevent.php:212 +#: templates/part.eventform.php:214 templates/part.showevent.php:209 msgid "Interval" msgstr "Intervalli" -#: templates/part.eventform.php:220 templates/part.showevent.php:218 +#: templates/part.eventform.php:220 templates/part.showevent.php:215 msgid "End" msgstr "" -#: templates/part.eventform.php:233 templates/part.showevent.php:231 +#: templates/part.eventform.php:233 templates/part.showevent.php:228 msgid "occurrences" msgstr "" -#: templates/part.import.php:1 -msgid "Import a calendar file" -msgstr "Tuo kalenteritiedosto" - -#: templates/part.import.php:6 -msgid "Please choose the calendar" -msgstr "Valitse kalenteri" - -#: templates/part.import.php:10 +#: templates/part.import.php:14 msgid "create a new calendar" msgstr "luo uusi kalenteri" -#: templates/part.import.php:15 +#: templates/part.import.php:17 +msgid "Import a calendar file" +msgstr "Tuo kalenteritiedosto" + +#: templates/part.import.php:24 +msgid "Please choose a calendar" +msgstr "Valitse kalenteri" + +#: templates/part.import.php:36 msgid "Name of new calendar" msgstr "Uuden kalenterin nimi" -#: templates/part.import.php:17 +#: templates/part.import.php:44 +msgid "Take an available name!" +msgstr "" + +#: templates/part.import.php:45 +msgid "" +"A Calendar with this name already exists. If you continue anyhow, these " +"calendars will be merged." +msgstr "" + +#: templates/part.import.php:47 msgid "Import" msgstr "Tuo" -#: templates/part.import.php:20 -msgid "Importing calendar" -msgstr "Tuodaan kalenteria" - -#: templates/part.import.php:23 -msgid "Calendar imported successfully" -msgstr "Kalenteri tuotu onnistuneesti" - -#: templates/part.import.php:24 +#: templates/part.import.php:56 msgid "Close Dialog" msgstr "Sulje ikkuna" @@ -627,15 +732,11 @@ msgstr "Avaa tapahtuma" msgid "No categories selected" msgstr "Luokkia ei ole valittu" -#: templates/part.showevent.php:25 -msgid "Select category" -msgstr "Valitse luokka" - #: templates/part.showevent.php:37 msgid "of" msgstr "" -#: templates/part.showevent.php:62 templates/part.showevent.php:70 +#: templates/part.showevent.php:59 templates/part.showevent.php:67 msgid "at" msgstr "" @@ -663,9 +764,33 @@ msgstr "12 tuntia" msgid "First day of the week" msgstr "Viikon ensimmäinen päivä" -#: templates/settings.php:49 -msgid "Calendar CalDAV syncing address:" -msgstr "Kalenterin CalDAV-synkronointiosoite:" +#: templates/settings.php:47 +msgid "Cache" +msgstr "" + +#: templates/settings.php:48 +msgid "Clear cache for repeating events" +msgstr "" + +#: templates/settings.php:53 +msgid "Calendar CalDAV syncing addresses" +msgstr "Kalenterin CalDAV-synkronointiosoitteet" + +#: templates/settings.php:53 +msgid "more info" +msgstr "" + +#: templates/settings.php:55 +msgid "Primary address (Kontact et al)" +msgstr "" + +#: templates/settings.php:57 +msgid "iOS/OS X" +msgstr "iOS/OS X" + +#: templates/settings.php:59 +msgid "Read only iCalendar link(s)" +msgstr "" #: templates/share.dropdown.php:20 msgid "Users" diff --git a/l10n/fi_FI/contacts.po b/l10n/fi_FI/contacts.po index 4748623176..a6bb8bb156 100644 --- a/l10n/fi_FI/contacts.po +++ b/l10n/fi_FI/contacts.po @@ -11,431 +11,486 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Finnish (Finland) (http://www.transifex.net/projects/p/owncloud/language/fi_FI/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 10:36+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" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/activation.php:19 ajax/updateaddressbook.php:32 +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcontact.php:59 +#: ajax/addcontact.php:47 msgid "There was an error adding the contact." msgstr "Virhe yhteystietoa lisättäessä." -#: ajax/addproperty.php:40 +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "" + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "" + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "" + +#: ajax/addproperty.php:56 msgid "Cannot add empty property." msgstr "Tyhjää ominaisuutta ei voi lisätä." -#: ajax/addproperty.php:52 +#: ajax/addproperty.php:67 msgid "At least one of the address fields has to be filled out." msgstr "Vähintään yksi osoitekenttä tulee täyttää." -#: ajax/addproperty.php:62 +#: ajax/addproperty.php:76 msgid "Trying to add duplicate property: " msgstr "" -#: ajax/addproperty.php:120 -msgid "Error adding contact property." -msgstr "Virhe lisättäessä ominaisuutta yhteystietoon." +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "" -#: ajax/categories/categoriesfor.php:15 +#: ajax/categories/categoriesfor.php:17 msgid "No ID provided" msgstr "" -#: ajax/categories/categoriesfor.php:27 +#: ajax/categories/categoriesfor.php:34 msgid "Error setting checksum." msgstr "" -#: ajax/categories/delete.php:29 +#: ajax/categories/delete.php:19 msgid "No categories selected for deletion." msgstr "Luokkia ei ole valittu poistettavaksi." -#: ajax/categories/delete.php:36 ajax/categories/rescan.php:28 +#: ajax/categories/delete.php:26 msgid "No address books found." msgstr "Osoitekirjoja ei löytynyt." -#: ajax/categories/delete.php:44 ajax/categories/rescan.php:36 +#: ajax/categories/delete.php:34 msgid "No contacts found." msgstr "Yhteystietoja ei löytynyt." -#: ajax/contactdetails.php:37 +#: ajax/contactdetails.php:31 msgid "Missing ID" msgstr "" -#: ajax/contactdetails.php:41 +#: ajax/contactdetails.php:36 msgid "Error parsing VCard for ID: \"" msgstr "Virhe jäsennettäessä vCardia tunnisteelle: \"" -#: ajax/createaddressbook.php:18 -msgid "Cannot add addressbook with an empty name." -msgstr "Ilman nimeä olevaa osoitekirjaa ei voi lisätä." - -#: ajax/createaddressbook.php:24 -msgid "Error adding addressbook." -msgstr "Virhe lisättäessä osoitekirjaa." - -#: ajax/createaddressbook.php:30 -msgid "Error activating addressbook." -msgstr "Virhe aktivoitaessa osoitekirjaa." - -#: ajax/currentphoto.php:34 ajax/oc_photo.php:37 ajax/uploadphoto.php:41 +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 #: ajax/uploadphoto.php:68 msgid "No contact ID was submitted." msgstr "" -#: ajax/currentphoto.php:40 +#: ajax/currentphoto.php:36 msgid "Error reading contact photo." msgstr "" -#: ajax/currentphoto.php:52 +#: ajax/currentphoto.php:48 msgid "Error saving temporary file." msgstr "Virhe tallennettaessa tilapäistiedostoa." -#: ajax/currentphoto.php:55 +#: ajax/currentphoto.php:51 msgid "The loading photo is not valid." msgstr "" -#: ajax/deletecard.php:37 ajax/saveproperty.php:58 -msgid "id is not set." -msgstr "" - #: ajax/deleteproperty.php:36 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "vCardin tiedot eivät kelpaa. Lataa sivu uudelleen." #: ajax/deleteproperty.php:43 msgid "Error deleting contact property." msgstr "Virhe poistettaessa yhteystiedon ominaisuutta." -#: ajax/editname.php:37 +#: ajax/editname.php:31 msgid "Contact ID is missing." msgstr "" -#: ajax/loadphoto.php:44 -msgid "Missing contact id." -msgstr "" - -#: ajax/oc_photo.php:41 +#: ajax/oc_photo.php:32 msgid "No photo path was submitted." msgstr "" -#: ajax/oc_photo.php:48 +#: ajax/oc_photo.php:39 msgid "File doesn't exist:" msgstr "Tiedostoa ei ole olemassa:" -#: ajax/oc_photo.php:54 ajax/oc_photo.php:57 +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 msgid "Error loading image." msgstr "Virhe kuvaa ladatessa." -#: ajax/savecrop.php:68 +#: ajax/savecrop.php:67 msgid "Error getting contact object." msgstr "" -#: ajax/savecrop.php:75 +#: ajax/savecrop.php:76 msgid "Error getting PHOTO property." msgstr "" -#: ajax/savecrop.php:88 +#: ajax/savecrop.php:93 msgid "Error saving contact." -msgstr "" +msgstr "Virhe yhteystietoa tallennettaessa." -#: ajax/savecrop.php:98 +#: ajax/savecrop.php:103 msgid "Error resizing image" -msgstr "" +msgstr "Virhe asettaessa kuvaa uuteen kokoon" -#: ajax/savecrop.php:101 +#: ajax/savecrop.php:106 msgid "Error cropping image" -msgstr "" +msgstr "Virhe rajatessa kuvaa" -#: ajax/savecrop.php:104 +#: ajax/savecrop.php:109 msgid "Error creating temporary image" -msgstr "" +msgstr "Virhe luotaessa väliaikaista kuvaa" -#: ajax/savecrop.php:107 +#: ajax/savecrop.php:112 msgid "Error finding image: " msgstr "" -#: ajax/saveproperty.php:55 -msgid "element name is not set." -msgstr "" - -#: ajax/saveproperty.php:61 +#: ajax/saveproperty.php:40 msgid "checksum is not set." msgstr "" -#: ajax/saveproperty.php:78 +#: ajax/saveproperty.php:59 msgid "Information about vCard is incorrect. Please reload the page: " msgstr "" -#: ajax/saveproperty.php:83 +#: ajax/saveproperty.php:64 msgid "Something went FUBAR. " msgstr "" -#: ajax/saveproperty.php:150 +#: ajax/saveproperty.php:133 msgid "Error updating contact property." msgstr "Virhe päivitettäessä yhteystiedon ominaisuutta." -#: ajax/updateaddressbook.php:20 +#: ajax/updateaddressbook.php:21 msgid "Cannot update addressbook with an empty name." msgstr "" -#: ajax/updateaddressbook.php:26 +#: ajax/updateaddressbook.php:25 msgid "Error updating addressbook." msgstr "Virhe päivitettäessä osoitekirjaa." -#: ajax/uploadimport.php:46 ajax/uploadimport.php:76 +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 msgid "Error uploading contacts to storage." msgstr "" -#: ajax/uploadimport.php:59 ajax/uploadphoto.php:77 +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 msgid "There is no error, the file uploaded with success" msgstr "Ei virhettä, tiedosto lähetettiin onnistuneesti" -#: ajax/uploadimport.php:60 ajax/uploadphoto.php:78 +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Lähetetyn tiedoston koko ylittää upload_max_filesize-asetuksen arvon php.ini-tiedostossa" -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:79 +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:80 +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 msgid "The uploaded file was only partially uploaded" msgstr "Lähetetty tiedosto lähetettiin vain osittain" -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:81 +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 msgid "No file was uploaded" msgstr "Tiedostoa ei lähetetty" -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:82 +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 msgid "Missing a temporary folder" msgstr "Tilapäiskansio puuttuu" -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:102 +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 msgid "Couldn't save temporary image: " msgstr "" -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:105 +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 msgid "Couldn't load temporary image: " msgstr "" #: ajax/uploadphoto.php:71 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: appinfo/app.php:17 templates/settings.php:3 +#: appinfo/app.php:19 templates/settings.php:3 msgid "Contacts" msgstr "Yhteystiedot" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Sorry, this functionality has not been implemented yet" msgstr "" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Not implemented" msgstr "" -#: js/contacts.js:29 +#: js/contacts.js:58 msgid "Couldn't get a valid address." msgstr "" -#: js/contacts.js:29 js/contacts.js:334 js/contacts.js:341 js/contacts.js:355 -#: js/contacts.js:393 js/contacts.js:399 js/contacts.js:565 js/contacts.js:605 -#: js/contacts.js:631 js/contacts.js:668 js/contacts.js:747 js/contacts.js:753 -#: js/contacts.js:765 js/contacts.js:799 js/contacts.js:1056 -#: js/contacts.js:1064 js/contacts.js:1073 js/contacts.js:1130 -#: js/contacts.js:1146 js/contacts.js:1161 js/contacts.js:1173 -#: js/contacts.js:1196 js/contacts.js:1449 js/contacts.js:1457 -#: js/contacts.js:1483 js/contacts.js:1494 js/contacts.js:1509 -#: js/contacts.js:1526 js/contacts.js:1596 js/contacts.js:1644 -#: js/contacts.js:1654 js/contacts.js:1657 +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 msgid "Error" -msgstr "" +msgstr "Virhe" -#: js/contacts.js:364 -msgid "Are you sure you want to delete this contact?" -msgstr "" +#: js/contacts.js:389 lib/search.php:15 +msgid "Contact" +msgstr "Yhteystieto" -#: js/contacts.js:364 -msgid "Warning" -msgstr "" +#: js/contacts.js:389 +msgid "New" +msgstr "Uusi" -#: js/contacts.js:605 +#: js/contacts.js:389 +msgid "New Contact" +msgstr "Uusi yhteystieto" + +#: js/contacts.js:691 msgid "This property has to be non-empty." msgstr "" -#: js/contacts.js:631 +#: js/contacts.js:717 msgid "Couldn't serialize elements." msgstr "" -#: js/contacts.js:747 js/contacts.js:765 +#: js/contacts.js:826 js/contacts.js:844 msgid "" "'deleteProperty' called without type argument. Please report at " "bugs.owncloud.org" msgstr "" -#: js/contacts.js:781 +#: js/contacts.js:860 msgid "Edit name" -msgstr "" +msgstr "Muokkaa nimeä" -#: js/contacts.js:1056 +#: js/contacts.js:1141 msgid "No files selected for upload." -msgstr "" +msgstr "Tiedostoja ei ole valittu lähetettäväksi." -#: js/contacts.js:1064 js/contacts.js:1449 js/contacts.js:1634 +#: js/contacts.js:1149 msgid "" "The file you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: js/contacts.js:1119 -msgid "Select photo" -msgstr "" - -#: js/contacts.js:1257 js/contacts.js:1290 +#: js/contacts.js:1314 js/contacts.js:1348 msgid "Select type" msgstr "" -#: js/contacts.js:1305 templates/part.importaddressbook.php:25 -msgid "Drop a VCF file to import contacts." -msgstr "" - -#: js/contacts.js:1475 -msgid "Import done. Success/Failure: " -msgstr "" - -#: js/contacts.js:1476 -msgid "OK" -msgstr "" - -#: js/contacts.js:1494 -msgid "Displayname cannot be empty." -msgstr "" - -#: js/contacts.js:1634 -msgid "Upload too large" -msgstr "" - -#: js/contacts.js:1638 -msgid "Only image files can be used as profile picture." -msgstr "" - -#: js/contacts.js:1638 -msgid "Wrong file type" -msgstr "" - -#: js/contacts.js:1644 -msgid "" -"Your browser doesn't support AJAX upload. Please click on the profile " -"picture to select a photo to upload." -msgstr "" - #: js/loader.js:49 msgid "Result: " -msgstr "" +msgstr "Tulos: " #: js/loader.js:49 msgid " imported, " -msgstr "" +msgstr " tuotu, " #: js/loader.js:49 msgid " failed." -msgstr "" +msgstr " epäonnistui." -#: lib/app.php:30 +#: lib/app.php:29 msgid "Addressbook not found." msgstr "Osoitekirjaa ei löytynyt." -#: lib/app.php:34 +#: lib/app.php:33 msgid "This is not your addressbook." msgstr "Tämä ei ole osoitekirjasi." -#: lib/app.php:45 +#: lib/app.php:44 msgid "Contact could not be found." msgstr "Yhteystietoa ei löytynyt." -#: lib/app.php:101 templates/part.contact.php:109 +#: lib/app.php:100 templates/part.contact.php:116 msgid "Address" msgstr "Osoite" -#: lib/app.php:102 +#: lib/app.php:101 msgid "Telephone" msgstr "Puhelin" -#: lib/app.php:103 templates/part.contact.php:108 +#: lib/app.php:102 templates/part.contact.php:115 msgid "Email" msgstr "Sähköposti" -#: lib/app.php:104 templates/part.contact.php:33 templates/part.contact.php:34 -#: templates/part.contact.php:104 +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 msgid "Organization" msgstr "Organisaatio" -#: lib/app.php:116 lib/app.php:123 lib/app.php:133 +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 msgid "Work" msgstr "Työ" -#: lib/app.php:117 lib/app.php:121 lib/app.php:134 +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 msgid "Home" msgstr "Koti" -#: lib/app.php:122 +#: lib/app.php:121 msgid "Mobile" msgstr "Mobiili" -#: lib/app.php:124 +#: lib/app.php:123 msgid "Text" msgstr "Teksti" -#: lib/app.php:125 +#: lib/app.php:124 msgid "Voice" msgstr "Ääni" -#: lib/app.php:126 +#: lib/app.php:125 msgid "Message" msgstr "Viesti" -#: lib/app.php:127 +#: lib/app.php:126 msgid "Fax" msgstr "Faksi" -#: lib/app.php:128 +#: lib/app.php:127 msgid "Video" msgstr "Video" -#: lib/app.php:129 +#: lib/app.php:128 msgid "Pager" msgstr "Hakulaite" -#: lib/app.php:135 +#: lib/app.php:134 msgid "Internet" msgstr "Internet" -#: lib/hooks.php:79 +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "Syntymäpäivä" + +#: lib/app.php:170 +msgid "Business" +msgstr "Työ" + +#: lib/app.php:171 +msgid "Call" +msgstr "" + +#: lib/app.php:172 +msgid "Clients" +msgstr "" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "" + +#: lib/app.php:176 +msgid "Journey" +msgstr "" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "" + +#: lib/app.php:179 +msgid "Other" +msgstr "Muu" + +#: lib/app.php:180 +msgid "Personal" +msgstr "" + +#: lib/app.php:181 +msgid "Projects" +msgstr "" + +#: lib/app.php:182 +msgid "Questions" +msgstr "Kysymykset" + +#: lib/hooks.php:102 msgid "{name}'s Birthday" msgstr "Henkilön {name} syntymäpäivä" -#: lib/search.php:22 -msgid "Contact" -msgstr "Yhteystieto" - -#: templates/index.php:13 +#: templates/index.php:15 msgid "Add Contact" msgstr "Lisää yhteystieto" -#: templates/index.php:14 +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "Tuo" + +#: templates/index.php:20 msgid "Addressbooks" msgstr "Osoitekirjat" +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "Sulje" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "" + +#: templates/index.php:54 +msgid "Actions" +msgstr "Toiminnot" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "Päivitä yhteystietoluettelo" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "Lisää uusi yhteystieto" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "Lisää uusi osoitekirja" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "Poista nykyinen yhteystieto" + #: templates/part.chooseaddressbook.php:1 msgid "Configure Address Books" msgstr "Muokkaa osoitekirjoja" @@ -444,11 +499,7 @@ msgstr "Muokkaa osoitekirjoja" msgid "New Address Book" msgstr "Uusi osoitekirja" -#: templates/part.chooseaddressbook.php:17 -msgid "Import from VCF" -msgstr "Tuo VCF-tiedostosta" - -#: templates/part.chooseaddressbook.php:22 +#: templates/part.chooseaddressbook.php:21 #: templates/part.chooseaddressbook.rowfields.php:8 msgid "CardDav Link" msgstr "CardDav-linkki" @@ -462,186 +513,195 @@ msgid "Edit" msgstr "Muokkaa" #: templates/part.chooseaddressbook.rowfields.php:17 -#: templates/part.contact.php:34 templates/part.contact.php:36 -#: templates/part.contact.php:38 templates/part.contact.php:42 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 msgid "Delete" msgstr "Poista" -#: templates/part.contact.php:12 -msgid "Download contact" -msgstr "Lataa yhteystieto" - -#: templates/part.contact.php:13 -msgid "Delete contact" -msgstr "Poista yhteystieto" - -#: templates/part.contact.php:19 +#: templates/part.contact.php:16 msgid "Drop photo to upload" msgstr "" -#: templates/part.contact.php:29 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:30 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:35 templates/part.contact.php:105 -msgid "Nickname" -msgstr "Kutsumanimi" - -#: templates/part.contact.php:36 -msgid "Enter nickname" -msgstr "Anna kutsumanimi" - -#: templates/part.contact.php:37 templates/part.contact.php:106 -msgid "Birthday" -msgstr "Syntymäpäivä" - -#: templates/part.contact.php:38 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:111 -msgid "Groups" -msgstr "Ryhmät" - -#: templates/part.contact.php:41 -msgid "Separate groups with commas" -msgstr "Erota ryhmät pilkuilla" - -#: templates/part.contact.php:42 -msgid "Edit groups" -msgstr "Muokkaa ryhmiä" - -#: templates/part.contact.php:55 templates/part.contact.php:69 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:56 -msgid "Please specify a valid email address." -msgstr "Anna kelvollinen sähköpostiosoite." - -#: templates/part.contact.php:56 -msgid "Enter email address" -msgstr "Anna sähköpostiosoite" - -#: templates/part.contact.php:60 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:61 -msgid "Delete email address" -msgstr "Poista sähköpostiosoite" - -#: templates/part.contact.php:70 -msgid "Enter phone number" -msgstr "Anna puhelinnumero" - -#: templates/part.contact.php:74 -msgid "Delete phone number" -msgstr "Poista puhelinnumero" - -#: templates/part.contact.php:84 -msgid "View on map" -msgstr "Näytä kartalla" - -#: templates/part.contact.php:84 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:95 -msgid "Add notes here." -msgstr "Lisää huomiot tähän." - -#: templates/part.contact.php:101 -msgid "Add field" -msgstr "Lisää kenttä" - -#: templates/part.contact.php:103 -msgid "Profile picture" -msgstr "Profiilikuva" - -#: templates/part.contact.php:107 -msgid "Phone" -msgstr "Puhelin" - -#: templates/part.contact.php:110 -msgid "Note" -msgstr "Huomio" - -#: templates/part.contactphoto.php:8 +#: templates/part.contact.php:18 msgid "Delete current photo" msgstr "Poista nykyinen valokuva" -#: templates/part.contactphoto.php:9 +#: templates/part.contact.php:19 msgid "Edit current photo" msgstr "Muokkaa nykyistä valokuvaa" -#: templates/part.contactphoto.php:10 +#: templates/part.contact.php:20 msgid "Upload new photo" msgstr "Lähetä uusi valokuva" -#: templates/part.contactphoto.php:11 +#: templates/part.contact.php:21 msgid "Select photo from ownCloud" msgstr "Valitse valokuva ownCloudista" -#: templates/part.cropphoto.php:64 -msgid "The temporary image has been removed from cache." +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" msgstr "" -#: templates/part.edit_address_dialog.php:9 +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "Muokkaa nimitietoja" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "Kutsumanimi" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "Anna kutsumanimi" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" +msgstr "Verkkosivu" + +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "http://www.somesite.com" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "Siirry verkkosivulle" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "Ryhmät" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "Erota ryhmät pilkuilla" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "Muokkaa ryhmiä" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "Anna kelvollinen sähköpostiosoite." + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "Anna sähköpostiosoite" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "Poista sähköpostiosoite" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "Anna puhelinnumero" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "Poista puhelinnumero" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "Näytä kartalla" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "Muokkaa osoitetietoja" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "Lisää huomiot tähän." + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "Lisää kenttä" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "Puhelin" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "Huomio" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "Lataa yhteystieto" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "Poista yhteystieto" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "Väliaikainen kuva on poistettu välimuistista." + +#: templates/part.edit_address_dialog.php:6 msgid "Edit address" msgstr "Muokkaa osoitetta" -#: templates/part.edit_address_dialog.php:14 +#: templates/part.edit_address_dialog.php:10 msgid "Type" msgstr "Tyyppi" -#: templates/part.edit_address_dialog.php:22 -#: templates/part.edit_address_dialog.php:25 +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 msgid "PO Box" msgstr "Postilokero" -#: templates/part.edit_address_dialog.php:29 -#: templates/part.edit_address_dialog.php:32 +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "Katuosoite" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "Katu ja numero" + +#: templates/part.edit_address_dialog.php:30 msgid "Extended" msgstr "Laajennettu" -#: templates/part.edit_address_dialog.php:35 -#: templates/part.edit_address_dialog.php:38 -msgid "Street" -msgstr "Katuosoite" +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "Asunnon numero jne." -#: templates/part.edit_address_dialog.php:41 -#: templates/part.edit_address_dialog.php:44 +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 msgid "City" msgstr "Paikkakunta" -#: templates/part.edit_address_dialog.php:47 -#: templates/part.edit_address_dialog.php:50 +#: templates/part.edit_address_dialog.php:42 msgid "Region" msgstr "Alue" -#: templates/part.edit_address_dialog.php:53 -#: templates/part.edit_address_dialog.php:56 +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "" + +#: templates/part.edit_address_dialog.php:48 msgid "Zipcode" msgstr "Postinumero" -#: templates/part.edit_address_dialog.php:59 -#: templates/part.edit_address_dialog.php:62 +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "Postinumero" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 msgid "Country" msgstr "Maa" -#: templates/part.edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Muokkaa luokkia" - -#: templates/part.edit_categories_dialog.php:14 -msgid "Add" -msgstr "Lisää" - #: templates/part.edit_name_dialog.php:16 msgid "Addressbook" msgstr "Osoitekirja" @@ -747,7 +807,6 @@ msgid "Submit" msgstr "Lähetä" #: templates/part.editaddressbook.php:30 -#: templates/part.importaddressbook.php:34 msgid "Cancel" msgstr "Peru" @@ -767,33 +826,10 @@ msgstr "luo uusi osoitekirja" msgid "Name of new addressbook" msgstr "Uuden osoitekirjan nimi" -#: templates/part.import.php:17 -msgid "Import" -msgstr "Tuo" - #: templates/part.import.php:20 msgid "Importing contacts" msgstr "Tuodaan yhteystietoja" -#: templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/part.importaddressbook.php:12 -msgid "" -"Currently this import function doesn't work while encryption is enabled.
Please upload your VCF file with the file manager and click on it to " -"import." -msgstr "" - -#: templates/part.importaddressbook.php:16 -msgid "Select address book to import to:" -msgstr "Valitse osoitekirja, johon yhteystiedot tuodaan:" - -#: templates/part.importaddressbook.php:26 -msgid "Select from HD" -msgstr "" - #: templates/part.no_contacts.php:2 msgid "You have no contacts in your addressbook." msgstr "Osoitekirjassasi ei ole yhteystietoja." @@ -806,6 +842,18 @@ msgstr "Lisää yhteystieto" msgid "Configure addressbooks" msgstr "Muokkaa osoitekirjoja" +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "Valitse osoitekirjat" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "Anna nimi" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "Anna kuvaus" + #: templates/settings.php:4 msgid "CardDAV syncing addresses" msgstr "CardDAV-synkronointiosoitteet" @@ -821,3 +869,7 @@ msgstr "" #: templates/settings.php:8 msgid "iOS/OS X" msgstr "iOS/OS X" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 529f183e46..6a784e5631 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -11,43 +11,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Finnish (Finland) (http://www.transifex.net/projects/p/owncloud/language/fi_FI/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 10:42+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" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Lähetetty tiedosto ylittää upload_max_filesize-arvon rajan php.ini-tiedostossa" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Väliaikaiskansiota ei ole olemassa" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" @@ -55,57 +55,65 @@ msgstr "Levylle kirjoitus epäonnistui" msgid "Files" msgstr "Tiedostot" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "Lopeta jakaminen" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Poista" + #: js/filelist.js:186 msgid "undo deletion" -msgstr "" +msgstr "kumoa poisto" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Lähetysvirhe." #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Odottaa" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Lähetys peruttu." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Koko" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Muutettu" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "kansio" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "kansiota" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "tiedosto" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "tiedostoa" #: templates/admin.php:5 msgid "File handling" @@ -175,10 +183,6 @@ msgstr "Jaa" msgid "Download" msgstr "Lataa" -#: templates/index.php:56 -msgid "Delete" -msgstr "Poista" - #: templates/index.php:64 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" diff --git a/l10n/fi_FI/gallery.po b/l10n/fi_FI/gallery.po index b4ea780216..275d7d08ab 100644 --- a/l10n/fi_FI/gallery.po +++ b/l10n/fi_FI/gallery.po @@ -9,71 +9,35 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Finnish (Finland) (http://www.transifex.net/projects/p/owncloud/language/fi_FI/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 10:43+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" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:37 +#: appinfo/app.php:39 msgid "Pictures" msgstr "Kuvat" -#: js/album_cover.js:44 +#: js/pictures.js:12 msgid "Share gallery" -msgstr "" +msgstr "Jaa galleria" -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 +#: js/pictures.js:32 msgid "Error: " -msgstr "" +msgstr "Virhe: " -#: js/album_cover.js:64 js/album_cover.js:100 +#: js/pictures.js:32 msgid "Internal error" -msgstr "" +msgstr "Sisäinen virhe" -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Asetukset" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Etsi uusia" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Pysäytä" - -#: templates/index.php:18 -msgid "Share" -msgstr "Jaa" +#: templates/index.php:27 +msgid "Slideshow" +msgstr "Diaesitys" #: templates/view_album.php:19 msgid "Back" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 4034113155..4b7cfc4375 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Finnish (Finland) (http://www.transifex.net/projects/p/owncloud/language/fi_FI/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -21,65 +21,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Sähköposti tallennettu" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Virheellinen sähköposti" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID on vaihdettu" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Virheellinen pyyntö" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Kieli on vaihdettu" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Poista käytöstä" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Käytä" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Tallennetaan..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "_kielen_nimi_" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "Turvallisuusvaroitus" + +#: templates/admin.php:28 msgid "Log" msgstr "Loki" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Lisää" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Lisää ohjelmasi" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Valitse ohjelma" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Katso sovellussivu osoitteessa apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-lisenssöity" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "henkilölle" @@ -171,34 +179,42 @@ msgstr "Auta kääntämisessä" msgid "use this address to connect to your ownCloud in your file manager" msgstr "voit yhdistää tiedostonhallintasovelluksellasi ownCloudiin käyttämällä tätä osoitetta" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nimi" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Salasana" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Ryhmät" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Luo" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Oletuskiintiö" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Muu" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Kiintiö" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Poista" diff --git a/l10n/fr/calendar.po b/l10n/fr/calendar.po index b9d0abab86..ee964a08fb 100644 --- a/l10n/fr/calendar.po +++ b/l10n/fr/calendar.po @@ -6,28 +6,39 @@ # , 2011. # , 2011. # Jan-Christoph Borchardt , 2011. +# Nahir Mohamed , 2012. +# Nicolas , 2012. # , 2012. # , 2011, 2012. +# Romain DEP. , 2012. # Yann Yann , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: French (http://www.transifex.net/projects/p/owncloud/language/fr/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 09:15+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" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/categories/rescan.php:28 +#: ajax/cache/status.php:19 +msgid "Not all calendars are completely cached" +msgstr "Tous les calendriers ne sont pas mis en cache" + +#: ajax/cache/status.php:21 +msgid "Everything seems to be completely cached" +msgstr "Tout semble être en cache" + +#: ajax/categories/rescan.php:29 msgid "No calendars found." msgstr "Aucun calendrier n'a été trouvé." -#: ajax/categories/rescan.php:36 +#: ajax/categories/rescan.php:37 msgid "No events found." msgstr "Aucun événement n'a été trouvé." @@ -35,43 +46,57 @@ msgstr "Aucun événement n'a été trouvé." msgid "Wrong calendar" msgstr "Mauvais calendrier" +#: ajax/import/dropimport.php:29 ajax/import/import.php:64 +msgid "" +"The file contained either no events or all events are already saved in your " +"calendar." +msgstr "Soit le fichier ne contient aucun événement soit tous les événements sont déjà enregistrés dans votre calendrier." + +#: ajax/import/dropimport.php:31 ajax/import/import.php:67 +msgid "events has been saved in the new calendar" +msgstr "Les événements ont été enregistrés dans le nouveau calendrier" + +#: ajax/import/import.php:56 +msgid "Import failed" +msgstr "Échec de l'import" + +#: ajax/import/import.php:69 +msgid "events has been saved in your calendar" +msgstr "Les événements ont été enregistrés dans votre calendrier" + #: ajax/settings/guesstimezone.php:25 msgid "New Timezone:" msgstr "Nouveau fuseau horaire :" -#: ajax/settings/settimezone.php:22 +#: ajax/settings/settimezone.php:23 msgid "Timezone changed" msgstr "Fuseau horaire modifié" -#: ajax/settings/settimezone.php:24 +#: ajax/settings/settimezone.php:25 msgid "Invalid request" msgstr "Requête invalide" -#: appinfo/app.php:19 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:31 +#: appinfo/app.php:35 templates/calendar.php:15 +#: templates/part.eventform.php:33 templates/part.showevent.php:33 #: templates/settings.php:12 msgid "Calendar" msgstr "Calendrier" -#: js/calendar.js:93 -msgid "Deletion failed" -msgstr "" - #: js/calendar.js:828 msgid "ddd" -msgstr "" +msgstr "jjj" #: js/calendar.js:829 msgid "ddd M/d" -msgstr "" +msgstr "jjj M/j" #: js/calendar.js:830 msgid "dddd M/d" -msgstr "" +msgstr "jjjj M/j" #: js/calendar.js:833 msgid "MMMM yyyy" -msgstr "" +msgstr "MMMM aaaa" #: js/calendar.js:835 msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" @@ -79,256 +104,337 @@ msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" #: js/calendar.js:837 msgid "dddd, MMM d, yyyy" -msgstr "" +msgstr "jjjj, MMM j, aaaa" -#: lib/app.php:125 +#: lib/app.php:121 msgid "Birthday" msgstr "Anniversaire" -#: lib/app.php:126 +#: lib/app.php:122 msgid "Business" msgstr "Professionnel" -#: lib/app.php:127 +#: lib/app.php:123 msgid "Call" msgstr "Appel" -#: lib/app.php:128 +#: lib/app.php:124 msgid "Clients" msgstr "Clientèle" -#: lib/app.php:129 +#: lib/app.php:125 msgid "Deliverer" msgstr "Livraison" -#: lib/app.php:130 +#: lib/app.php:126 msgid "Holidays" msgstr "Vacances" -#: lib/app.php:131 +#: lib/app.php:127 msgid "Ideas" msgstr "Idées" -#: lib/app.php:132 +#: lib/app.php:128 msgid "Journey" msgstr "Déplacement" -#: lib/app.php:133 +#: lib/app.php:129 msgid "Jubilee" msgstr "Jubilé" -#: lib/app.php:134 +#: lib/app.php:130 msgid "Meeting" msgstr "Meeting" -#: lib/app.php:135 +#: lib/app.php:131 msgid "Other" msgstr "Autre" -#: lib/app.php:136 +#: lib/app.php:132 msgid "Personal" msgstr "Personnel" -#: lib/app.php:137 +#: lib/app.php:133 msgid "Projects" msgstr "Projets" -#: lib/app.php:138 +#: lib/app.php:134 msgid "Questions" msgstr "Questions" -#: lib/app.php:139 +#: lib/app.php:135 msgid "Work" msgstr "Travail" -#: lib/app.php:380 +#: lib/app.php:351 lib/app.php:361 +msgid "by" +msgstr "par" + +#: lib/app.php:359 lib/app.php:399 msgid "unnamed" msgstr "sans-nom" -#: lib/object.php:330 +#: lib/import.php:184 templates/calendar.php:12 +#: templates/part.choosecalendar.php:22 +msgid "New Calendar" +msgstr "Nouveau Calendrier" + +#: lib/object.php:372 msgid "Does not repeat" msgstr "Pas de répétition" -#: lib/object.php:331 +#: lib/object.php:373 msgid "Daily" msgstr "Tous les jours" -#: lib/object.php:332 +#: lib/object.php:374 msgid "Weekly" msgstr "Hebdomadaire" -#: lib/object.php:333 +#: lib/object.php:375 msgid "Every Weekday" msgstr "Quotidien" -#: lib/object.php:334 +#: lib/object.php:376 msgid "Bi-Weekly" msgstr "Bi-hebdomadaire" -#: lib/object.php:335 +#: lib/object.php:377 msgid "Monthly" msgstr "Mensuel" -#: lib/object.php:336 +#: lib/object.php:378 msgid "Yearly" msgstr "Annuel" -#: lib/object.php:343 +#: lib/object.php:388 msgid "never" msgstr "jamais" -#: lib/object.php:344 +#: lib/object.php:389 msgid "by occurrences" msgstr "par occurrences" -#: lib/object.php:345 +#: lib/object.php:390 msgid "by date" msgstr "par date" -#: lib/object.php:352 +#: lib/object.php:400 msgid "by monthday" msgstr "par jour du mois" -#: lib/object.php:353 +#: lib/object.php:401 msgid "by weekday" msgstr "par jour de la semaine" -#: lib/object.php:360 templates/settings.php:42 +#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 msgid "Monday" msgstr "Lundi" -#: lib/object.php:361 +#: lib/object.php:412 templates/calendar.php:5 msgid "Tuesday" msgstr "Mardi" -#: lib/object.php:362 +#: lib/object.php:413 templates/calendar.php:5 msgid "Wednesday" msgstr "Mercredi" -#: lib/object.php:363 +#: lib/object.php:414 templates/calendar.php:5 msgid "Thursday" msgstr "Jeudi" -#: lib/object.php:364 +#: lib/object.php:415 templates/calendar.php:5 msgid "Friday" msgstr "Vendredi" -#: lib/object.php:365 +#: lib/object.php:416 templates/calendar.php:5 msgid "Saturday" msgstr "Samedi" -#: lib/object.php:366 templates/settings.php:43 +#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 msgid "Sunday" msgstr "Dimanche" -#: lib/object.php:373 +#: lib/object.php:427 msgid "events week of month" msgstr "événements du mois par semaine" -#: lib/object.php:374 +#: lib/object.php:428 msgid "first" msgstr "premier" -#: lib/object.php:375 +#: lib/object.php:429 msgid "second" msgstr "deuxième" -#: lib/object.php:376 +#: lib/object.php:430 msgid "third" msgstr "troisième" -#: lib/object.php:377 +#: lib/object.php:431 msgid "fourth" msgstr "quatrième" -#: lib/object.php:378 +#: lib/object.php:432 msgid "fifth" msgstr "cinquième" -#: lib/object.php:379 +#: lib/object.php:433 msgid "last" msgstr "dernier" -#: lib/object.php:401 +#: lib/object.php:467 templates/calendar.php:7 msgid "January" msgstr "Janvier" -#: lib/object.php:402 +#: lib/object.php:468 templates/calendar.php:7 msgid "February" msgstr "Février" -#: lib/object.php:403 +#: lib/object.php:469 templates/calendar.php:7 msgid "March" msgstr "Mars" -#: lib/object.php:404 +#: lib/object.php:470 templates/calendar.php:7 msgid "April" msgstr "Avril" -#: lib/object.php:405 +#: lib/object.php:471 templates/calendar.php:7 msgid "May" msgstr "Mai" -#: lib/object.php:406 +#: lib/object.php:472 templates/calendar.php:7 msgid "June" msgstr "Juin" -#: lib/object.php:407 +#: lib/object.php:473 templates/calendar.php:7 msgid "July" msgstr "Juillet" -#: lib/object.php:408 +#: lib/object.php:474 templates/calendar.php:7 msgid "August" msgstr "Août" -#: lib/object.php:409 +#: lib/object.php:475 templates/calendar.php:7 msgid "September" msgstr "Septembre" -#: lib/object.php:410 +#: lib/object.php:476 templates/calendar.php:7 msgid "October" msgstr "Octobre" -#: lib/object.php:411 +#: lib/object.php:477 templates/calendar.php:7 msgid "November" msgstr "Novembre" -#: lib/object.php:412 +#: lib/object.php:478 templates/calendar.php:7 msgid "December" msgstr "Décembre" -#: lib/object.php:418 +#: lib/object.php:488 msgid "by events date" msgstr "par date d’événements" -#: lib/object.php:419 +#: lib/object.php:489 msgid "by yearday(s)" msgstr "par jour(s) de l'année" -#: lib/object.php:420 +#: lib/object.php:490 msgid "by weeknumber(s)" msgstr "par numéro de semaine(s)" -#: lib/object.php:421 +#: lib/object.php:491 msgid "by day and month" msgstr "par jour et mois" -#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +#: lib/search.php:35 lib/search.php:37 lib/search.php:40 msgid "Date" msgstr "Date" -#: lib/search.php:40 +#: lib/search.php:43 msgid "Cal." msgstr "Cal." +#: templates/calendar.php:6 +msgid "Sun." +msgstr "Dim." + +#: templates/calendar.php:6 +msgid "Mon." +msgstr "Lun." + +#: templates/calendar.php:6 +msgid "Tue." +msgstr "Mar." + +#: templates/calendar.php:6 +msgid "Wed." +msgstr "Mer." + +#: templates/calendar.php:6 +msgid "Thu." +msgstr "Jeu" + +#: templates/calendar.php:6 +msgid "Fri." +msgstr "Ven." + +#: templates/calendar.php:6 +msgid "Sat." +msgstr "Sam." + +#: templates/calendar.php:8 +msgid "Jan." +msgstr "Jan." + +#: templates/calendar.php:8 +msgid "Feb." +msgstr "Fév." + +#: templates/calendar.php:8 +msgid "Mar." +msgstr "Mars" + +#: templates/calendar.php:8 +msgid "Apr." +msgstr "Avr." + +#: templates/calendar.php:8 +msgid "May." +msgstr "Mai" + +#: templates/calendar.php:8 +msgid "Jun." +msgstr "Juin" + +#: templates/calendar.php:8 +msgid "Jul." +msgstr "Juil." + +#: templates/calendar.php:8 +msgid "Aug." +msgstr "Août" + +#: templates/calendar.php:8 +msgid "Sep." +msgstr "Sep." + +#: templates/calendar.php:8 +msgid "Oct." +msgstr "Oct." + +#: templates/calendar.php:8 +msgid "Nov." +msgstr "Nov." + +#: templates/calendar.php:8 +msgid "Dec." +msgstr "Déc." + #: templates/calendar.php:11 msgid "All day" msgstr "Journée entière" -#: templates/calendar.php:12 templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nouveau Calendrier" - #: templates/calendar.php:13 msgid "Missing fields" msgstr "Champs manquants" @@ -362,27 +468,27 @@ msgstr "L'évènement s'est terminé avant qu'il ne commence" msgid "There was a database fail" msgstr "Il y a eu un échec dans la base de donnée" -#: templates/calendar.php:40 +#: templates/calendar.php:38 msgid "Week" msgstr "Semaine" -#: templates/calendar.php:41 +#: templates/calendar.php:39 msgid "Month" msgstr "Mois" -#: templates/calendar.php:42 +#: templates/calendar.php:40 msgid "List" msgstr "Liste" -#: templates/calendar.php:48 +#: templates/calendar.php:44 msgid "Today" msgstr "Aujourd'hui" -#: templates/calendar.php:49 +#: templates/calendar.php:45 msgid "Calendars" msgstr "Calendriers" -#: templates/calendar.php:67 +#: templates/calendar.php:59 msgid "There was a fail, while parsing the file." msgstr "Une erreur est survenue pendant la lecture du fichier." @@ -395,7 +501,7 @@ msgid "Your calendars" msgstr "Vos calendriers" #: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:5 +#: templates/part.choosecalendar.rowfields.php:11 msgid "CalDav Link" msgstr "Lien CalDav" @@ -407,19 +513,19 @@ msgstr "Calendriers partagés" msgid "No shared calendars" msgstr "Aucun calendrier partagé" -#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.choosecalendar.rowfields.php:8 msgid "Share Calendar" msgstr "Partager le calendrier" -#: templates/part.choosecalendar.rowfields.php:6 +#: templates/part.choosecalendar.rowfields.php:14 msgid "Download" msgstr "Télécharger" -#: templates/part.choosecalendar.rowfields.php:7 +#: templates/part.choosecalendar.rowfields.php:17 msgid "Edit" msgstr "Éditer" -#: templates/part.choosecalendar.rowfields.php:8 +#: templates/part.choosecalendar.rowfields.php:20 #: templates/part.editevent.php:9 msgid "Delete" msgstr "Supprimer" @@ -505,23 +611,23 @@ msgstr "Séparer les catégories par des virgules" msgid "Edit categories" msgstr "Modifier les catégories" -#: templates/part.eventform.php:56 templates/part.showevent.php:55 +#: templates/part.eventform.php:56 templates/part.showevent.php:52 msgid "All Day Event" msgstr "Journée entière" -#: templates/part.eventform.php:60 templates/part.showevent.php:59 +#: templates/part.eventform.php:60 templates/part.showevent.php:56 msgid "From" msgstr "De" -#: templates/part.eventform.php:68 templates/part.showevent.php:67 +#: templates/part.eventform.php:68 templates/part.showevent.php:64 msgid "To" msgstr "À" -#: templates/part.eventform.php:76 templates/part.showevent.php:75 +#: templates/part.eventform.php:76 templates/part.showevent.php:72 msgid "Advanced options" msgstr "Options avancées" -#: templates/part.eventform.php:81 templates/part.showevent.php:80 +#: templates/part.eventform.php:81 templates/part.showevent.php:77 msgid "Location" msgstr "Emplacement" @@ -529,7 +635,7 @@ msgstr "Emplacement" msgid "Location of the Event" msgstr "Emplacement de l'événement" -#: templates/part.eventform.php:89 templates/part.showevent.php:88 +#: templates/part.eventform.php:89 templates/part.showevent.php:85 msgid "Description" msgstr "Description" @@ -537,84 +643,86 @@ msgstr "Description" msgid "Description of the Event" msgstr "Description de l'événement" -#: templates/part.eventform.php:100 templates/part.showevent.php:98 +#: templates/part.eventform.php:100 templates/part.showevent.php:95 msgid "Repeat" msgstr "Répétition" -#: templates/part.eventform.php:107 templates/part.showevent.php:105 +#: templates/part.eventform.php:107 templates/part.showevent.php:102 msgid "Advanced" msgstr "Avancé" -#: templates/part.eventform.php:151 templates/part.showevent.php:149 +#: templates/part.eventform.php:151 templates/part.showevent.php:146 msgid "Select weekdays" msgstr "Sélection des jours de la semaine" #: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:162 templates/part.showevent.php:175 +#: templates/part.showevent.php:159 templates/part.showevent.php:172 msgid "Select days" msgstr "Sélection des jours" -#: templates/part.eventform.php:169 templates/part.showevent.php:167 +#: templates/part.eventform.php:169 templates/part.showevent.php:164 msgid "and the events day of year." msgstr "et les événements de l'année par jour." -#: templates/part.eventform.php:182 templates/part.showevent.php:180 +#: templates/part.eventform.php:182 templates/part.showevent.php:177 msgid "and the events day of month." msgstr "et les événements du mois par jour." -#: templates/part.eventform.php:190 templates/part.showevent.php:188 +#: templates/part.eventform.php:190 templates/part.showevent.php:185 msgid "Select months" msgstr "Sélection des mois" -#: templates/part.eventform.php:203 templates/part.showevent.php:201 +#: templates/part.eventform.php:203 templates/part.showevent.php:198 msgid "Select weeks" msgstr "Sélection des semaines" -#: templates/part.eventform.php:208 templates/part.showevent.php:206 +#: templates/part.eventform.php:208 templates/part.showevent.php:203 msgid "and the events week of year." msgstr "et les événements de l'année par semaine." -#: templates/part.eventform.php:214 templates/part.showevent.php:212 +#: templates/part.eventform.php:214 templates/part.showevent.php:209 msgid "Interval" msgstr "Intervalle" -#: templates/part.eventform.php:220 templates/part.showevent.php:218 +#: templates/part.eventform.php:220 templates/part.showevent.php:215 msgid "End" msgstr "Fin" -#: templates/part.eventform.php:233 templates/part.showevent.php:231 +#: templates/part.eventform.php:233 templates/part.showevent.php:228 msgid "occurrences" msgstr "occurrences" -#: templates/part.import.php:1 -msgid "Import a calendar file" -msgstr "Importer un fichier de calendriers" - -#: templates/part.import.php:6 -msgid "Please choose the calendar" -msgstr "Choisissez le calendrier svp" - -#: templates/part.import.php:10 +#: templates/part.import.php:14 msgid "create a new calendar" msgstr "Créer un nouveau calendrier" -#: templates/part.import.php:15 +#: templates/part.import.php:17 +msgid "Import a calendar file" +msgstr "Importer un fichier de calendriers" + +#: templates/part.import.php:24 +msgid "Please choose a calendar" +msgstr "Veuillez sélectionner un calendrier" + +#: templates/part.import.php:36 msgid "Name of new calendar" msgstr "Nom pour le nouveau calendrier" -#: templates/part.import.php:17 +#: templates/part.import.php:44 +msgid "Take an available name!" +msgstr "Choisissez un nom disponible !" + +#: templates/part.import.php:45 +msgid "" +"A Calendar with this name already exists. If you continue anyhow, these " +"calendars will be merged." +msgstr "Un calendrier de ce nom existe déjà. Si vous choisissez de continuer les calendriers seront fusionnés." + +#: templates/part.import.php:47 msgid "Import" msgstr "Importer" -#: templates/part.import.php:20 -msgid "Importing calendar" -msgstr "Import du calendrier" - -#: templates/part.import.php:23 -msgid "Calendar imported successfully" -msgstr "Calendrier importé avec succès" - -#: templates/part.import.php:24 +#: templates/part.import.php:56 msgid "Close Dialog" msgstr "Fermer la fenêtre" @@ -630,15 +738,11 @@ msgstr "Voir un événement" msgid "No categories selected" msgstr "Aucune catégorie sélectionnée" -#: templates/part.showevent.php:25 -msgid "Select category" -msgstr "Sélectionner une catégorie" - #: templates/part.showevent.php:37 msgid "of" msgstr "de" -#: templates/part.showevent.php:62 templates/part.showevent.php:70 +#: templates/part.showevent.php:59 templates/part.showevent.php:67 msgid "at" msgstr "à" @@ -666,9 +770,33 @@ msgstr "12h" msgid "First day of the week" msgstr "Premier jour de la semaine" -#: templates/settings.php:49 -msgid "Calendar CalDAV syncing address:" -msgstr "Adresse de synchronisation du calendrier CalDAV :" +#: templates/settings.php:47 +msgid "Cache" +msgstr "Cache" + +#: templates/settings.php:48 +msgid "Clear cache for repeating events" +msgstr "Nettoyer le cache des événements répétitifs" + +#: templates/settings.php:53 +msgid "Calendar CalDAV syncing addresses" +msgstr "Adresses de synchronisation des calendriers CalDAV" + +#: templates/settings.php:53 +msgid "more info" +msgstr "plus d'infos" + +#: templates/settings.php:55 +msgid "Primary address (Kontact et al)" +msgstr "Adresses principales (Kontact et assimilés)" + +#: templates/settings.php:57 +msgid "iOS/OS X" +msgstr "iOS/OS X" + +#: templates/settings.php:59 +msgid "Read only iCalendar link(s)" +msgstr "lien(s) iCalendar en lecture seule" #: templates/share.dropdown.php:20 msgid "Users" diff --git a/l10n/fr/contacts.po b/l10n/fr/contacts.po index 4702c3bc4a..64b3e82ca1 100644 --- a/l10n/fr/contacts.po +++ b/l10n/fr/contacts.po @@ -8,106 +8,106 @@ # , 2011. # , 2012. # Jan-Christoph Borchardt , 2011. +# Nahir Mohamed , 2012. +# Nicolas , 2012. +# Robert Di Rosa <>, 2012. # , 2011, 2012. +# Romain DEP. , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: French (http://www.transifex.net/projects/p/owncloud/language/fr/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 09:26+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" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/activation.php:19 ajax/updateaddressbook.php:32 +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 msgid "Error (de)activating addressbook." msgstr "Des erreurs se sont produites lors de l'activation/désactivation du carnet d'adresses." -#: ajax/addcontact.php:59 +#: ajax/addcontact.php:47 msgid "There was an error adding the contact." msgstr "Une erreur s'est produite lors de l'ajout du contact." -#: ajax/addproperty.php:40 +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "Le champ Nom n'est pas défini." + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "L'ID n'est pas défini." + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "Impossible de lire le contact :" + +#: ajax/addproperty.php:56 msgid "Cannot add empty property." msgstr "Impossible d'ajouter un champ vide." -#: ajax/addproperty.php:52 +#: ajax/addproperty.php:67 msgid "At least one of the address fields has to be filled out." msgstr "Au moins un des champs d'adresses doit être complété." -#: ajax/addproperty.php:62 +#: ajax/addproperty.php:76 msgid "Trying to add duplicate property: " msgstr "Ajout d'une propriété en double:" -#: ajax/addproperty.php:120 -msgid "Error adding contact property." -msgstr "Erreur lors de l'ajout du champ." +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "Erreur pendant l'ajout de la propriété du contact :" -#: ajax/categories/categoriesfor.php:15 +#: ajax/categories/categoriesfor.php:17 msgid "No ID provided" msgstr "Aucun ID fourni" -#: ajax/categories/categoriesfor.php:27 +#: ajax/categories/categoriesfor.php:34 msgid "Error setting checksum." msgstr "Erreur lors du paramétrage du hachage." -#: ajax/categories/delete.php:29 +#: ajax/categories/delete.php:19 msgid "No categories selected for deletion." msgstr "Pas de catégories sélectionnées pour la suppression." -#: ajax/categories/delete.php:36 ajax/categories/rescan.php:28 +#: ajax/categories/delete.php:26 msgid "No address books found." msgstr "Pas de carnet d'adresses trouvé." -#: ajax/categories/delete.php:44 ajax/categories/rescan.php:36 +#: ajax/categories/delete.php:34 msgid "No contacts found." msgstr "Aucun contact trouvé." -#: ajax/contactdetails.php:37 +#: ajax/contactdetails.php:31 msgid "Missing ID" msgstr "ID manquant" -#: ajax/contactdetails.php:41 +#: ajax/contactdetails.php:36 msgid "Error parsing VCard for ID: \"" msgstr "Erreur lors de l'analyse du VCard pour l'ID: \"" -#: ajax/createaddressbook.php:18 -msgid "Cannot add addressbook with an empty name." -msgstr "Ne peut être ajouté avec un nom vide." - -#: ajax/createaddressbook.php:24 -msgid "Error adding addressbook." -msgstr "Erreur lors de l'ajout du carnet d'adresses." - -#: ajax/createaddressbook.php:30 -msgid "Error activating addressbook." -msgstr "Erreur lors de l'activation du carnet d'adresses." - -#: ajax/currentphoto.php:34 ajax/oc_photo.php:37 ajax/uploadphoto.php:41 +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 #: ajax/uploadphoto.php:68 msgid "No contact ID was submitted." msgstr "Aucun ID de contact envoyé" -#: ajax/currentphoto.php:40 +#: ajax/currentphoto.php:36 msgid "Error reading contact photo." msgstr "Erreur de lecture de la photo du contact." -#: ajax/currentphoto.php:52 +#: ajax/currentphoto.php:48 msgid "Error saving temporary file." msgstr "Erreur de sauvegarde du fichier temporaire." -#: ajax/currentphoto.php:55 +#: ajax/currentphoto.php:51 msgid "The loading photo is not valid." msgstr "La photo chargée est invalide." -#: ajax/deletecard.php:37 ajax/saveproperty.php:58 -msgid "id is not set." -msgstr "L'ID n'est pas défini." - #: ajax/deleteproperty.php:36 msgid "Information about vCard is incorrect. Please reload the page." msgstr "Les informations relatives à cette vCard sont incorrectes. Veuillez recharger la page." @@ -116,328 +116,387 @@ msgstr "Les informations relatives à cette vCard sont incorrectes. Veuillez rec msgid "Error deleting contact property." msgstr "Erreur lors de la suppression du champ." -#: ajax/editname.php:37 +#: ajax/editname.php:31 msgid "Contact ID is missing." msgstr "L'ID du contact est manquant." -#: ajax/loadphoto.php:44 -msgid "Missing contact id." -msgstr "ID contact manquant." - -#: ajax/oc_photo.php:41 +#: ajax/oc_photo.php:32 msgid "No photo path was submitted." msgstr "Le chemin de la photo n'a pas été envoyé." -#: ajax/oc_photo.php:48 +#: ajax/oc_photo.php:39 msgid "File doesn't exist:" msgstr "Fichier inexistant:" -#: ajax/oc_photo.php:54 ajax/oc_photo.php:57 +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 msgid "Error loading image." msgstr "Erreur lors du chargement de l'image." -#: ajax/savecrop.php:68 +#: ajax/savecrop.php:67 msgid "Error getting contact object." -msgstr "" +msgstr "Erreur lors de l'obtention de l'objet contact" -#: ajax/savecrop.php:75 +#: ajax/savecrop.php:76 msgid "Error getting PHOTO property." -msgstr "" +msgstr "Erreur lors de l'obtention des propriétés de la photo" -#: ajax/savecrop.php:88 +#: ajax/savecrop.php:93 msgid "Error saving contact." -msgstr "" +msgstr "Erreur de sauvegarde du contact" -#: ajax/savecrop.php:98 +#: ajax/savecrop.php:103 msgid "Error resizing image" -msgstr "" +msgstr "Erreur de redimensionnement de l'image" -#: ajax/savecrop.php:101 +#: ajax/savecrop.php:106 msgid "Error cropping image" -msgstr "" +msgstr "Erreur lors du rognage de l'image" -#: ajax/savecrop.php:104 +#: ajax/savecrop.php:109 msgid "Error creating temporary image" -msgstr "" +msgstr "Erreur de création de l'image temporaire" -#: ajax/savecrop.php:107 +#: ajax/savecrop.php:112 msgid "Error finding image: " -msgstr "" +msgstr "Erreur pour trouver l'image :" -#: ajax/saveproperty.php:55 -msgid "element name is not set." -msgstr "Le champ Nom n'est pas défini." - -#: ajax/saveproperty.php:61 +#: ajax/saveproperty.php:40 msgid "checksum is not set." msgstr "L'hachage n'est pas défini." -#: ajax/saveproperty.php:78 +#: ajax/saveproperty.php:59 msgid "Information about vCard is incorrect. Please reload the page: " msgstr "L'informatiion à propos de la vCard est incorrect. Merci de rafraichir la page:" -#: ajax/saveproperty.php:83 +#: ajax/saveproperty.php:64 msgid "Something went FUBAR. " msgstr "Quelque chose est FUBAR." -#: ajax/saveproperty.php:150 +#: ajax/saveproperty.php:133 msgid "Error updating contact property." msgstr "Erreur lors de la mise à jour du champ." -#: ajax/updateaddressbook.php:20 +#: ajax/updateaddressbook.php:21 msgid "Cannot update addressbook with an empty name." msgstr "Impossible de mettre à jour le carnet d'adresses avec un nom vide." -#: ajax/updateaddressbook.php:26 +#: ajax/updateaddressbook.php:25 msgid "Error updating addressbook." msgstr "Erreur lors de la mise à jour du carnet d'adresses." -#: ajax/uploadimport.php:46 ajax/uploadimport.php:76 +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 msgid "Error uploading contacts to storage." msgstr "Erreur lors de l'envoi des contacts vers le stockage." -#: ajax/uploadimport.php:59 ajax/uploadphoto.php:77 +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 msgid "There is no error, the file uploaded with success" msgstr "Il n'y a pas d'erreur, le fichier a été envoyé avec succes." -#: ajax/uploadimport.php:60 ajax/uploadphoto.php:78 +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Le fichier envoyé dépasse la directive upload_max_filesize dans php.ini" -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:79 +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier envoyé dépasse la directive MAX_FILE_SIZE qui est spécifiée dans le formulaire HTML." -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:80 +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier envoyé n'a été que partiellement envoyé." -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:81 +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 msgid "No file was uploaded" msgstr "Pas de fichier envoyé." -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:82 +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 msgid "Missing a temporary folder" msgstr "Absence de dossier temporaire." -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:102 +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 msgid "Couldn't save temporary image: " -msgstr "" +msgstr "Impossible de sauvegarder l'image temporaire :" -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:105 +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 msgid "Couldn't load temporary image: " -msgstr "" +msgstr "Impossible de charger l'image temporaire :" #: ajax/uploadphoto.php:71 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Aucun fichier n'a été chargé. Erreur inconnue" -#: appinfo/app.php:17 templates/settings.php:3 +#: appinfo/app.php:19 templates/settings.php:3 msgid "Contacts" msgstr "Contacts" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Sorry, this functionality has not been implemented yet" -msgstr "" +msgstr "Désolé cette fonctionnalité n'a pas encore été implementée" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Not implemented" -msgstr "" +msgstr "Pas encore implémenté" -#: js/contacts.js:29 +#: js/contacts.js:58 msgid "Couldn't get a valid address." -msgstr "" +msgstr "Impossible de trouver une adresse valide." -#: js/contacts.js:29 js/contacts.js:334 js/contacts.js:341 js/contacts.js:355 -#: js/contacts.js:393 js/contacts.js:399 js/contacts.js:565 js/contacts.js:605 -#: js/contacts.js:631 js/contacts.js:668 js/contacts.js:747 js/contacts.js:753 -#: js/contacts.js:765 js/contacts.js:799 js/contacts.js:1056 -#: js/contacts.js:1064 js/contacts.js:1073 js/contacts.js:1130 -#: js/contacts.js:1146 js/contacts.js:1161 js/contacts.js:1173 -#: js/contacts.js:1196 js/contacts.js:1449 js/contacts.js:1457 -#: js/contacts.js:1483 js/contacts.js:1494 js/contacts.js:1509 -#: js/contacts.js:1526 js/contacts.js:1596 js/contacts.js:1644 -#: js/contacts.js:1654 js/contacts.js:1657 +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 msgid "Error" -msgstr "" +msgstr "Erreur" -#: js/contacts.js:364 -msgid "Are you sure you want to delete this contact?" -msgstr "" - -#: js/contacts.js:364 -msgid "Warning" -msgstr "" - -#: js/contacts.js:605 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:631 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:747 js/contacts.js:765 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:781 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1056 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1064 js/contacts.js:1449 js/contacts.js:1634 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1119 -msgid "Select photo" -msgstr "" - -#: js/contacts.js:1257 js/contacts.js:1290 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1305 templates/part.importaddressbook.php:25 -msgid "Drop a VCF file to import contacts." -msgstr "Glisser un fichier VCF pour importer des contacts." - -#: js/contacts.js:1475 -msgid "Import done. Success/Failure: " -msgstr "" - -#: js/contacts.js:1476 -msgid "OK" -msgstr "" - -#: js/contacts.js:1494 -msgid "Displayname cannot be empty." -msgstr "" - -#: js/contacts.js:1634 -msgid "Upload too large" -msgstr "" - -#: js/contacts.js:1638 -msgid "Only image files can be used as profile picture." -msgstr "" - -#: js/contacts.js:1638 -msgid "Wrong file type" -msgstr "" - -#: js/contacts.js:1644 -msgid "" -"Your browser doesn't support AJAX upload. Please click on the profile " -"picture to select a photo to upload." -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: lib/app.php:30 -msgid "Addressbook not found." -msgstr "Carnet d'adresses introuvable." - -#: lib/app.php:34 -msgid "This is not your addressbook." -msgstr "Ce n'est pas votre carnet d'adresses." - -#: lib/app.php:45 -msgid "Contact could not be found." -msgstr "Ce contact n'a pu être trouvé." - -#: lib/app.php:101 templates/part.contact.php:109 -msgid "Address" -msgstr "Adresse" - -#: lib/app.php:102 -msgid "Telephone" -msgstr "Téléphone" - -#: lib/app.php:103 templates/part.contact.php:108 -msgid "Email" -msgstr "E-mail" - -#: lib/app.php:104 templates/part.contact.php:33 templates/part.contact.php:34 -#: templates/part.contact.php:104 -msgid "Organization" -msgstr "Société" - -#: lib/app.php:116 lib/app.php:123 lib/app.php:133 -msgid "Work" -msgstr "Travail" - -#: lib/app.php:117 lib/app.php:121 lib/app.php:134 -msgid "Home" -msgstr "Maison" - -#: lib/app.php:122 -msgid "Mobile" -msgstr "Mobile" - -#: lib/app.php:124 -msgid "Text" -msgstr "Texte" - -#: lib/app.php:125 -msgid "Voice" -msgstr "Voix" - -#: lib/app.php:126 -msgid "Message" -msgstr "Message" - -#: lib/app.php:127 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:128 -msgid "Video" -msgstr "Vidéo" - -#: lib/app.php:129 -msgid "Pager" -msgstr "Bipeur" - -#: lib/app.php:135 -msgid "Internet" -msgstr "Internet" - -#: lib/hooks.php:79 -msgid "{name}'s Birthday" -msgstr "Anniversaire de {name}" - -#: lib/search.php:22 +#: js/contacts.js:389 lib/search.php:15 msgid "Contact" msgstr "Contact" -#: templates/index.php:13 +#: js/contacts.js:389 +msgid "New" +msgstr "Nouveau" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "Nouveau Contact" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "Cette valeur ne doit pas être vide" + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "Impossible de sérialiser les éléments" + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "'deleteProperty' a été appelé sans type d'arguments. Merci de rapporter un bug à bugs.owncloud.org" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "Éditer le nom" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "Aucun fichiers choisis pour être chargés" + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "Le fichier que vous tenter de charger dépasse la taille maximum de fichier autorisé sur ce serveur." + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "Sélectionner un type" + +#: js/loader.js:49 +msgid "Result: " +msgstr "Résultat :" + +#: js/loader.js:49 +msgid " imported, " +msgstr "importé," + +#: js/loader.js:49 +msgid " failed." +msgstr "échoué." + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "Carnet d'adresses introuvable." + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "Ce n'est pas votre carnet d'adresses." + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "Ce contact n'a pu être trouvé." + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "Adresse" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "Téléphone" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "E-mail" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "Société" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "Travail" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "Maison" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "Mobile" + +#: lib/app.php:123 +msgid "Text" +msgstr "Texte" + +#: lib/app.php:124 +msgid "Voice" +msgstr "Voix" + +#: lib/app.php:125 +msgid "Message" +msgstr "Message" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Vidéo" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Bipeur" + +#: lib/app.php:134 +msgid "Internet" +msgstr "Internet" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "Anniversaire" + +#: lib/app.php:170 +msgid "Business" +msgstr "Business" + +#: lib/app.php:171 +msgid "Call" +msgstr "Appel" + +#: lib/app.php:172 +msgid "Clients" +msgstr "Clients" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "Livreur" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "Vacances" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "Idées" + +#: lib/app.php:176 +msgid "Journey" +msgstr "Trajet" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "Jubilé" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "Rendez-vous" + +#: lib/app.php:179 +msgid "Other" +msgstr "Autre" + +#: lib/app.php:180 +msgid "Personal" +msgstr "Personnel" + +#: lib/app.php:181 +msgid "Projects" +msgstr "Projets" + +#: lib/app.php:182 +msgid "Questions" +msgstr "Questions" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "Anniversaire de {name}" + +#: templates/index.php:15 msgid "Add Contact" msgstr "Ajouter un Contact" -#: templates/index.php:14 +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "Importer" + +#: templates/index.php:20 msgid "Addressbooks" msgstr "Carnets d'adresses" +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "Fermer" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "Raccourcis clavier" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "Navigation" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "Contact suivant dans la liste" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "Contact précédent dans la liste" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "Dé/Replier le carnet d'adresses courant" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "Passer au carnet d'adresses suivant/précédent" + +#: templates/index.php:54 +msgid "Actions" +msgstr "Actions" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "Actualiser la liste des contacts" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "Ajouter un nouveau contact" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "Ajouter un nouveau carnet d'adresses" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "Effacer le contact sélectionné" + #: templates/part.chooseaddressbook.php:1 msgid "Configure Address Books" msgstr "Paramétrer carnet d'adresses" @@ -446,11 +505,7 @@ msgstr "Paramétrer carnet d'adresses" msgid "New Address Book" msgstr "Nouveau Carnet d'adresses" -#: templates/part.chooseaddressbook.php:17 -msgid "Import from VCF" -msgstr "Importer depuis VCF" - -#: templates/part.chooseaddressbook.php:22 +#: templates/part.chooseaddressbook.php:21 #: templates/part.chooseaddressbook.rowfields.php:8 msgid "CardDav Link" msgstr "Lien CardDav" @@ -464,186 +519,195 @@ msgid "Edit" msgstr "Modifier" #: templates/part.chooseaddressbook.rowfields.php:17 -#: templates/part.contact.php:34 templates/part.contact.php:36 -#: templates/part.contact.php:38 templates/part.contact.php:42 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 msgid "Delete" msgstr "Supprimer" -#: templates/part.contact.php:12 -msgid "Download contact" -msgstr "Télécharger le contact" - -#: templates/part.contact.php:13 -msgid "Delete contact" -msgstr "Supprimer le contact" - -#: templates/part.contact.php:19 +#: templates/part.contact.php:16 msgid "Drop photo to upload" msgstr "Glisser une photo pour l'envoi" -#: templates/part.contact.php:29 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formatage personnalisé, Nom court, Nom complet, Inversé, Inversé avec virgule" - -#: templates/part.contact.php:30 -msgid "Edit name details" -msgstr "Editer les noms" - -#: templates/part.contact.php:35 templates/part.contact.php:105 -msgid "Nickname" -msgstr "Surnom" - -#: templates/part.contact.php:36 -msgid "Enter nickname" -msgstr "Entrer un surnom" - -#: templates/part.contact.php:37 templates/part.contact.php:106 -msgid "Birthday" -msgstr "Anniversaire" - -#: templates/part.contact.php:38 -msgid "dd-mm-yyyy" -msgstr "jj-mm-aaaa" - -#: templates/part.contact.php:39 templates/part.contact.php:111 -msgid "Groups" -msgstr "Groupes" - -#: templates/part.contact.php:41 -msgid "Separate groups with commas" -msgstr "Séparer les groupes avec des virgules" - -#: templates/part.contact.php:42 -msgid "Edit groups" -msgstr "Editer les groupes" - -#: templates/part.contact.php:55 templates/part.contact.php:69 -msgid "Preferred" -msgstr "Préféré" - -#: templates/part.contact.php:56 -msgid "Please specify a valid email address." -msgstr "Merci d'entrer une adresse e-mail valide." - -#: templates/part.contact.php:56 -msgid "Enter email address" -msgstr "Entrer une adresse e-mail" - -#: templates/part.contact.php:60 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:61 -msgid "Delete email address" -msgstr "Supprimer l'adresse e-mail" - -#: templates/part.contact.php:70 -msgid "Enter phone number" -msgstr "Entrer un numéro de téléphone" - -#: templates/part.contact.php:74 -msgid "Delete phone number" -msgstr "Supprimer le numéro de téléphone" - -#: templates/part.contact.php:84 -msgid "View on map" -msgstr "Voir sur une carte" - -#: templates/part.contact.php:84 -msgid "Edit address details" -msgstr "Editer les adresses" - -#: templates/part.contact.php:95 -msgid "Add notes here." -msgstr "Ajouter des notes ici." - -#: templates/part.contact.php:101 -msgid "Add field" -msgstr "Ajouter un champ." - -#: templates/part.contact.php:103 -msgid "Profile picture" -msgstr "Photo de profil" - -#: templates/part.contact.php:107 -msgid "Phone" -msgstr "Téléphone" - -#: templates/part.contact.php:110 -msgid "Note" -msgstr "Note" - -#: templates/part.contactphoto.php:8 +#: templates/part.contact.php:18 msgid "Delete current photo" msgstr "Supprimer la photo actuelle" -#: templates/part.contactphoto.php:9 +#: templates/part.contact.php:19 msgid "Edit current photo" msgstr "Editer la photo actuelle" -#: templates/part.contactphoto.php:10 +#: templates/part.contact.php:20 msgid "Upload new photo" msgstr "Envoyer une nouvelle photo" -#: templates/part.contactphoto.php:11 +#: templates/part.contact.php:21 msgid "Select photo from ownCloud" msgstr "Sélectionner une photo depuis ownCloud" -#: templates/part.cropphoto.php:64 -msgid "The temporary image has been removed from cache." -msgstr "" +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr "Formatage personnalisé, Nom court, Nom complet, Inversé, Inversé avec virgule" -#: templates/part.edit_address_dialog.php:9 +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "Editer les noms" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "Surnom" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "Entrer un surnom" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" +msgstr "Page web" + +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "http://www.somesite.com" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "Allez à la page web" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "jj-mm-aaaa" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "Groupes" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "Séparer les groupes avec des virgules" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "Editer les groupes" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "Préféré" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "Merci d'entrer une adresse e-mail valide." + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "Entrer une adresse e-mail" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "Envoyer à l'adresse" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "Supprimer l'adresse e-mail" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "Entrer un numéro de téléphone" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "Supprimer le numéro de téléphone" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "Voir sur une carte" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "Editer les adresses" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "Ajouter des notes ici." + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "Ajouter un champ." + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "Téléphone" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "Note" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "Télécharger le contact" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "Supprimer le contact" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "L'image temporaire a été supprimée du cache." + +#: templates/part.edit_address_dialog.php:6 msgid "Edit address" msgstr "Editer l'adresse" -#: templates/part.edit_address_dialog.php:14 +#: templates/part.edit_address_dialog.php:10 msgid "Type" msgstr "Type" -#: templates/part.edit_address_dialog.php:22 -#: templates/part.edit_address_dialog.php:25 +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 msgid "PO Box" msgstr "Boîte postale" -#: templates/part.edit_address_dialog.php:29 -#: templates/part.edit_address_dialog.php:32 +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "Adresse postale" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "Rue et numéro" + +#: templates/part.edit_address_dialog.php:30 msgid "Extended" msgstr "Étendu" -#: templates/part.edit_address_dialog.php:35 -#: templates/part.edit_address_dialog.php:38 -msgid "Street" -msgstr "Rue" +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "Numéro d'appartement, etc." -#: templates/part.edit_address_dialog.php:41 -#: templates/part.edit_address_dialog.php:44 +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 msgid "City" msgstr "Ville" -#: templates/part.edit_address_dialog.php:47 -#: templates/part.edit_address_dialog.php:50 +#: templates/part.edit_address_dialog.php:42 msgid "Region" msgstr "Région" -#: templates/part.edit_address_dialog.php:53 -#: templates/part.edit_address_dialog.php:56 +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "Ex: état ou province" + +#: templates/part.edit_address_dialog.php:48 msgid "Zipcode" msgstr "Code postal" -#: templates/part.edit_address_dialog.php:59 -#: templates/part.edit_address_dialog.php:62 +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "Code postal" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 msgid "Country" msgstr "Pays" -#: templates/part.edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Editer les catégories" - -#: templates/part.edit_categories_dialog.php:14 -msgid "Add" -msgstr "Ajouter" - #: templates/part.edit_name_dialog.php:16 msgid "Addressbook" msgstr "Carnet d'adresses" @@ -694,19 +758,19 @@ msgstr "Suffixes hon." #: templates/part.edit_name_dialog.php:45 msgid "J.D." -msgstr "" +msgstr "J.D." #: templates/part.edit_name_dialog.php:46 msgid "M.D." -msgstr "" +msgstr "Dr." #: templates/part.edit_name_dialog.php:47 msgid "D.O." -msgstr "" +msgstr "D.O." #: templates/part.edit_name_dialog.php:48 msgid "D.C." -msgstr "" +msgstr "D.C." #: templates/part.edit_name_dialog.php:49 msgid "Ph.D." @@ -714,15 +778,15 @@ msgstr "Dr" #: templates/part.edit_name_dialog.php:50 msgid "Esq." -msgstr "" +msgstr "Esq." #: templates/part.edit_name_dialog.php:51 msgid "Jr." -msgstr "" +msgstr "Jr." #: templates/part.edit_name_dialog.php:52 msgid "Sn." -msgstr "" +msgstr "Sn." #: templates/part.editaddressbook.php:9 msgid "New Addressbook" @@ -749,7 +813,6 @@ msgid "Submit" msgstr "Envoyer" #: templates/part.editaddressbook.php:30 -#: templates/part.importaddressbook.php:34 msgid "Cancel" msgstr "Annuler" @@ -769,33 +832,10 @@ msgstr "Créer un nouveau carnet d'adresses" msgid "Name of new addressbook" msgstr "Nom du nouveau carnet d'adresses" -#: templates/part.import.php:17 -msgid "Import" -msgstr "Importer" - #: templates/part.import.php:20 msgid "Importing contacts" msgstr "Importation des contacts" -#: templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/part.importaddressbook.php:12 -msgid "" -"Currently this import function doesn't work while encryption is enabled.
Please upload your VCF file with the file manager and click on it to " -"import." -msgstr "" - -#: templates/part.importaddressbook.php:16 -msgid "Select address book to import to:" -msgstr "Selectionner le carnet d'adresses à importer vers:" - -#: templates/part.importaddressbook.php:26 -msgid "Select from HD" -msgstr "Selectionner depuis le disque dur" - #: templates/part.no_contacts.php:2 msgid "You have no contacts in your addressbook." msgstr "Il n'y a pas de contact dans votre carnet d'adresses." @@ -808,6 +848,18 @@ msgstr "Ajouter un contact" msgid "Configure addressbooks" msgstr "Paramétrer carnet d'adresses" +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "Choix du carnet d'adresses" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "Saisissez le nom" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "Saisissez une description" + #: templates/settings.php:4 msgid "CardDAV syncing addresses" msgstr "Synchronisation des contacts CardDAV" @@ -823,3 +875,7 @@ msgstr "Adresse principale" #: templates/settings.php:8 msgid "iOS/OS X" msgstr "iOS/OS X" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "Lien(s) vers le répertoire de vCards en lecture seule" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index b510e4ac0d..cc037ee774 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -4,48 +4,50 @@ # # Translators: # , 2012. +# Nahir Mohamed , 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-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: French (http://www.transifex.net/projects/p/owncloud/language/fr/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 09:03+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" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 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:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Le fichier téléversé excède la valeur de upload_max_filesize spécifiée dans php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement téléversé" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Aucun fichier n'a été téléversé" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Il manque un répertoire temporaire" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" @@ -53,57 +55,65 @@ msgstr "Erreur d'écriture sur le disque" msgid "Files" msgstr "Fichiers" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "Ne plus partager" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Supprimer" + #: js/filelist.js:186 msgid "undo deletion" -msgstr "" +msgstr "Annuler la suppression" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Générer un fichier ZIP, cela peut prendre du temps" #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet." #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Erreur de chargement" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "En cours" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Chargement annulé" #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Nom invalide, '/' n'est pas autorisé." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Taille" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Modifié" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "dossier" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "dossiers" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "fichier" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "fichiers" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +183,6 @@ msgstr "Partager" msgid "Download" msgstr "Téléchargement" -#: templates/index.php:56 -msgid "Delete" -msgstr "Supprimer" - #: templates/index.php:64 msgid "Upload too large" msgstr "Fichier trop volumineux" diff --git a/l10n/fr/gallery.po b/l10n/fr/gallery.po index 1bd0947079..ea45c42e53 100644 --- a/l10n/fr/gallery.po +++ b/l10n/fr/gallery.po @@ -3,77 +3,43 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Nahir Mohamed , 2012. # , 2012. +# Romain DEP. , 2012. # Soul Kim , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: French (http://www.transifex.net/projects/p/owncloud/language/fr/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 09:05+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" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: appinfo/app.php:37 +#: appinfo/app.php:39 msgid "Pictures" msgstr "Images" -#: js/album_cover.js:44 +#: js/pictures.js:12 msgid "Share gallery" -msgstr "" +msgstr "Partager la galerie" -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 +#: js/pictures.js:32 msgid "Error: " -msgstr "" +msgstr "Erreur :" -#: js/album_cover.js:64 js/album_cover.js:100 +#: js/pictures.js:32 msgid "Internal error" -msgstr "" +msgstr "Erreur interne" -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Préférences" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Analyser à nouveau" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Arrêter" - -#: templates/index.php:18 -msgid "Share" -msgstr "Partager" +#: templates/index.php:27 +msgid "Slideshow" +msgstr "Diaporama" #: templates/view_album.php:19 msgid "Back" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 5184f5e460..5cfd59dbba 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -6,16 +6,18 @@ # , 2011. # , 2012. # Jan-Christoph Borchardt , 2011. +# Nahir Mohamed , 2012. # , 2012. # , 2011, 2012. +# Romain DEP. , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: French (http://www.transifex.net/projects/p/owncloud/language/fr/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -24,65 +26,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "E-mail sauvegardé" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "E-mail invalide" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "Identifiant OpenID changé" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Requête invalide" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Langue changée" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Désactivé" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Activé" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Sauvegarde..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Français" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "Alertes de sécurité" + +#: templates/admin.php:28 msgid "Log" msgstr "Journaux" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Plus" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" -msgstr "Ajouter votre application" +msgstr "Ajoutez votre application" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Sélectionner une Application" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Voir la page des applications à l'url apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "sous licence" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "par" @@ -174,34 +184,42 @@ msgstr "Aidez à traduire" msgid "use this address to connect to your ownCloud in your file manager" msgstr "utilisez cette adresse pour vous connecter à votre ownCloud depuis un explorateur de fichiers" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nom" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Mot de passe" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Groupes" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Créer" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Quota par défaut" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Autre" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Quota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Supprimer" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 2d3b9ac338..622cde377c 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Galician (http://www.transifex.net/projects/p/owncloud/language/gl/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -21,65 +21,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Correo electrónico gardado" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "correo electrónico non válido" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "Mudou o OpenID" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Petición incorrecta" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "O idioma mudou" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Deshabilitar" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Habilitar" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Gardando..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Galego" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Conectar" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Máis" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Engade o teu aplicativo" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Escolla un Aplicativo" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Vexa a páxina do aplicativo en apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licenciado" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "por" @@ -171,34 +179,42 @@ msgstr "Axude na tradución" msgid "use this address to connect to your ownCloud in your file manager" msgstr "utilice este enderezo para conectar ao seu ownCloud no xestor de ficheiros" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nome" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Contrasinal" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupos" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Crear" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Cuota por omisión" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Outro" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Cota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Borrar" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index c98f33ca80..0e2b48f3e6 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2011. # Yaron Shahrabani , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Hebrew (http://www.transifex.net/projects/p/owncloud/language/he/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -21,65 +22,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "הדוא״ל נשמר" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "דוא״ל לא חוקי" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID השתנה" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "בקשה לא חוקית" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "שפה השתנתה" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "בטל" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "הפעל" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "שומר.." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "עברית" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "יומן" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "עוד" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "הוספת היישום שלך" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "בחירת יישום" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "צפה בעמוד הישום ב apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "רשיון" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "מאת" @@ -171,34 +180,42 @@ msgstr "עזרה בתרגום" msgid "use this address to connect to your ownCloud in your file manager" msgstr "השתמש בכתובת זו כדי להתחבר ל־ownCloude שלך ממנהל הקבצים" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "שם" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "ססמה" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "קבוצות" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "יצירה" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "מכסת בררת המחדל" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "אחר" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "מכסה" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "מחיקה" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 8d0166d701..d853ac5b27 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Davor Kustec , 2011. +# Davor Kustec , 2011, 2012. # Thomas Silađi , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Croatian (http://www.transifex.net/projects/p/owncloud/language/hr/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,65 +21,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email spremljen" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Neispravan email" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID promijenjen" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Neispravan zahtjev" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Jezik promijenjen" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Isključi" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Uključi" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Spremanje..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__ime_jezika__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "više" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Dodajte vašu aplikaciju" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Odaberite Aplikaciju" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Pogledajte stranicu s aplikacijama na apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licencirano" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "od" @@ -171,34 +179,42 @@ msgstr "Pomoć prevesti" msgid "use this address to connect to your ownCloud in your file manager" msgstr "koristite ovu adresu za spajanje na Cloud u vašem upravitelju datoteka" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Ime" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Lozinka" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupe" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Izradi" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "standardni kvota" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "ostali" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "kvota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Obriši" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 76b3a2b040..5a646b0f67 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.net/projects/p/owncloud/language/hu_HU/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -21,65 +21,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email mentve" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Hibás email" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID megváltozott" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Érvénytelen kérés" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "A nyelv megváltozott" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Letiltás" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Engedélyezés" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Mentés..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Napló" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Tovább" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "App hozzáadása" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Egy App kiválasztása" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Lásd apps.owncloud.com, alkalmazások oldal" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licencelt" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr ":" @@ -171,34 +179,42 @@ msgstr "Segíts lefordítani!" msgid "use this address to connect to your ownCloud in your file manager" msgstr "Használd ezt a címet hogy csatlakozz a saját ownCloud rendszeredhez a fájlkezelődben" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Név" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Jelszó" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Csoportok" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Létrehozás" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Alapértelmezett kvóta" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Egyéb" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Kvóta" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Törlés" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 36ffa29c8e..9538d201b8 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Armenian (http://www.transifex.net/projects/p/owncloud/language/hy/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -25,15 +25,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "" @@ -49,35 +53,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "" @@ -169,34 +177,42 @@ msgstr "" msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 304d175a07..20a6dc619a 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Interlingua (http://www.transifex.net/projects/p/owncloud/language/ia/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,15 +27,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID cambiate" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Requesta invalide" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Linguage cambiate" @@ -51,35 +55,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Interlingua" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Registro" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Plus" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Adder tu application" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Selectionar un app" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "per" @@ -171,34 +179,42 @@ msgstr "Adjuta a traducer" msgid "use this address to connect to your ownCloud in your file manager" msgstr "usa iste addresse pro connecter a tu ownCloud in tu administrator de files" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nomine" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Contrasigno" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Gruppos" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Crear" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Quota predeterminate" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Altere" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Quota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Deler" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index f0fe672de8..e33802637f 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/language/id/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,15 +27,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID telah dirubah" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Permintaan tidak valid" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Bahasa telah diganti" @@ -51,35 +55,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Log" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Lebih" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Tambahkan App anda" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Pilih satu aplikasi" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-terlisensi" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "oleh" @@ -171,34 +179,42 @@ msgstr "Bantu menerjemahkan" msgid "use this address to connect to your ownCloud in your file manager" msgstr "gunakan alamat ini untuk terhubung dengan ownCloud anda dalam file manager anda" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nama" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Password" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Group" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Buat" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Kuota default" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Lain-lain" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Quota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Hapus" diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po index ec3c94d41f..e28f303b92 100644 --- a/l10n/id_ID/settings.po +++ b/l10n/id_ID/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-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" "Last-Translator: owncloud_robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -33,6 +33,10 @@ msgstr "" msgid "Invalid request" msgstr "" +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "" @@ -49,7 +53,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:41 personal.php:42 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "" @@ -173,34 +177,42 @@ msgstr "" msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:15 templates/users.php:60 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "" -#: templates/users.php:17 templates/users.php:61 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "" -#: templates/users.php:19 templates/users.php:62 templates/users.php:78 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "" -#: templates/users.php:25 +#: templates/users.php:32 msgid "Create" msgstr "" -#: templates/users.php:28 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:47 templates/users.php:103 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:63 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "" -#: templates/users.php:110 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 6ae91a7c78..47885e9b06 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-07-26 02:01+0200\n" -"PO-Revision-Date: 2012-07-25 20:36+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" @@ -40,6 +40,10 @@ msgstr "OpenID modificato" msgid "Invalid request" msgstr "Richiesta non valida" +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Lingua modificata" @@ -56,7 +60,7 @@ msgstr "Abilita" msgid "Saving..." msgstr "Salvataggio in corso..." -#: personal.php:41 personal.php:42 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Italiano" @@ -180,34 +184,42 @@ msgstr "Migliora la traduzione" msgid "use this address to connect to your ownCloud in your file manager" msgstr "usa questo indirizzo per connetterti al tuo ownCloud dal gestore file" -#: templates/users.php:15 templates/users.php:60 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nome" -#: templates/users.php:17 templates/users.php:61 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Password" -#: templates/users.php:19 templates/users.php:62 templates/users.php:78 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Gruppi" -#: templates/users.php:25 +#: templates/users.php:32 msgid "Create" msgstr "Crea" -#: templates/users.php:28 +#: templates/users.php:35 msgid "Default Quota" msgstr "Quota predefinita" -#: templates/users.php:47 templates/users.php:103 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Altro" -#: templates/users.php:63 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Quote" -#: templates/users.php:110 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Elimina" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index e0b699f743..1bc2d2cc7f 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Japanese (Japan) (http://www.transifex.net/projects/p/owncloud/language/ja_JP/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -20,65 +20,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "メールアドレスを保存しました" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "無効なメールアドレス" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenIDが変更されました" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "無効なリクエストです" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "言語が変更されました" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "無効" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "有効" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "保存中..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Japanese (日本語)" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "ログ" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "もっと" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "アプリを追加" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "アプリを選択してください" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "apps.owncloud.com でアプリケーションのページを見てください" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "ライセンス" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "@" @@ -170,34 +178,42 @@ msgstr "翻訳に協力する" msgid "use this address to connect to your ownCloud in your file manager" msgstr "ファイルマネージャーであなたのownCloudに接続する際は、このアドレスを使用してください" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "名前" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "パスワード" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "グループ" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "作成" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "デフォルトのクォータサイズ" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "その他" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "クオータ" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "削除" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 1e84863d07..51dbed056b 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Korean (http://www.transifex.net/projects/p/owncloud/language/ko/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -21,65 +21,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "이메일 저장" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "잘못된 이메일" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID 변경됨" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "잘못된 요청" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "언어가 변경되었습니다" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "비활성화" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "활성화" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "저장..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "한국어" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "로그" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "더" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "앱 추가" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "프로그램 선택" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "application page at apps.owncloud.com을 보시오." -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr " 라이선스 사용" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr " by " @@ -171,34 +179,42 @@ msgstr "번역 돕기" msgid "use this address to connect to your ownCloud in your file manager" msgstr "파일 관리자에서 내 ownCloud에 연결할 때 이 주소를 사용하십시오" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "이름" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "암호" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "그룹" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "만들기" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "기본 할당량" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "다른" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "할당량" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "삭제" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 533133695f..705509ed4d 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/language/lb/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,15 +26,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID huet geännert" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Ongülteg Requête" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Sprooch huet geännert" @@ -50,35 +54,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Log" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Méi" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Setz deng App bei" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Wiel eng Applikatioun aus" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-Lizenséiert" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "vun" @@ -170,34 +178,42 @@ msgstr "Hëllef iwwersetzen" msgid "use this address to connect to your ownCloud in your file manager" msgstr "benotz dës Adress fir dech un deng ownCloud iwwert däin Datei Manager ze verbannen" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Numm" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Passwuert" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Gruppen" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Erstellen" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Standard Quota" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Aner" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Quota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Läschen" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index c39cde8a33..0986258c8b 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/owncloud/language/lt_LT/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,61 +24,69 @@ msgstr "" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Netinkamas el. paštas" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID pakeistas" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Klaidinga užklausa" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Kalba pakeista" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Išjungti" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Įjungti" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Saugoma.." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Kalba" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Daugiau" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Pridėti programėlę" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Pasirinkite programą" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licencijuota" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "" @@ -170,34 +178,42 @@ msgstr "Padėkite išversti" msgid "use this address to connect to your ownCloud in your file manager" msgstr "naudokite šį adresą, jei norite pasiekti savo ownCloud per failų tvarkyklę" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Vardas" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Slaptažodis" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupės" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Sukurti" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Numatytoji kvota" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Kita" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Limitas" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Ištrinti" diff --git a/l10n/lv/calendar.po b/l10n/lv/calendar.po new file mode 100644 index 0000000000..48780d51cd --- /dev/null +++ b/l10n/lv/calendar.po @@ -0,0 +1,814 @@ +# 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: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2011-09-03 16:52+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" + +#: ajax/cache/status.php:19 +msgid "Not all calendars are completely cached" +msgstr "" + +#: ajax/cache/status.php:21 +msgid "Everything seems to be completely cached" +msgstr "" + +#: ajax/categories/rescan.php:29 +msgid "No calendars found." +msgstr "" + +#: ajax/categories/rescan.php:37 +msgid "No events found." +msgstr "" + +#: ajax/event/edit.form.php:20 +msgid "Wrong calendar" +msgstr "" + +#: ajax/import/dropimport.php:29 ajax/import/import.php:64 +msgid "" +"The file contained either no events or all events are already saved in your " +"calendar." +msgstr "" + +#: ajax/import/dropimport.php:31 ajax/import/import.php:67 +msgid "events has been saved in the new calendar" +msgstr "" + +#: ajax/import/import.php:56 +msgid "Import failed" +msgstr "" + +#: ajax/import/import.php:69 +msgid "events has been saved in your calendar" +msgstr "" + +#: ajax/settings/guesstimezone.php:25 +msgid "New Timezone:" +msgstr "" + +#: ajax/settings/settimezone.php:23 +msgid "Timezone changed" +msgstr "" + +#: ajax/settings/settimezone.php:25 +msgid "Invalid request" +msgstr "" + +#: appinfo/app.php:35 templates/calendar.php:15 +#: templates/part.eventform.php:33 templates/part.showevent.php:33 +#: templates/settings.php:12 +msgid "Calendar" +msgstr "" + +#: js/calendar.js:828 +msgid "ddd" +msgstr "" + +#: js/calendar.js:829 +msgid "ddd M/d" +msgstr "" + +#: js/calendar.js:830 +msgid "dddd M/d" +msgstr "" + +#: js/calendar.js:833 +msgid "MMMM yyyy" +msgstr "" + +#: js/calendar.js:835 +msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" +msgstr "" + +#: js/calendar.js:837 +msgid "dddd, MMM d, yyyy" +msgstr "" + +#: lib/app.php:121 +msgid "Birthday" +msgstr "" + +#: lib/app.php:122 +msgid "Business" +msgstr "" + +#: lib/app.php:123 +msgid "Call" +msgstr "" + +#: lib/app.php:124 +msgid "Clients" +msgstr "" + +#: lib/app.php:125 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:126 +msgid "Holidays" +msgstr "" + +#: lib/app.php:127 +msgid "Ideas" +msgstr "" + +#: lib/app.php:128 +msgid "Journey" +msgstr "" + +#: lib/app.php:129 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:130 +msgid "Meeting" +msgstr "" + +#: lib/app.php:131 +msgid "Other" +msgstr "" + +#: lib/app.php:132 +msgid "Personal" +msgstr "" + +#: lib/app.php:133 +msgid "Projects" +msgstr "" + +#: lib/app.php:134 +msgid "Questions" +msgstr "" + +#: lib/app.php:135 +msgid "Work" +msgstr "" + +#: lib/app.php:351 lib/app.php:361 +msgid "by" +msgstr "" + +#: lib/app.php:359 lib/app.php:399 +msgid "unnamed" +msgstr "" + +#: lib/import.php:184 templates/calendar.php:12 +#: templates/part.choosecalendar.php:22 +msgid "New Calendar" +msgstr "" + +#: lib/object.php:372 +msgid "Does not repeat" +msgstr "" + +#: lib/object.php:373 +msgid "Daily" +msgstr "" + +#: lib/object.php:374 +msgid "Weekly" +msgstr "" + +#: lib/object.php:375 +msgid "Every Weekday" +msgstr "" + +#: lib/object.php:376 +msgid "Bi-Weekly" +msgstr "" + +#: lib/object.php:377 +msgid "Monthly" +msgstr "" + +#: lib/object.php:378 +msgid "Yearly" +msgstr "" + +#: lib/object.php:388 +msgid "never" +msgstr "" + +#: lib/object.php:389 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:390 +msgid "by date" +msgstr "" + +#: lib/object.php:400 +msgid "by monthday" +msgstr "" + +#: lib/object.php:401 +msgid "by weekday" +msgstr "" + +#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 +msgid "Monday" +msgstr "" + +#: lib/object.php:412 templates/calendar.php:5 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:413 templates/calendar.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:414 templates/calendar.php:5 +msgid "Thursday" +msgstr "" + +#: lib/object.php:415 templates/calendar.php:5 +msgid "Friday" +msgstr "" + +#: lib/object.php:416 templates/calendar.php:5 +msgid "Saturday" +msgstr "" + +#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 +msgid "Sunday" +msgstr "" + +#: lib/object.php:427 +msgid "events week of month" +msgstr "" + +#: lib/object.php:428 +msgid "first" +msgstr "" + +#: lib/object.php:429 +msgid "second" +msgstr "" + +#: lib/object.php:430 +msgid "third" +msgstr "" + +#: lib/object.php:431 +msgid "fourth" +msgstr "" + +#: lib/object.php:432 +msgid "fifth" +msgstr "" + +#: lib/object.php:433 +msgid "last" +msgstr "" + +#: lib/object.php:467 templates/calendar.php:7 +msgid "January" +msgstr "" + +#: lib/object.php:468 templates/calendar.php:7 +msgid "February" +msgstr "" + +#: lib/object.php:469 templates/calendar.php:7 +msgid "March" +msgstr "" + +#: lib/object.php:470 templates/calendar.php:7 +msgid "April" +msgstr "" + +#: lib/object.php:471 templates/calendar.php:7 +msgid "May" +msgstr "" + +#: lib/object.php:472 templates/calendar.php:7 +msgid "June" +msgstr "" + +#: lib/object.php:473 templates/calendar.php:7 +msgid "July" +msgstr "" + +#: lib/object.php:474 templates/calendar.php:7 +msgid "August" +msgstr "" + +#: lib/object.php:475 templates/calendar.php:7 +msgid "September" +msgstr "" + +#: lib/object.php:476 templates/calendar.php:7 +msgid "October" +msgstr "" + +#: lib/object.php:477 templates/calendar.php:7 +msgid "November" +msgstr "" + +#: lib/object.php:478 templates/calendar.php:7 +msgid "December" +msgstr "" + +#: lib/object.php:488 +msgid "by events date" +msgstr "" + +#: lib/object.php:489 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:490 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:491 +msgid "by day and month" +msgstr "" + +#: lib/search.php:35 lib/search.php:37 lib/search.php:40 +msgid "Date" +msgstr "" + +#: lib/search.php:43 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:6 +msgid "Sun." +msgstr "" + +#: templates/calendar.php:6 +msgid "Mon." +msgstr "" + +#: templates/calendar.php:6 +msgid "Tue." +msgstr "" + +#: templates/calendar.php:6 +msgid "Wed." +msgstr "" + +#: templates/calendar.php:6 +msgid "Thu." +msgstr "" + +#: templates/calendar.php:6 +msgid "Fri." +msgstr "" + +#: templates/calendar.php:6 +msgid "Sat." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jan." +msgstr "" + +#: templates/calendar.php:8 +msgid "Feb." +msgstr "" + +#: templates/calendar.php:8 +msgid "Mar." +msgstr "" + +#: templates/calendar.php:8 +msgid "Apr." +msgstr "" + +#: templates/calendar.php:8 +msgid "May." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jun." +msgstr "" + +#: templates/calendar.php:8 +msgid "Jul." +msgstr "" + +#: templates/calendar.php:8 +msgid "Aug." +msgstr "" + +#: templates/calendar.php:8 +msgid "Sep." +msgstr "" + +#: templates/calendar.php:8 +msgid "Oct." +msgstr "" + +#: templates/calendar.php:8 +msgid "Nov." +msgstr "" + +#: templates/calendar.php:8 +msgid "Dec." +msgstr "" + +#: templates/calendar.php:11 +msgid "All day" +msgstr "" + +#: templates/calendar.php:13 +msgid "Missing fields" +msgstr "" + +#: templates/calendar.php:14 templates/part.eventform.php:19 +#: templates/part.showevent.php:11 +msgid "Title" +msgstr "" + +#: templates/calendar.php:16 +msgid "From Date" +msgstr "" + +#: templates/calendar.php:17 +msgid "From Time" +msgstr "" + +#: templates/calendar.php:18 +msgid "To Date" +msgstr "" + +#: templates/calendar.php:19 +msgid "To Time" +msgstr "" + +#: templates/calendar.php:20 +msgid "The event ends before it starts" +msgstr "" + +#: templates/calendar.php:21 +msgid "There was a database fail" +msgstr "" + +#: templates/calendar.php:38 +msgid "Week" +msgstr "" + +#: templates/calendar.php:39 +msgid "Month" +msgstr "" + +#: templates/calendar.php:40 +msgid "List" +msgstr "" + +#: templates/calendar.php:44 +msgid "Today" +msgstr "" + +#: templates/calendar.php:45 +msgid "Calendars" +msgstr "" + +#: templates/calendar.php:59 +msgid "There was a fail, while parsing the file." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "" + +#: templates/part.choosecalendar.php:2 +msgid "Your calendars" +msgstr "" + +#: templates/part.choosecalendar.php:27 +#: templates/part.choosecalendar.rowfields.php:11 +msgid "CalDav Link" +msgstr "" + +#: templates/part.choosecalendar.php:31 +msgid "Shared calendars" +msgstr "" + +#: templates/part.choosecalendar.php:48 +msgid "No shared calendars" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:8 +msgid "Share Calendar" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:14 +msgid "Download" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:17 +msgid "Edit" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:20 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "" + +#: templates/part.choosecalendar.rowfields.shared.php:4 +msgid "shared with you by" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" + +#: templates/part.eventform.php:8 templates/part.showevent.php:3 +msgid "Eventinfo" +msgstr "" + +#: templates/part.eventform.php:9 templates/part.showevent.php:4 +msgid "Repeating" +msgstr "" + +#: templates/part.eventform.php:10 templates/part.showevent.php:5 +msgid "Alarm" +msgstr "" + +#: templates/part.eventform.php:11 templates/part.showevent.php:6 +msgid "Attendees" +msgstr "" + +#: templates/part.eventform.php:13 +msgid "Share" +msgstr "" + +#: templates/part.eventform.php:21 +msgid "Title of the Event" +msgstr "" + +#: templates/part.eventform.php:27 templates/part.showevent.php:19 +msgid "Category" +msgstr "" + +#: templates/part.eventform.php:29 +msgid "Separate categories with commas" +msgstr "" + +#: templates/part.eventform.php:30 +msgid "Edit categories" +msgstr "" + +#: templates/part.eventform.php:56 templates/part.showevent.php:52 +msgid "All Day Event" +msgstr "" + +#: templates/part.eventform.php:60 templates/part.showevent.php:56 +msgid "From" +msgstr "" + +#: templates/part.eventform.php:68 templates/part.showevent.php:64 +msgid "To" +msgstr "" + +#: templates/part.eventform.php:76 templates/part.showevent.php:72 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:81 templates/part.showevent.php:77 +msgid "Location" +msgstr "" + +#: templates/part.eventform.php:83 +msgid "Location of the Event" +msgstr "" + +#: templates/part.eventform.php:89 templates/part.showevent.php:85 +msgid "Description" +msgstr "" + +#: templates/part.eventform.php:91 +msgid "Description of the Event" +msgstr "" + +#: templates/part.eventform.php:100 templates/part.showevent.php:95 +msgid "Repeat" +msgstr "" + +#: templates/part.eventform.php:107 templates/part.showevent.php:102 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:151 templates/part.showevent.php:146 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:164 templates/part.eventform.php:177 +#: templates/part.showevent.php:159 templates/part.showevent.php:172 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:169 templates/part.showevent.php:164 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:182 templates/part.showevent.php:177 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:190 templates/part.showevent.php:185 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:203 templates/part.showevent.php:198 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:208 templates/part.showevent.php:203 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:214 templates/part.showevent.php:209 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:220 templates/part.showevent.php:215 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:233 templates/part.showevent.php:228 +msgid "occurrences" +msgstr "" + +#: templates/part.import.php:14 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:24 +msgid "Please choose a calendar" +msgstr "" + +#: templates/part.import.php:36 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:44 +msgid "Take an available name!" +msgstr "" + +#: templates/part.import.php:45 +msgid "" +"A Calendar with this name already exists. If you continue anyhow, these " +"calendars will be merged." +msgstr "" + +#: templates/part.import.php:47 +msgid "Import" +msgstr "" + +#: templates/part.import.php:56 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "" + +#: templates/part.showevent.php:1 +msgid "View an event" +msgstr "" + +#: templates/part.showevent.php:23 +msgid "No categories selected" +msgstr "" + +#: templates/part.showevent.php:37 +msgid "of" +msgstr "" + +#: templates/part.showevent.php:59 templates/part.showevent.php:67 +msgid "at" +msgstr "" + +#: templates/settings.php:14 +msgid "Timezone" +msgstr "" + +#: templates/settings.php:31 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:33 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:35 +msgid "24h" +msgstr "" + +#: templates/settings.php:36 +msgid "12h" +msgstr "" + +#: templates/settings.php:40 +msgid "First day of the week" +msgstr "" + +#: templates/settings.php:47 +msgid "Cache" +msgstr "" + +#: templates/settings.php:48 +msgid "Clear cache for repeating events" +msgstr "" + +#: templates/settings.php:53 +msgid "Calendar CalDAV syncing addresses" +msgstr "" + +#: templates/settings.php:53 +msgid "more info" +msgstr "" + +#: templates/settings.php:55 +msgid "Primary address (Kontact et al)" +msgstr "" + +#: templates/settings.php:57 +msgid "iOS/OS X" +msgstr "" + +#: templates/settings.php:59 +msgid "Read only iCalendar link(s)" +msgstr "" + +#: templates/share.dropdown.php:20 +msgid "Users" +msgstr "" + +#: templates/share.dropdown.php:21 +msgid "select users" +msgstr "" + +#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 +msgid "Editable" +msgstr "" + +#: templates/share.dropdown.php:48 +msgid "Groups" +msgstr "" + +#: templates/share.dropdown.php:49 +msgid "select groups" +msgstr "" + +#: templates/share.dropdown.php:75 +msgid "make public" +msgstr "" diff --git a/l10n/lv/contacts.po b/l10n/lv/contacts.po new file mode 100644 index 0000000000..8cc7933bb0 --- /dev/null +++ b/l10n/lv/contacts.po @@ -0,0 +1,871 @@ +# 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: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2011-09-23 17:10+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" + +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcontact.php:47 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "" + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "" + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "" + +#: ajax/addproperty.php:56 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:67 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:76 +msgid "Trying to add duplicate property: " +msgstr "" + +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "" + +#: ajax/categories/categoriesfor.php:17 +msgid "No ID provided" +msgstr "" + +#: ajax/categories/categoriesfor.php:34 +msgid "Error setting checksum." +msgstr "" + +#: ajax/categories/delete.php:19 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/categories/delete.php:26 +msgid "No address books found." +msgstr "" + +#: ajax/categories/delete.php:34 +msgid "No contacts found." +msgstr "" + +#: ajax/contactdetails.php:31 +msgid "Missing ID" +msgstr "" + +#: ajax/contactdetails.php:36 +msgid "Error parsing VCard for ID: \"" +msgstr "" + +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 +#: ajax/uploadphoto.php:68 +msgid "No contact ID was submitted." +msgstr "" + +#: ajax/currentphoto.php:36 +msgid "Error reading contact photo." +msgstr "" + +#: ajax/currentphoto.php:48 +msgid "Error saving temporary file." +msgstr "" + +#: ajax/currentphoto.php:51 +msgid "The loading photo is not valid." +msgstr "" + +#: ajax/deleteproperty.php:36 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: ajax/deleteproperty.php:43 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/editname.php:31 +msgid "Contact ID is missing." +msgstr "" + +#: ajax/oc_photo.php:32 +msgid "No photo path was submitted." +msgstr "" + +#: ajax/oc_photo.php:39 +msgid "File doesn't exist:" +msgstr "" + +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 +msgid "Error loading image." +msgstr "" + +#: ajax/savecrop.php:67 +msgid "Error getting contact object." +msgstr "" + +#: ajax/savecrop.php:76 +msgid "Error getting PHOTO property." +msgstr "" + +#: ajax/savecrop.php:93 +msgid "Error saving contact." +msgstr "" + +#: ajax/savecrop.php:103 +msgid "Error resizing image" +msgstr "" + +#: ajax/savecrop.php:106 +msgid "Error cropping image" +msgstr "" + +#: ajax/savecrop.php:109 +msgid "Error creating temporary image" +msgstr "" + +#: ajax/savecrop.php:112 +msgid "Error finding image: " +msgstr "" + +#: ajax/saveproperty.php:40 +msgid "checksum is not set." +msgstr "" + +#: ajax/saveproperty.php:59 +msgid "Information about vCard is incorrect. Please reload the page: " +msgstr "" + +#: ajax/saveproperty.php:64 +msgid "Something went FUBAR. " +msgstr "" + +#: ajax/saveproperty.php:133 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:21 +msgid "Cannot update addressbook with an empty name." +msgstr "" + +#: ajax/updateaddressbook.php:25 +msgid "Error updating addressbook." +msgstr "" + +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 +msgid "Error uploading contacts to storage." +msgstr "" + +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 +msgid "No file was uploaded" +msgstr "" + +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 +msgid "Couldn't save temporary image: " +msgstr "" + +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 +msgid "Couldn't load temporary image: " +msgstr "" + +#: ajax/uploadphoto.php:71 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: appinfo/app.php:19 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: js/contacts.js:53 +msgid "Sorry, this functionality has not been implemented yet" +msgstr "" + +#: js/contacts.js:53 +msgid "Not implemented" +msgstr "" + +#: js/contacts.js:58 +msgid "Couldn't get a valid address." +msgstr "" + +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 +msgid "Error" +msgstr "" + +#: js/contacts.js:389 lib/search.php:15 +msgid "Contact" +msgstr "" + +#: js/contacts.js:389 +msgid "New" +msgstr "" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "" + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "" + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "" + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "" + +#: js/loader.js:49 +msgid "Result: " +msgstr "" + +#: js/loader.js:49 +msgid " imported, " +msgstr "" + +#: js/loader.js:49 +msgid " failed." +msgstr "" + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "" + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "" + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "" + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "" + +#: lib/app.php:123 +msgid "Text" +msgstr "" + +#: lib/app.php:124 +msgid "Voice" +msgstr "" + +#: lib/app.php:125 +msgid "Message" +msgstr "" + +#: lib/app.php:126 +msgid "Fax" +msgstr "" + +#: lib/app.php:127 +msgid "Video" +msgstr "" + +#: lib/app.php:128 +msgid "Pager" +msgstr "" + +#: lib/app.php:134 +msgid "Internet" +msgstr "" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "" + +#: lib/app.php:170 +msgid "Business" +msgstr "" + +#: lib/app.php:171 +msgid "Call" +msgstr "" + +#: lib/app.php:172 +msgid "Clients" +msgstr "" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "" + +#: lib/app.php:176 +msgid "Journey" +msgstr "" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "" + +#: lib/app.php:179 +msgid "Other" +msgstr "" + +#: lib/app.php:180 +msgid "Personal" +msgstr "" + +#: lib/app.php:181 +msgid "Projects" +msgstr "" + +#: lib/app.php:182 +msgid "Questions" +msgstr "" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "" + +#: templates/index.php:15 +msgid "Add Contact" +msgstr "" + +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/index.php:20 +msgid "Addressbooks" +msgstr "" + +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "" + +#: templates/index.php:54 +msgid "Actions" +msgstr "" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Configure Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:8 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:11 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:14 +msgid "Edit" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:17 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 +msgid "Delete" +msgstr "" + +#: templates/part.contact.php:16 +msgid "Drop photo to upload" +msgstr "" + +#: templates/part.contact.php:18 +msgid "Delete current photo" +msgstr "" + +#: templates/part.contact.php:19 +msgid "Edit current photo" +msgstr "" + +#: templates/part.contact.php:20 +msgid "Upload new photo" +msgstr "" + +#: templates/part.contact.php:21 +msgid "Select photo from ownCloud" +msgstr "" + +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr "" + +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" +msgstr "" + +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "" + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "" + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "" + +#: templates/part.edit_address_dialog.php:6 +msgid "Edit address" +msgstr "" + +#: templates/part.edit_address_dialog.php:10 +msgid "Type" +msgstr "" + +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 +msgid "PO Box" +msgstr "" + +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "" + +#: templates/part.edit_address_dialog.php:30 +msgid "Extended" +msgstr "" + +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "" + +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 +msgid "City" +msgstr "" + +#: templates/part.edit_address_dialog.php:42 +msgid "Region" +msgstr "" + +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "" + +#: templates/part.edit_address_dialog.php:48 +msgid "Zipcode" +msgstr "" + +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 +msgid "Country" +msgstr "" + +#: templates/part.edit_name_dialog.php:16 +msgid "Addressbook" +msgstr "" + +#: templates/part.edit_name_dialog.php:23 +msgid "Hon. prefixes" +msgstr "" + +#: templates/part.edit_name_dialog.php:27 +msgid "Miss" +msgstr "" + +#: templates/part.edit_name_dialog.php:28 +msgid "Ms" +msgstr "" + +#: templates/part.edit_name_dialog.php:29 +msgid "Mr" +msgstr "" + +#: templates/part.edit_name_dialog.php:30 +msgid "Sir" +msgstr "" + +#: templates/part.edit_name_dialog.php:31 +msgid "Mrs" +msgstr "" + +#: templates/part.edit_name_dialog.php:32 +msgid "Dr" +msgstr "" + +#: templates/part.edit_name_dialog.php:35 +msgid "Given name" +msgstr "" + +#: templates/part.edit_name_dialog.php:37 +msgid "Additional names" +msgstr "" + +#: templates/part.edit_name_dialog.php:39 +msgid "Family name" +msgstr "" + +#: templates/part.edit_name_dialog.php:41 +msgid "Hon. suffixes" +msgstr "" + +#: templates/part.edit_name_dialog.php:45 +msgid "J.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:46 +msgid "M.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:47 +msgid "D.O." +msgstr "" + +#: templates/part.edit_name_dialog.php:48 +msgid "D.C." +msgstr "" + +#: templates/part.edit_name_dialog.php:49 +msgid "Ph.D." +msgstr "" + +#: templates/part.edit_name_dialog.php:50 +msgid "Esq." +msgstr "" + +#: templates/part.edit_name_dialog.php:51 +msgid "Jr." +msgstr "" + +#: templates/part.edit_name_dialog.php:52 +msgid "Sn." +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.import.php:1 +msgid "Import a contacts file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the addressbook" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new addressbook" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new addressbook" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing contacts" +msgstr "" + +#: templates/part.no_contacts.php:2 +msgid "You have no contacts in your addressbook." +msgstr "" + +#: templates/part.no_contacts.php:4 +msgid "Add contact" +msgstr "" + +#: templates/part.no_contacts.php:5 +msgid "Configure addressbooks" +msgstr "" + +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing addresses" +msgstr "" + +#: templates/settings.php:4 +msgid "more info" +msgstr "" + +#: templates/settings.php:6 +msgid "Primary address (Kontact et al)" +msgstr "" + +#: templates/settings.php:8 +msgid "iOS/OS X" +msgstr "" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po new file mode 100644 index 0000000000..f9e9e23477 --- /dev/null +++ b/l10n/lv/core.po @@ -0,0 +1,269 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# 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-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 12:27+0000\n" +"Last-Translator: CPDZ \n" +"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "" + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "" + +#: js/jquery-ui-1.8.16.custom.min.js:511 +msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" +msgstr "" + +#: js/js.js:519 +msgid "January" +msgstr "" + +#: js/js.js:519 +msgid "February" +msgstr "" + +#: js/js.js:519 +msgid "March" +msgstr "" + +#: js/js.js:519 +msgid "April" +msgstr "" + +#: js/js.js:519 +msgid "May" +msgstr "" + +#: js/js.js:519 +msgid "June" +msgstr "" + +#: js/js.js:520 +msgid "July" +msgstr "" + +#: js/js.js:520 +msgid "August" +msgstr "" + +#: js/js.js:520 +msgid "September" +msgstr "" + +#: js/js.js:520 +msgid "October" +msgstr "" + +#: js/js.js:520 +msgid "November" +msgstr "" + +#: js/js.js:520 +msgid "December" +msgstr "" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "Error" +msgstr "" + +#: lostpassword/index.php:26 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Izmantojiet šo linku lai mainītu paroli" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Obligāts" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Neizdevās ielogoties." + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:25 +#: templates/login.php:9 +msgid "Username" +msgstr "Lietotājvārds" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request reset" +msgstr "Pieprasīt paroles maiņu" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Jūsu parole tika nomainīta" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Uz ielogošanās lapu" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Jauna parole" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Mainīt paroli" + +#: strings.php:5 +msgid "Personal" +msgstr "Personīgi" + +#: strings.php:6 +msgid "Users" +msgstr "Lietotāji" + +#: strings.php:7 +msgid "Apps" +msgstr "Aplikācijas" + +#: strings.php:8 +msgid "Admin" +msgstr "Administrators" + +#: strings.php:9 +msgid "Help" +msgstr "Palīdzība" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Mākonis netika atrasts" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:14 +msgid "Add" +msgstr "" + +#: templates/installation.php:23 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:29 templates/login.php:13 +msgid "Password" +msgstr "Parole" + +#: templates/installation.php:35 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:37 +msgid "Data folder" +msgstr "Datu mape" + +#: templates/installation.php:44 +msgid "Configure the database" +msgstr "Nokonfigurēt datubāzi" + +#: templates/installation.php:49 templates/installation.php:60 +#: templates/installation.php:70 +msgid "will be used" +msgstr "tiks izmantots" + +#: templates/installation.php:82 +msgid "Database user" +msgstr "Datubāzes lietotājs" + +#: templates/installation.php:86 +msgid "Database password" +msgstr "Datubāzes parole" + +#: templates/installation.php:90 +msgid "Database name" +msgstr "Datubāzes nosaukums" + +#: templates/installation.php:96 +msgid "Database host" +msgstr "Datubāzes mājvieta" + +#: templates/installation.php:101 +msgid "Finish setup" +msgstr "Pabeigt uzstādījumus" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:49 +msgid "Log out" +msgstr "Izlogoties" + +#: templates/layout.user.php:64 templates/layout.user.php:65 +msgid "Settings" +msgstr "Iestatījumi" + +#: templates/login.php:6 +msgid "Lost your password?" +msgstr "Aizmirsāt paroli?" + +#: templates/login.php:17 +msgid "remember" +msgstr "atcerēties" + +#: templates/login.php:18 +msgid "Log in" +msgstr "Ielogoties" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Jūs esat veiksmīgi izlogojies." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "iepriekšējā" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "nākamā" diff --git a/l10n/lv/files.po b/l10n/lv/files.po new file mode 100644 index 0000000000..ebe4eba051 --- /dev/null +++ b/l10n/lv/files.po @@ -0,0 +1,199 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# 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-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-26 12:41+0000\n" +"Last-Translator: CPDZ \n" +"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\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:22 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:23 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "Faili" + +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "Pārtraukt līdzdalīšanu" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Izdzēst" + +#: js/filelist.js:186 +msgid "undo deletion" +msgstr "" + +#: js/files.js:170 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:199 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:199 +msgid "Upload Error" +msgstr "Augšuplādēšanas laikā radās kļūda" + +#: js/files.js:227 js/files.js:318 js/files.js:347 +msgid "Pending" +msgstr "Gaida savu kārtu" + +#: js/files.js:332 +msgid "Upload cancelled." +msgstr "Augšuplāde ir atcelta" + +#: js/files.js:456 +msgid "Invalid name, '/' is not allowed." +msgstr "Šis simbols '/', nav atļauts." + +#: js/files.js:631 templates/index.php:55 +msgid "Size" +msgstr "Izmērs" + +#: js/files.js:632 templates/index.php:56 +msgid "Modified" +msgstr "Izmainīts" + +#: js/files.js:659 +msgid "folder" +msgstr "mape" + +#: js/files.js:661 +msgid "folders" +msgstr "mapes" + +#: js/files.js:669 +msgid "file" +msgstr "fails" + +#: js/files.js:671 +msgid "files" +msgstr "faili" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "Maksimālais failu augšuplādes apjoms" + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:11 +msgid "From url" +msgstr "" + +#: templates/index.php:21 +msgid "Upload" +msgstr "Augšuplādet" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:39 +msgid "Nothing in here. Upload something!" +msgstr "Te vēl nekas nav. Rīkojies, sāc augšuplādēt" + +#: templates/index.php:47 +msgid "Name" +msgstr "Nosaukums" + +#: templates/index.php:49 +msgid "Share" +msgstr "" + +#: templates/index.php:51 +msgid "Download" +msgstr "Lejuplādēt" + +#: templates/index.php:64 +msgid "Upload too large" +msgstr "Fails ir par lielu lai to augšuplādetu" + +#: templates/index.php:66 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:71 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:74 +msgid "Current scanning" +msgstr "" diff --git a/l10n/lv/gallery.po b/l10n/lv/gallery.po new file mode 100644 index 0000000000..03b337f7da --- /dev/null +++ b/l10n/lv/gallery.po @@ -0,0 +1,58 @@ +# 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: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-01-15 13:48+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" + +#: appinfo/app.php:39 +msgid "Pictures" +msgstr "" + +#: js/pictures.js:12 +msgid "Share gallery" +msgstr "" + +#: js/pictures.js:32 +msgid "Error: " +msgstr "" + +#: js/pictures.js:32 +msgid "Internal error" +msgstr "" + +#: templates/index.php:27 +msgid "Slideshow" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + +#: templates/view_album.php:36 +msgid "Remove confirmation" +msgstr "" + +#: templates/view_album.php:37 +msgid "Do you want to remove album" +msgstr "" + +#: templates/view_album.php:40 +msgid "Change album name" +msgstr "" + +#: templates/view_album.php:43 +msgid "New album name" +msgstr "" diff --git a/l10n/lv/media.po b/l10n/lv/media.po new file mode 100644 index 0000000000..8f717c8e6e --- /dev/null +++ b/l10n/lv/media.po @@ -0,0 +1,66 @@ +# 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: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" + +#: appinfo/app.php:45 templates/player.php:8 +msgid "Music" +msgstr "" + +#: js/music.js:18 +msgid "Add album to playlist" +msgstr "" + +#: templates/music.php:3 templates/player.php:12 +msgid "Play" +msgstr "" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:13 +msgid "Pause" +msgstr "" + +#: templates/music.php:5 +msgid "Previous" +msgstr "" + +#: templates/music.php:6 templates/player.php:14 +msgid "Next" +msgstr "" + +#: templates/music.php:7 +msgid "Mute" +msgstr "" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "" + +#: templates/music.php:37 +msgid "Artist" +msgstr "" + +#: templates/music.php:38 +msgid "Album" +msgstr "" + +#: templates/music.php:39 +msgid "Title" +msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po new file mode 100644 index 0000000000..fbc7ad0283 --- /dev/null +++ b/l10n/lv/settings.po @@ -0,0 +1,219 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# 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-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "Epasts tika saglabāts" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "Nepareizs epasts" + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "OpenID nomainīts" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "Nepareizs vaicājums" + +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "Valoda tika nomainīta" + +#: js/apps.js:31 js/apps.js:67 +msgid "Disable" +msgstr "Atvienot" + +#: js/apps.js:31 js/apps.js:54 +msgid "Enable" +msgstr "Pievienot" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "Saglabā..." + +#: personal.php:46 personal.php:47 +msgid "__language_name__" +msgstr "__valodas_nosaukums__" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "Brīdinājums par drošību" + +#: templates/admin.php:28 +msgid "Log" +msgstr "Log" + +#: templates/admin.php:55 +msgid "More" +msgstr "Vairāk" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "Pievieno savu aplikāciju" + +#: templates/apps.php:24 +msgid "Select an App" +msgstr "Izvēlies aplikāciju" + +#: templates/apps.php:27 +msgid "See application page at apps.owncloud.com" +msgstr "Apskatie aplikāciju lapu - apps.owncloud.com" + +#: templates/apps.php:28 +msgid "-licensed" +msgstr "licenzēts" + +#: templates/apps.php:28 +msgid "by" +msgstr "no" + +#: templates/help.php:8 +msgid "Documentation" +msgstr "Dokumentācija" + +#: templates/help.php:9 +msgid "Managing Big Files" +msgstr "Rīkoties ar apjomīgiem failiem" + +#: templates/help.php:10 +msgid "Ask a question" +msgstr "Uzdod jautajumu" + +#: templates/help.php:22 +msgid "Problems connecting to help database." +msgstr "Problēmas ar datubāzes savienojumu" + +#: templates/help.php:23 +msgid "Go there manually." +msgstr "Nokļūt tur pašrocīgi" + +#: templates/help.php:31 +msgid "Answer" +msgstr "Atbildēt" + +#: templates/personal.php:8 +msgid "You use" +msgstr "Jūs iymantojat" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "no pieejamajiem" + +#: templates/personal.php:12 +msgid "Desktop and Mobile Syncing Clients" +msgstr "Desktop un mobīlo ierīču sinhronizācijas rīks" + +#: templates/personal.php:13 +msgid "Download" +msgstr "Lejuplādēt" + +#: templates/personal.php:19 +msgid "Your password got changed" +msgstr "Jūsu parole tika nomainīta" + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "Nav iespējams nomainīt jūsu paroli" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "Pašreizējā parole" + +#: templates/personal.php:22 +msgid "New password" +msgstr "Jauna parole" + +#: templates/personal.php:23 +msgid "show" +msgstr "parādīt" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "Nomainīt paroli" + +#: templates/personal.php:30 +msgid "Email" +msgstr "Epasts" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "Jūsu epasta adrese" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "Ievadiet epasta adresi, lai vēlak būtu iespēja atgūt paroli, ja būs nepieciešamība" + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "Valoda" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "Palīdzi tulkot" + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "izmanto šo adresi lai ielogotos ownCloud no sava failu pārlūka" + +#: templates/users.php:21 templates/users.php:76 +msgid "Name" +msgstr "Vārds" + +#: templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Parole" + +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +msgid "Groups" +msgstr "Grupas" + +#: templates/users.php:32 +msgid "Create" +msgstr "Izveidot" + +#: templates/users.php:35 +msgid "Default Quota" +msgstr "Apjoms pēc noklusējuma" + +#: templates/users.php:55 templates/users.php:138 +msgid "Other" +msgstr "Cits" + +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 +msgid "Quota" +msgstr "Apjoms" + +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 +msgid "Delete" +msgstr "Izdzēst" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 3f9e5cf176..ef930d9659 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Miroslav Jovanovic , 2012. # Miroslav Jovanovic , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Macedonian (http://www.transifex.net/projects/p/owncloud/language/mk/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -20,65 +21,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Електронската пошта е снимена" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Неисправна електронска пошта" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID сменето" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "неправилно барање" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Јазикот е сменет" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Оневозможи" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Овозможи" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Снимам..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Записник" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Повеќе" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Додадете ја Вашата апликација" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Избери аппликација" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Види ја страницата со апликации на apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licensed" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "од" @@ -170,34 +179,42 @@ msgstr "Помогни во преводот" msgid "use this address to connect to your ownCloud in your file manager" msgstr "користете ја оваа адреса во менаџерот за датотеки да се поврзете со Вашиот ownCloud" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Име" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Лозинка" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Групи" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Создај" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Предефинирана квота" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Останато" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Квота" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Избриши" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 9a11c70825..ac98298148 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -5,14 +5,16 @@ # Translators: # Ahmed Noor Kader Mustajir Md Eusoff , 2012. # , 2011, 2012. +# Hadri Hilmi , 2012. +# Zulhilmi Rosnin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/language/ms_MY/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,75 +23,83 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Emel disimpan" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Emel tidak sah" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID ditukar" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Permintaan tidak sah" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Bahasa ditukar" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Nyahaktif" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Aktif" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Simpan..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "_nama_bahasa_" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" -msgstr "" +msgstr "Log" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" -msgstr "" +msgstr "Lanjutan" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" -msgstr "" +msgstr "Tambah apps anda" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Pilih aplikasi" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Lihat halaman applikasi di apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-dilesen" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "oleh" #: templates/help.php:8 msgid "Documentation" -msgstr "" +msgstr "Dokumentasi" #: templates/help.php:9 msgid "Managing Big Files" -msgstr "" +msgstr "Mengurus Fail Besar" #: templates/help.php:10 msgid "Ask a question" @@ -117,11 +127,11 @@ msgstr "yang tersedia" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" -msgstr "" +msgstr "Klien Selarian untuk Desktop dan Mobile" #: templates/personal.php:13 msgid "Download" -msgstr "" +msgstr "Muat turun" #: templates/personal.php:19 msgid "Your password got changed" @@ -171,34 +181,42 @@ msgstr "Bantu terjemah" msgid "use this address to connect to your ownCloud in your file manager" msgstr "guna alamat ini untuk menyambung owncloud anda dalam pengurus fail anda" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nama" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Kata laluan " -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Kumpulan" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Buat" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" -msgstr "" +msgstr "Kuota Lalai" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" +msgstr "Lain" + +#: templates/users.php:80 +msgid "SubAdmin" msgstr "" -#: templates/users.php:47 +#: templates/users.php:82 msgid "Quota" msgstr "Kuota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Padam" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 0b26d8f505..f423532a21 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -4,6 +4,7 @@ # # Translators: # , 2011. +# Arvid Nornes , 2012. # Christer Eriksson , 2012. # Daniel , 2012. # , 2012. @@ -11,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.net/projects/p/owncloud/language/nb_NO/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -23,65 +24,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Epost lagret" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Ugyldig epost" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID endret" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Ugyldig forespørsel" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Språk endret" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Slå avBehandle " #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Slå på" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Lagrer..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Logg" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Mer" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Legg til din App" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Velg en app" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Se applikasjonens side på apps.owncloud.org" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-lisensiert" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "av" @@ -91,7 +100,7 @@ msgstr "Dokumentasjon" #: templates/help.php:9 msgid "Managing Big Files" -msgstr "" +msgstr "Håndtere store filer" #: templates/help.php:10 msgid "Ask a question" @@ -119,7 +128,7 @@ msgstr "av den tilgjengelige" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" -msgstr "" +msgstr "Klienter for datamaskiner og mobile enheter" #: templates/personal.php:13 msgid "Download" @@ -173,34 +182,42 @@ msgstr "Bidra til oversettelsen" msgid "use this address to connect to your ownCloud in your file manager" msgstr "bruk denne adressen for å koble til din ownCloud gjennom filhåndtereren" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Navn" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Passord" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupper" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Opprett" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Standard Kvote" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" +msgstr "Annet" + +#: templates/users.php:80 +msgid "SubAdmin" msgstr "" -#: templates/users.php:47 +#: templates/users.php:82 msgid "Quota" msgstr "Kvote" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Slett" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 977be9bdbc..daccd5ac07 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -6,16 +6,17 @@ # , 2011. # Erik Bent , 2012. # , 2011, 2012. +# , 2012. # , 2011. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/language/nl/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -24,65 +25,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "E-mail bewaard" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Ongeldige e-mail" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID is aangepast" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Ongeldig verzoek" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Taal aangepast" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Uitschakelen" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Inschakelen" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Aan het bewaren....." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Nederlands" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Log" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Meer" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Voeg je App toe" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Selecteer een app" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Zie de applicatiepagina op apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-gelicentieerd" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "door" @@ -174,34 +183,42 @@ msgstr "Help met vertalen" msgid "use this address to connect to your ownCloud in your file manager" msgstr "gebruik dit adres om verbinding te maken met ownCloud in uw bestandsbeheerprogramma" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Naam" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Wachtwoord" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Groepen" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Creëer" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Standaard limiet" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Andere" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Limieten" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "verwijderen" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index f8c099c030..99195922f1 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.net/projects/p/owncloud/language/nn_NO/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,15 +27,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID endra" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Ugyldig førespurnad" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Språk endra" @@ -51,35 +55,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Nynorsk" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Vel ein applikasjon" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-lisensiert" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "av" @@ -171,34 +179,42 @@ msgstr "Hjelp oss å oversett" msgid "use this address to connect to your ownCloud in your file manager" msgstr "bruk denne adressa for å kopla til ownCloud i filhandsamaren din" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Namn" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Passord" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupper" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Lag" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Kvote" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Slett" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 25b7eda775..c929566d19 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki <>, 2012. # , 2012. # Kamil Domański , 2011. # Marcin Małecki , 2011, 2012. @@ -13,10 +14,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/language/pl/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -25,65 +26,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email zapisany" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Niepoprawny email" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "Zmieniono OpenID" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Nieprawidłowe żądanie" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Język zmieniony" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Wyłączone" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Włączone" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Zapisywanie..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Polski" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Log" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Więcej" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Dodaj aplikacje" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Zaznacz aplikacje" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Zobacz stronę aplikacji na apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licencjonowany" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "przez" @@ -175,34 +184,42 @@ msgstr "Pomóż w tłumaczeniu" msgid "use this address to connect to your ownCloud in your file manager" msgstr "Proszę użyć tego adresu, aby uzyskać dostęp do usługi ownCloud w menedżerze plików." -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nazwa" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Hasło" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupy" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Utwórz" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Domyślny udział" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Inne" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Udział" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Usuń" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 88a8425439..7f26bc7340 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -5,16 +5,17 @@ # Translators: # , 2011. # Guilherme Maluf Balzana , 2012. +# Sandro Venezuela , 2012. # Thiago Vicente , 2012. # Van Der Fran , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.net/projects/p/owncloud/language/pt_BR/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -23,65 +24,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email gravado" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Email inválido" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "Mudou OpenID" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Pedido inválido" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Mudou Idioma" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Desabilitado" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Habilitado" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Gravando..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Português" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Log" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Mais" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Adicione seu Aplicativo" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Selecione uma Aplicação" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Ver página do aplicativo em apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licenciados" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "por" @@ -173,34 +182,42 @@ msgstr "Ajude a traduzir" msgid "use this address to connect to your ownCloud in your file manager" msgstr "use este endereço para se conectar ao seu ownCloud no seu gerenciador de arquvos" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nome" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Senha" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupos" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Criar" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Quota Padrão" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Outro" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Cota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Apagar" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 9a87a9c31f..4a6eac5818 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.net/projects/p/owncloud/language/pt_PT/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -21,65 +21,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email guardado" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Email inválido" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID alterado" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Pedido inválido" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Idioma alterado" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Desativar" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Ativar" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "A guardar..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Log" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Mais" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Adicione a sua aplicação" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Selecione uma aplicação" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Ver a página da aplicação em apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licenciado" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "por" @@ -171,34 +179,42 @@ msgstr "Ajude a traduzir" msgid "use this address to connect to your ownCloud in your file manager" msgstr "utilize este endereço para conectar ao seu ownCloud através do seu gerenciador de ficheiros" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nome" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Palavra-chave" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupos" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Criar" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Quota por defeito" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Outro" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Quota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Apagar" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 542bfa8f1c..f106c9706f 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/language/ro/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -29,15 +29,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID schimbat" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Cerere eronată" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Limba a fost schimbată" @@ -53,35 +57,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "_language_name_" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Mai mult" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Adaugă aplicația ta" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Selectează o aplicație" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-autorizat" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "de" @@ -173,34 +181,42 @@ msgstr "Ajută la traducere" msgid "use this address to connect to your ownCloud in your file manager" msgstr "folosește această adresă pentru a te conecta la managerul tău de fișiere din ownCloud" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Nume" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Parolă" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupuri" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Crează" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Cotă implicită" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Altele" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Cotă" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Șterge" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 05b03aad0b..aaac8ba254 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -8,14 +8,15 @@ # , 2012. # , 2012. # , 2011. +# Victor Bravo <>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Russian (http://www.transifex.net/projects/p/owncloud/language/ru/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -24,65 +25,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email сохранен" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Неправильный Email" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID изменён" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Неверный запрос" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Язык изменён" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Отключить" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Включить" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Сохранение..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Русский " -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Журнал" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Ещё" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Добавить приложение" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Выберите приложение" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Смотрите дополнения на apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-лицензия" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "от" @@ -174,34 +183,42 @@ msgstr "Помочь с переводом" msgid "use this address to connect to your ownCloud in your file manager" msgstr "используйте данный адрес для подключения к ownCloud в вашем файловом менеджере" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Имя" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Пароль" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Группы" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Создать" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Квота по умолчанию" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Другое" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Квота" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Удалить" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index bbf5f21cce..38d8e42187 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/language/sk_SK/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -22,65 +22,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email uložený" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Neplatný email" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID zmenené" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Neplatná požiadavka" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Jazyk zmenený" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Zakázať" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Povoliť" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Ukladám..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "Slovensky" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Záznam" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Viac" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Pridať vašu aplikáciu" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Vyberte aplikáciu" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Pozrite si stránku aplikácie na apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licencované" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "od" @@ -172,34 +180,42 @@ msgstr "Pomôcť s prekladom" msgid "use this address to connect to your ownCloud in your file manager" msgstr "použite túto adresu pre spojenie s vaším ownCloud v správcovi súborov" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Meno" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Heslo" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Skupiny" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Vytvoriť" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Predvolená kvóta" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Iné" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Kvóta" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Odstrániť" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index b5b8a14fb3..57e7366edc 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Slovenian (http://www.transifex.net/projects/p/owncloud/language/sl/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -22,65 +22,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "E-poštni naslov je bil shranjen" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Neveljaven e-poštni naslov" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID je bil spremenjen" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Neveljaven zahtevek" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Jezik je bil spremenjen" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Onemogoči" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Omogoči" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Shranjevanje..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__ime_jezika__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Več" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Dodajte vašo aplikacijo" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Izberite aplikacijo" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Obiščite spletno stran aplikacije na apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licencirana" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "s strani" @@ -172,34 +180,42 @@ msgstr "Pomagajte pri prevajanju" msgid "use this address to connect to your ownCloud in your file manager" msgstr "Uporabite ta naslov za povezavo do ownCloud v vašem upravljalniku datotek." -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Ime" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Geslo" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Skupine" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Ustvari" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Privzeta količinska omejitev" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Drugo" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Količinska omejitev" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Izbriši" diff --git a/l10n/so/settings.po b/l10n/so/settings.po index f505b8ba5e..4a50494e55 100644 --- a/l10n/so/settings.po +++ b/l10n/so/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-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" "Last-Translator: owncloud_robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -33,6 +33,10 @@ msgstr "" msgid "Invalid request" msgstr "" +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "" @@ -49,7 +53,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:41 personal.php:42 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "" @@ -173,34 +177,42 @@ msgstr "" msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:15 templates/users.php:60 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "" -#: templates/users.php:17 templates/users.php:61 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "" -#: templates/users.php:19 templates/users.php:62 templates/users.php:78 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "" -#: templates/users.php:25 +#: templates/users.php:32 msgid "Create" msgstr "" -#: templates/users.php:28 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:47 templates/users.php:103 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:63 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "" -#: templates/users.php:110 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index f6582fdc74..f9bdbc9753 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/language/sr/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -26,15 +26,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID је измењен" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Неисправан захтев" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Језик је измењен" @@ -50,35 +54,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Изаберите програм" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-лиценциран" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "од" @@ -170,34 +178,42 @@ msgstr " Помозите у превођењу" msgid "use this address to connect to your ownCloud in your file manager" msgstr "користите ову адресу да би се повезали на ownCloud путем менаџњера фајлова" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Име" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Лозинка" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Групе" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Направи" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Обриши" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index cd74e98410..076b4a92d7 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/language/sr@latin/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,15 +26,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID je izmenjen" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Neispravan zahtev" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Jezik je izmenjen" @@ -50,35 +54,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Izaberite program" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licenciran" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "od" @@ -170,34 +178,42 @@ msgstr "" msgid "use this address to connect to your ownCloud in your file manager" msgstr "koristite ovu adresu da bi se povezali na ownCloud putem menadžnjera fajlova" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Ime" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Lozinka" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupe" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Napravi" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Obriši" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 557d08cbe8..0c533799d1 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -4,6 +4,7 @@ # # Translators: # Christer Eriksson , 2012. +# Daniel Sandman , 2012. # , 2011. # , 2011, 2012. # , 2012. @@ -11,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/language/sv/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -23,65 +24,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "E-post sparad" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Ogiltig e-post" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID ändrat" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Ogiltig begäran" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Språk ändrades" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Avaktivera" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Aktivera" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Sparar..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Logg" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Mera" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Lägg till din applikation" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Välj en App" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Se programsida på apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-licensierat" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "av" @@ -173,34 +182,42 @@ msgstr "Hjälp att översätta" msgid "use this address to connect to your ownCloud in your file manager" msgstr "använd denna adress för att ansluta ownCloud till din filhanterare" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Namn" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Lösenord" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupper" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Skapa" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Förvald datakvot" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Annat" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Kvot" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Ta bort" diff --git a/l10n/templates/bookmarks.pot b/l10n/templates/bookmarks.pot index 1ee9f5a85a..ad981106b9 100644 --- a/l10n/templates/bookmarks.pot +++ b/l10n/templates/bookmarks.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"POT-Creation-Date: 2012-07-27 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/calendar.pot b/l10n/templates/calendar.pot index eb31c594a8..afbeda74eb 100644 --- a/l10n/templates/calendar.pot +++ b/l10n/templates/calendar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/contacts.pot b/l10n/templates/contacts.pot index 6b03be705c..f398764150 100644 --- a/l10n/templates/contacts.pot +++ b/l10n/templates/contacts.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e19f805928..6e2f9257a8 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-07-26 08:03+0200\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" "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 7c8581071c..d73c91f0eb 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-07-26 08:03+0200\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/gallery.pot b/l10n/templates/gallery.pot index e0f819f9df..744a280635 100644 --- a/l10n/templates/gallery.pot +++ b/l10n/templates/gallery.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" "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 410e16d9dc..847ecdf872 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-07-26 08:03+0200\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,11 +33,11 @@ msgstr "" msgid "Users" msgstr "" -#: app.php:306 +#: app.php:311 msgid "Apps" msgstr "" -#: app.php:308 +#: app.php:313 msgid "Admin" msgstr "" @@ -61,7 +61,7 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:63 +#: json.php:39 json.php:63 json.php:75 msgid "Authentication error" msgstr "" diff --git a/l10n/templates/media.pot b/l10n/templates/media.pot index 6406b0120e..33d07d122c 100644 --- a/l10n/templates/media.pot +++ b/l10n/templates/media.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-26 08:03+0200\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" "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 e8d0757e9f..2f77cd01e5 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-07-26 08:03+0200\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,6 +33,10 @@ msgstr "" msgid "Invalid request" msgstr "" +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "" @@ -49,7 +53,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:41 personal.php:42 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "" @@ -173,34 +177,42 @@ msgstr "" msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:15 templates/users.php:60 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "" -#: templates/users.php:17 templates/users.php:61 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "" -#: templates/users.php:19 templates/users.php:62 templates/users.php:78 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "" -#: templates/users.php:25 +#: templates/users.php:32 msgid "Create" msgstr "" -#: templates/users.php:28 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:47 templates/users.php:103 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:63 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "" -#: templates/users.php:110 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index b753a75150..33c12981c4 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Thai (Thailand) (http://www.transifex.net/projects/p/owncloud/language/th_TH/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -22,65 +22,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "อีเมลถูกบันทึกแล้ว" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "อีเมลไม่ถูกต้อง" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "เปลี่ยนชื่อบัญชี OpenID แล้ว" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "คำร้องขอไม่ถูกต้อง" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "เปลี่ยนภาษาเรียบร้อยแล้ว" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "ปิดใช้งาน" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "เปิดใช้งาน" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "กำลังบันทึุกข้อมูล..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "ภาษาไทย" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "เพิ่มเติม" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "เพิ่มแอปของคุณ" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "เลือก App" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-ได้รับอนุญาติแล้ว" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "โดย" @@ -172,34 +180,42 @@ msgstr "ช่วยกันแปล" msgid "use this address to connect to your ownCloud in your file manager" msgstr "ใช้ที่อยู่นี้ในการเชื่อมต่อกับบัญชี ownCloud ของคุณในเครื่องมือจัดการไฟล์ของคุณ" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "ชื่อ" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "รหัสผ่าน" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "กลุ่ม" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "สร้าง" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "โควต้าที่กำหนดไว้เริ่มต้น" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "อื่นๆ" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "พื้นที่" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "ลบ" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 3ffe00954d..b9af026aba 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -4,14 +4,15 @@ # # Translators: # Aranel Surion , 2011, 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-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Turkish (http://www.transifex.net/projects/p/owncloud/language/tr/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -20,65 +21,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Eposta kaydedildi" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Geçersiz eposta" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID Değiştirildi" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "Geçersiz istek" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Dil değiştirildi" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "Etkin değil" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "Etkin" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Kaydediliyor..." -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__dil_adı__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "Günlük" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "Devamı" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "Uygulamanı Ekle" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "Bir uygulama seçin" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Uygulamanın sayfasına apps.owncloud.com adresinden bakın " -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-lisanslı" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "yapan" @@ -170,34 +179,42 @@ msgstr "Çevirilere yardım edin" msgid "use this address to connect to your ownCloud in your file manager" msgstr "bu adresi kullanarak ownCloud unuza dosya yöneticinizle bağlanın" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Ad" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Parola" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Gruplar" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "Oluştur" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "Varsayılan Kota" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Diğer" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Kota" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Sil" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 3e271d5055..1dd51bd45e 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Ukrainian (http://www.transifex.net/projects/p/owncloud/language/uk/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -25,15 +25,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "" @@ -49,35 +53,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "" @@ -169,34 +177,42 @@ msgstr "" msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index e387aaaa9e..ab28333467 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/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-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:30+0000\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" "Last-Translator: owncloud_robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "Đổi OpenID" msgid "Invalid request" msgstr "Yêu cầu không hợp lệ" +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Ngôn ngữ đã được thay đổi" @@ -51,7 +55,7 @@ msgstr "Cho phép" msgid "Saving..." msgstr "Đang tiến hành lưu ..." -#: personal.php:41 personal.php:42 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__Ngôn ngữ___" @@ -175,34 +179,42 @@ msgstr "Dịch " msgid "use this address to connect to your ownCloud in your file manager" msgstr "sử dụng địa chỉ này để kết nối với ownCloud của bạn trong quản lý tập tin " -#: templates/users.php:15 templates/users.php:60 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "Tên" -#: templates/users.php:17 templates/users.php:61 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "Mật khẩu" -#: templates/users.php:19 templates/users.php:62 templates/users.php:78 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Nhóm" -#: templates/users.php:25 +#: templates/users.php:32 msgid "Create" msgstr "Tạo" -#: templates/users.php:28 +#: templates/users.php:35 msgid "Default Quota" msgstr "Hạn ngạch mặt định" -#: templates/users.php:47 templates/users.php:103 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "Khác" -#: templates/users.php:63 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "Hạn ngạch" -#: templates/users.php:110 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "Xóa" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index c566e5d060..8af9222105 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Phoenix Nemo <>, 2012. # , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Chinese (China) (http://www.transifex.net/projects/p/owncloud/language/zh_CN/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" @@ -21,65 +22,73 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "电子邮件已保存" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "无效的电子邮件" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID 已修改" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "非法请求" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "语言已修改" #: js/apps.js:31 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "禁用" #: js/apps.js:31 js/apps.js:54 msgid "Enable" -msgstr "" +msgstr "启用" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "正在保存" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "简体中文" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "日志" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "更多" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "添加应用" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "选择一个应用" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "查看在 app.owncloud.com 的应用程序页面" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-许可证" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "由" @@ -171,34 +180,42 @@ msgstr "帮助翻译" msgid "use this address to connect to your ownCloud in your file manager" msgstr "在文件管理器中使用这个地址来连接到您的 ownCloud" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "名称" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "密码" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "组" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "创建" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "默认配额" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "其它" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "配额" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "删除" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index bcbaafd6e8..5e9690d52b 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.net/projects/p/owncloud/language/zh_TW/)\n" +"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 00:02+0000\n" +"Last-Translator: owncloud_robot \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" "Content-Transfer-Encoding: 8bit\n" @@ -26,15 +26,19 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:15 +#: ajax/openid.php:16 msgid "OpenID Changed" msgstr "OpenID 已變更" -#: ajax/openid.php:17 ajax/setlanguage.php:19 ajax/setlanguage.php:22 +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" msgstr "無效請求" -#: ajax/setlanguage.php:17 +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 msgid "Language changed" msgstr "語言已變更" @@ -50,35 +54,39 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:40 personal.php:41 +#: personal.php:46 personal.php:47 msgid "__language_name__" msgstr "__語言_名稱__" -#: templates/admin.php:13 +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:28 msgid "Log" msgstr "紀錄" -#: templates/admin.php:40 +#: templates/admin.php:55 msgid "More" msgstr "更多" -#: templates/apps.php:8 +#: templates/apps.php:10 msgid "Add your App" msgstr "添加你的 App" -#: templates/apps.php:22 +#: templates/apps.php:24 msgid "Select an App" msgstr "選擇一個應用程式" -#: templates/apps.php:25 +#: templates/apps.php:27 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "-licensed" msgstr "-已許可" -#: templates/apps.php:26 +#: templates/apps.php:28 msgid "by" msgstr "由" @@ -170,34 +178,42 @@ msgstr "幫助翻譯" msgid "use this address to connect to your ownCloud in your file manager" msgstr "使用這個位址去連接到你的私有雲檔案管理員" -#: templates/users.php:15 templates/users.php:44 +#: templates/users.php:21 templates/users.php:76 msgid "Name" msgstr "名稱" -#: templates/users.php:16 templates/users.php:45 +#: templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "密碼" -#: templates/users.php:17 templates/users.php:46 templates/users.php:60 +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "群組" -#: templates/users.php:22 +#: templates/users.php:32 msgid "Create" msgstr "創造" -#: templates/users.php:25 +#: templates/users.php:35 msgid "Default Quota" msgstr "預設容量限制" -#: templates/users.php:35 templates/users.php:74 +#: templates/users.php:55 templates/users.php:138 msgid "Other" msgstr "其他" -#: templates/users.php:47 +#: templates/users.php:80 +msgid "SubAdmin" +msgstr "" + +#: templates/users.php:82 msgid "Quota" msgstr "容量限制" -#: templates/users.php:80 +#: templates/users.php:112 +msgid "SubAdmin for ..." +msgstr "" + +#: templates/users.php:145 msgid "Delete" msgstr "刪除" diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 56e67c1a13..00da37ee1a 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,12 +1,19 @@ "S'ha desat el correu electrònic", +"Invalid email" => "El correu electrònic no és vàlid", "OpenID Changed" => "OpenID ha canviat", "Invalid request" => "Sol.licitud no vàlida", "Language changed" => "S'ha canviat l'idioma", +"Disable" => "Desactiva", +"Enable" => "Activa", +"Saving..." => "S'està desant...", "__language_name__" => "Català", +"Security Warning" => "Avís de seguretat", "Log" => "Registre", "More" => "Més", "Add your App" => "Afegeiu la vostra aplicació", "Select an App" => "Seleccioneu una aplicació", +"See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", "-licensed" => "- amb llicència", "by" => "de", "Documentation" => "Documentació", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index bef172a9f5..d71ae497d3 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,12 +1,18 @@ "E-mail uložen", +"Invalid email" => "Neplatný e-mail", "OpenID Changed" => "OpenID změněn", "Invalid request" => "Chybný dotaz", "Language changed" => "Jazyk byl změněn", +"Disable" => "Vypnout", +"Enable" => "Zapnout", +"Saving..." => "Ukládám...", "__language_name__" => "Česky", "Log" => "Log", "More" => "Více", "Add your App" => "Přidat vaší aplikaci", "Select an App" => "Vyberte aplikaci", +"See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", "-licensed" => "-licencováno", "by" => "podle", "Documentation" => "Dokumentace", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 4cd7abfc90..148a8becc9 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,12 +1,18 @@ "Email adresse gemt", +"Invalid email" => "Ugyldig email adresse", "OpenID Changed" => "OpenID ændret", "Invalid request" => "Ugyldig forespørgsel", "Language changed" => "Sprog ændret", +"Disable" => "Deaktiver", +"Enable" => "Aktiver", +"Saving..." => "Gemmer...", "__language_name__" => "Dansk", "Log" => "Log", "More" => "Mere", "Add your App" => "Tilføj din App", "Select an App" => "Vælg en App", +"See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", "-licensed" => "-licenseret", "by" => "af", "Documentation" => "Dokumentation", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index d1659e4d18..b4486e0aef 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,12 +1,19 @@ "E-Mail gespeichert", +"Invalid email" => "Ungültige E-Mail", "OpenID Changed" => "OpenID geändert", "Invalid request" => "Ungültige Anfrage", "Language changed" => "Sprache geändert", +"Disable" => "Deaktivieren", +"Enable" => "Aktivieren", +"Saving..." => "Speichern...", "__language_name__" => "Deutsch", +"Security Warning" => "Sicherheitshinweis", "Log" => "Log", "More" => "mehr", "Add your App" => "Füge deine App hinzu", "Select an App" => "Wähle eine Anwendung aus", +"See application page at apps.owncloud.com" => "Weitere Anwendungen auf apps.owncloud.com", "-licensed" => "-lizenziert", "by" => "von", "Documentation" => "Dokumentation", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 3d063daa3b..9008b85cec 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,12 +1,19 @@ "Το Email αποθηκεύτηκε ", +"Invalid email" => "Μη έγκυρο email", "OpenID Changed" => "Το OpenID άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", "Language changed" => "Η γλώσσα άλλαξε", +"Disable" => "Απενεργοποίηση", +"Enable" => "Ενεργοποίηση", +"Saving..." => "Αποθήκευση...", "__language_name__" => "__όνομα_γλώσσας__", +"Security Warning" => "Προειδοποίηση Ασφαλείας", "Log" => "Αρχείο καταγραφής", "More" => "Περισσότερο", "Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ", "Select an App" => "Επιλέξτε μια εφαρμογή", +"See application page at apps.owncloud.com" => "Η σελίδα εφαρμογών στο apps.owncloud.com", "-licensed" => "-με άδεια", "by" => "από", "Documentation" => "Τεκμηρίωση", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index c79817a272..348bee92c7 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -1,12 +1,18 @@ "La retpoŝtadreso konserviĝis", +"Invalid email" => "Nevalida retpoŝtadreso", "OpenID Changed" => "La agordo de OpenID estas ŝanĝita", "Invalid request" => "Nevalida peto", "Language changed" => "La lingvo estas ŝanĝita", +"Disable" => "Malkapabligi", +"Enable" => "Kapabligi", +"Saving..." => "Konservante...", "__language_name__" => "Esperanto", "Log" => "Registro", "More" => "Pli", "Add your App" => "Aldonu vian aplikaĵon", "Select an App" => "Elekti aplikaĵon", +"See application page at apps.owncloud.com" => "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com", "-licensed" => "-permesila", "by" => "de", "Documentation" => "Dokumentaro", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 75ba2b72f0..4ab799a7f0 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -1,12 +1,18 @@ "Kiri on salvestatud", +"Invalid email" => "Vigane e-post", "OpenID Changed" => "OpenID on muudetud", "Invalid request" => "Vigane päring", "Language changed" => "Keel on muudetud", +"Disable" => "Lülita välja", +"Enable" => "Lülita sisse", +"Saving..." => "Salvestamine...", "__language_name__" => "Eesti", "Log" => "Logi", "More" => "Veel", "Add your App" => "Lisa oma rakendus", "Select an App" => "Vali programm", +"See application page at apps.owncloud.com" => "Vaata rakenduste lehte aadressil apps.owncloud.com", "-licensed" => "-litsenseeritud", "by" => "kelle poolt", "Documentation" => "Dokumentatsioon", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 4ef58dd112..1e8379b752 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -1,11 +1,18 @@ "Eposta gorde da", +"Invalid email" => "Baliogabeko eposta", "OpenID Changed" => "OpenID aldatuta", "Invalid request" => "Baliogabeko eskaria", "Language changed" => "Hizkuntza aldatuta", +"Disable" => "Ez-gaitu", +"Enable" => "Gaitu", +"Saving..." => "Gordetzen...", "__language_name__" => "Euskera", +"Log" => "Egunkaria", "More" => "Gehiago", "Add your App" => "Gehitu zure aplikazioa", "Select an App" => "Aukeratu programa bat", +"See application page at apps.owncloud.com" => "Ikusi programen orria apps.owncloud.com en", "-licensed" => "lizentziarekin", "by" => " Egilea:", "Documentation" => "Dokumentazioa", @@ -34,6 +41,7 @@ "Password" => "Pasahitza", "Groups" => "Taldeak", "Create" => "Sortu", +"Default Quota" => "Kuota lehentsia", "Other" => "Besteak", "Quota" => "Kuota", "Delete" => "Ezabatu" diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 892de2d9ec..b5345972ac 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -1,12 +1,18 @@ "ایمیل ذخیره شد", +"Invalid email" => "ایمیل غیر قابل قبول", "OpenID Changed" => "OpenID تغییر کرد", "Invalid request" => "درخواست غیر قابل قبول", "Language changed" => "زبان تغییر کرد", +"Disable" => "غیرفعال", +"Enable" => "فعال", +"Saving..." => "درحال ذخیره ...", "__language_name__" => "__language_name__", "Log" => "کارنامه", "More" => "بیشتر", "Add your App" => "برنامه خود را بیافزایید", "Select an App" => "یک برنامه انتخاب کنید", +"See application page at apps.owncloud.com" => "صفحه این اٌپ را در apps.owncloud.com ببینید", "-licensed" => "مجوزنامه", "by" => "به وسیله", "Documentation" => "مستندات", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 76964b3080..bbfcdec384 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,12 +1,19 @@ "Sähköposti tallennettu", +"Invalid email" => "Virheellinen sähköposti", "OpenID Changed" => "OpenID on vaihdettu", "Invalid request" => "Virheellinen pyyntö", "Language changed" => "Kieli on vaihdettu", +"Disable" => "Poista käytöstä", +"Enable" => "Käytä", +"Saving..." => "Tallennetaan...", "__language_name__" => "_kielen_nimi_", +"Security Warning" => "Turvallisuusvaroitus", "Log" => "Loki", "More" => "Lisää", "Add your App" => "Lisää ohjelmasi", "Select an App" => "Valitse ohjelma", +"See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", "-licensed" => "-lisenssöity", "by" => "henkilölle", "Documentation" => "Dokumentaatio", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 7e9a92f6bb..83a2ca7b38 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,12 +1,19 @@ "E-mail sauvegardé", +"Invalid email" => "E-mail invalide", "OpenID Changed" => "Identifiant OpenID changé", "Invalid request" => "Requête invalide", "Language changed" => "Langue changée", +"Disable" => "Désactivé", +"Enable" => "Activé", +"Saving..." => "Sauvegarde...", "__language_name__" => "Français", +"Security Warning" => "Alertes de sécurité", "Log" => "Journaux", "More" => "Plus", -"Add your App" => "Ajouter votre application", +"Add your App" => "Ajoutez votre application", "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" => "sous licence", "by" => "par", "Documentation" => "Documentation", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 0459d940b4..5ab1f91e6d 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -1,12 +1,18 @@ "Correo electrónico gardado", +"Invalid email" => "correo electrónico non válido", "OpenID Changed" => "Mudou o OpenID", "Invalid request" => "Petición incorrecta", "Language changed" => "O idioma mudou", +"Disable" => "Deshabilitar", +"Enable" => "Habilitar", +"Saving..." => "Gardando...", "__language_name__" => "Galego", "Log" => "Conectar", "More" => "Máis", "Add your App" => "Engade o teu aplicativo", "Select an App" => "Escolla un Aplicativo", +"See application page at apps.owncloud.com" => "Vexa a páxina do aplicativo en apps.owncloud.com", "-licensed" => "-licenciado", "by" => "por", "Documentation" => "Documentación", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 39055c2139..17e803a325 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -1,12 +1,18 @@ "הדוא״ל נשמר", +"Invalid email" => "דוא״ל לא חוקי", "OpenID Changed" => "OpenID השתנה", "Invalid request" => "בקשה לא חוקית", "Language changed" => "שפה השתנתה", +"Disable" => "בטל", +"Enable" => "הפעל", +"Saving..." => "שומר..", "__language_name__" => "עברית", "Log" => "יומן", "More" => "עוד", "Add your App" => "הוספת היישום שלך", "Select an App" => "בחירת יישום", +"See application page at apps.owncloud.com" => "צפה בעמוד הישום ב apps.owncloud.com", "-licensed" => "רשיון", "by" => "מאת", "Documentation" => "תיעוד", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 5f357a85d2..6fb29ce79c 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -1,12 +1,18 @@ "Email spremljen", +"Invalid email" => "Neispravan email", "OpenID Changed" => "OpenID promijenjen", "Invalid request" => "Neispravan zahtjev", "Language changed" => "Jezik promijenjen", +"Disable" => "Isključi", +"Enable" => "Uključi", +"Saving..." => "Spremanje...", "__language_name__" => "__ime_jezika__", "Log" => "dnevnik", "More" => "više", "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", "-licensed" => "-licencirano", "by" => "od", "Documentation" => "dokumentacija", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 7eb7772f6d..819fc0a2c3 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -1,12 +1,18 @@ "Email mentve", +"Invalid email" => "Hibás email", "OpenID Changed" => "OpenID megváltozott", "Invalid request" => "Érvénytelen kérés", "Language changed" => "A nyelv megváltozott", +"Disable" => "Letiltás", +"Enable" => "Engedélyezés", +"Saving..." => "Mentés...", "__language_name__" => "__language_name__", "Log" => "Napló", "More" => "Tovább", "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", "-licensed" => "-licencelt", "by" => ":", "Documentation" => "Dokumentáció", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 69e5698374..7050b85762 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,12 +1,18 @@ "メールアドレスを保存しました", +"Invalid email" => "無効なメールアドレス", "OpenID Changed" => "OpenIDが変更されました", "Invalid request" => "無効なリクエストです", "Language changed" => "言語が変更されました", +"Disable" => "無効", +"Enable" => "有効", +"Saving..." => "保存中...", "__language_name__" => "Japanese (日本語)", "Log" => "ログ", "More" => "もっと", "Add your App" => "アプリを追加", "Select an App" => "アプリを選択してください", +"See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", "-licensed" => "ライセンス", "by" => "@", "Documentation" => "ドキュメント", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index a2c1210af6..828426dc1d 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -1,12 +1,18 @@ "이메일 저장", +"Invalid email" => "잘못된 이메일", "OpenID Changed" => "OpenID 변경됨", "Invalid request" => "잘못된 요청", "Language changed" => "언어가 변경되었습니다", +"Disable" => "비활성화", +"Enable" => "활성화", +"Saving..." => "저장...", "__language_name__" => "한국어", "Log" => "로그", "More" => "더", "Add your App" => "앱 추가", "Select an App" => "프로그램 선택", +"See application page at apps.owncloud.com" => "application page at apps.owncloud.com을 보시오.", "-licensed" => " 라이선스 사용", "by" => " by ", "Documentation" => "문서", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 504217a9db..409fa9517f 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -1,7 +1,11 @@ "Netinkamas el. paštas", "OpenID Changed" => "OpenID pakeistas", "Invalid request" => "Klaidinga užklausa", "Language changed" => "Kalba pakeista", +"Disable" => "Išjungti", +"Enable" => "Įjungti", +"Saving..." => "Saugoma..", "__language_name__" => "Kalba", "Log" => "Žurnalas", "More" => "Daugiau", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php new file mode 100644 index 0000000000..9fa1ccdcfe --- /dev/null +++ b/settings/l10n/lv.php @@ -0,0 +1,49 @@ + "Epasts tika saglabāts", +"Invalid email" => "Nepareizs epasts", +"OpenID Changed" => "OpenID nomainīts", +"Invalid request" => "Nepareizs vaicājums", +"Language changed" => "Valoda tika nomainīta", +"Disable" => "Atvienot", +"Enable" => "Pievienot", +"Saving..." => "Saglabā...", +"__language_name__" => "__valodas_nosaukums__", +"Security Warning" => "Brīdinājums par drošību", +"Log" => "Log", +"More" => "Vairāk", +"Add your App" => "Pievieno savu aplikāciju", +"Select an App" => "Izvēlies aplikāciju", +"See application page at apps.owncloud.com" => "Apskatie aplikāciju lapu - apps.owncloud.com", +"-licensed" => "licenzēts", +"by" => "no", +"Documentation" => "Dokumentācija", +"Managing Big Files" => "Rīkoties ar apjomīgiem failiem", +"Ask a question" => "Uzdod jautajumu", +"Problems connecting to help database." => "Problēmas ar datubāzes savienojumu", +"Go there manually." => "Nokļūt tur pašrocīgi", +"Answer" => "Atbildēt", +"You use" => "Jūs iymantojat", +"of the available" => "no pieejamajiem", +"Desktop and Mobile Syncing Clients" => "Desktop un mobīlo ierīču sinhronizācijas rīks", +"Download" => "Lejuplādēt", +"Your password got changed" => "Jūsu parole tika nomainīta", +"Unable to change your password" => "Nav iespējams nomainīt jūsu paroli", +"Current password" => "Pašreizējā parole", +"New password" => "Jauna parole", +"show" => "parādīt", +"Change password" => "Nomainīt paroli", +"Email" => "Epasts", +"Your email address" => "Jūsu epasta adrese", +"Fill in an email address to enable password recovery" => "Ievadiet epasta adresi, lai vēlak būtu iespēja atgūt paroli, ja būs nepieciešamība", +"Language" => "Valoda", +"Help translate" => "Palīdzi tulkot", +"use this address to connect to your ownCloud in your file manager" => "izmanto šo adresi lai ielogotos ownCloud no sava failu pārlūka", +"Name" => "Vārds", +"Password" => "Parole", +"Groups" => "Grupas", +"Create" => "Izveidot", +"Default Quota" => "Apjoms pēc noklusējuma", +"Other" => "Cits", +"Quota" => "Apjoms", +"Delete" => "Izdzēst" +); diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 4a61ba9d51..38e3cc6e09 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -1,12 +1,18 @@ "Електронската пошта е снимена", +"Invalid email" => "Неисправна електронска пошта", "OpenID Changed" => "OpenID сменето", "Invalid request" => "неправилно барање", "Language changed" => "Јазикот е сменет", +"Disable" => "Оневозможи", +"Enable" => "Овозможи", +"Saving..." => "Снимам...", "__language_name__" => "__language_name__", "Log" => "Записник", "More" => "Повеќе", "Add your App" => "Додадете ја Вашата апликација", "Select an App" => "Избери аппликација", +"See application page at apps.owncloud.com" => "Види ја страницата со апликации на apps.owncloud.com", "-licensed" => "-licensed", "by" => "од", "Documentation" => "Документација", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index f0fba7a7c0..b701bf09eb 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -1,17 +1,30 @@ "Emel disimpan", +"Invalid email" => "Emel tidak sah", "OpenID Changed" => "OpenID ditukar", "Invalid request" => "Permintaan tidak sah", "Language changed" => "Bahasa ditukar", +"Disable" => "Nyahaktif", +"Enable" => "Aktif", +"Saving..." => "Simpan...", "__language_name__" => "_nama_bahasa_", +"Log" => "Log", +"More" => "Lanjutan", +"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", "-licensed" => "-dilesen", "by" => "oleh", +"Documentation" => "Dokumentasi", +"Managing Big Files" => "Mengurus Fail Besar", "Ask a question" => "Tanya soalan", "Problems connecting to help database." => "Masalah menghubung untuk membantu pengkalan data", "Go there manually." => "Pergi ke sana secara manual", "Answer" => "Jawapan", "You use" => "Anda menggunakan", "of the available" => "yang tersedia", +"Desktop and Mobile Syncing Clients" => "Klien Selarian untuk Desktop dan Mobile", +"Download" => "Muat turun", "Your password got changed" => "Kata laluan anda ditukar", "Unable to change your password" => "Gagal menukar kata laluan anda ", "Current password" => "Kata laluan terkini", @@ -28,6 +41,8 @@ "Password" => "Kata laluan ", "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 1379bb9c2e..2a5188a9cc 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -1,21 +1,29 @@ "Epost lagret", +"Invalid email" => "Ugyldig epost", "OpenID Changed" => "OpenID endret", "Invalid request" => "Ugyldig forespørsel", "Language changed" => "Språk endret", +"Disable" => "Slå avBehandle ", +"Enable" => "Slå på", +"Saving..." => "Lagrer...", "__language_name__" => "__language_name__", "Log" => "Logg", "More" => "Mer", "Add your App" => "Legg til din App", "Select an App" => "Velg en app", +"See application page at apps.owncloud.com" => "Se applikasjonens side på apps.owncloud.org", "-licensed" => "-lisensiert", "by" => "av", "Documentation" => "Dokumentasjon", +"Managing Big Files" => "Håndtere store filer", "Ask a question" => "Still et spørsmål", "Problems connecting to help database." => "Problemer med å koble til hjelp-databasen", "Go there manually." => "Gå dit manuelt", "Answer" => "Svar", "You use" => "Du bruker", "of the available" => "av den tilgjengelige", +"Desktop and Mobile Syncing Clients" => "Klienter for datamaskiner og mobile enheter", "Download" => "Last ned", "Your password got changed" => "Passordet ditt ble endret", "Unable to change your password" => "Kunne ikke endre passordet ditt", @@ -34,6 +42,7 @@ "Groups" => "Grupper", "Create" => "Opprett", "Default Quota" => "Standard Kvote", +"Other" => "Annet", "Quota" => "Kvote", "Delete" => "Slett" ); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 939907ef71..a1db0f457f 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,12 +1,18 @@ "E-mail bewaard", +"Invalid email" => "Ongeldige e-mail", "OpenID Changed" => "OpenID is aangepast", "Invalid request" => "Ongeldig verzoek", "Language changed" => "Taal aangepast", +"Disable" => "Uitschakelen", +"Enable" => "Inschakelen", +"Saving..." => "Aan het bewaren.....", "__language_name__" => "Nederlands", "Log" => "Log", "More" => "Meer", "Add your App" => "Voeg je App toe", "Select an App" => "Selecteer een app", +"See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", "-licensed" => "-gelicentieerd", "by" => "door", "Documentation" => "Documentatie", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index d9dac06c00..575b01432e 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -1,12 +1,18 @@ "Email zapisany", +"Invalid email" => "Niepoprawny email", "OpenID Changed" => "Zmieniono OpenID", "Invalid request" => "Nieprawidłowe żądanie", "Language changed" => "Język zmieniony", +"Disable" => "Wyłączone", +"Enable" => "Włączone", +"Saving..." => "Zapisywanie...", "__language_name__" => "Polski", "Log" => "Log", "More" => "Więcej", "Add your App" => "Dodaj aplikacje", "Select an App" => "Zaznacz aplikacje", +"See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "-licensed" => "-licencjonowany", "by" => "przez", "Documentation" => "Dokumentacja", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 35cf507194..e8154dfca7 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -1,12 +1,18 @@ "Email gravado", +"Invalid email" => "Email inválido", "OpenID Changed" => "Mudou OpenID", "Invalid request" => "Pedido inválido", "Language changed" => "Mudou Idioma", +"Disable" => "Desabilitado", +"Enable" => "Habilitado", +"Saving..." => "Gravando...", "__language_name__" => "Português", "Log" => "Log", "More" => "Mais", "Add your App" => "Adicione seu Aplicativo", "Select an App" => "Selecione uma Aplicação", +"See application page at apps.owncloud.com" => "Ver página do aplicativo em apps.owncloud.com", "-licensed" => "-licenciados", "by" => "por", "Documentation" => "Documentação", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index af7088daa1..159c3a7d07 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -1,12 +1,18 @@ "Email guardado", +"Invalid email" => "Email inválido", "OpenID Changed" => "OpenID alterado", "Invalid request" => "Pedido inválido", "Language changed" => "Idioma alterado", +"Disable" => "Desativar", +"Enable" => "Ativar", +"Saving..." => "A guardar...", "__language_name__" => "__language_name__", "Log" => "Log", "More" => "Mais", "Add your App" => "Adicione a sua aplicação", "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" => "-licenciado", "by" => "por", "Documentation" => "Documentação", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 4ab514815c..253625b486 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,12 +1,18 @@ "Email сохранен", +"Invalid email" => "Неправильный Email", "OpenID Changed" => "OpenID изменён", "Invalid request" => "Неверный запрос", "Language changed" => "Язык изменён", +"Disable" => "Отключить", +"Enable" => "Включить", +"Saving..." => "Сохранение...", "__language_name__" => "Русский ", "Log" => "Журнал", "More" => "Ещё", "Add your App" => "Добавить приложение", "Select an App" => "Выберите приложение", +"See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "-licensed" => "-лицензия", "by" => "от", "Documentation" => "Документация", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index fe755aecb4..edf908ce09 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,12 +1,18 @@ "Email uložený", +"Invalid email" => "Neplatný email", "OpenID Changed" => "OpenID zmenené", "Invalid request" => "Neplatná požiadavka", "Language changed" => "Jazyk zmenený", +"Disable" => "Zakázať", +"Enable" => "Povoliť", +"Saving..." => "Ukladám...", "__language_name__" => "Slovensky", "Log" => "Záznam", "More" => "Viac", "Add your App" => "Pridať vašu aplikáciu", "Select an App" => "Vyberte aplikáciu", +"See application page at apps.owncloud.com" => "Pozrite si stránku aplikácie na apps.owncloud.com", "-licensed" => "-licencované", "by" => "od", "Documentation" => "Dokumentácia", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 58afe21f45..e4f5a500cc 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,12 +1,18 @@ "E-poštni naslov je bil shranjen", +"Invalid email" => "Neveljaven e-poštni naslov", "OpenID Changed" => "OpenID je bil spremenjen", "Invalid request" => "Neveljaven zahtevek", "Language changed" => "Jezik je bil spremenjen", +"Disable" => "Onemogoči", +"Enable" => "Omogoči", +"Saving..." => "Shranjevanje...", "__language_name__" => "__ime_jezika__", "Log" => "Dnevnik", "More" => "Več", "Add your App" => "Dodajte vašo aplikacijo", "Select an App" => "Izberite aplikacijo", +"See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com", "-licensed" => "-licencirana", "by" => "s strani", "Documentation" => "Dokumentacija", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 40a370aabe..05d64302ea 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -1,12 +1,18 @@ "E-post sparad", +"Invalid email" => "Ogiltig e-post", "OpenID Changed" => "OpenID ändrat", "Invalid request" => "Ogiltig begäran", "Language changed" => "Språk ändrades", +"Disable" => "Avaktivera", +"Enable" => "Aktivera", +"Saving..." => "Sparar...", "__language_name__" => "__language_name__", "Log" => "Logg", "More" => "Mera", "Add your App" => "Lägg till din applikation", "Select an App" => "Välj en App", +"See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", "-licensed" => "-licensierat", "by" => "av", "Documentation" => "Dokumentation", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 5b744cb6be..2d6798ff29 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -1,12 +1,18 @@ "อีเมลถูกบันทึกแล้ว", +"Invalid email" => "อีเมลไม่ถูกต้อง", "OpenID Changed" => "เปลี่ยนชื่อบัญชี OpenID แล้ว", "Invalid request" => "คำร้องขอไม่ถูกต้อง", "Language changed" => "เปลี่ยนภาษาเรียบร้อยแล้ว", +"Disable" => "ปิดใช้งาน", +"Enable" => "เปิดใช้งาน", +"Saving..." => "กำลังบันทึุกข้อมูล...", "__language_name__" => "ภาษาไทย", "Log" => "บันทึกการเปลี่ยนแปลง", "More" => "เพิ่มเติม", "Add your App" => "เพิ่มแอปของคุณ", "Select an App" => "เลือก App", +"See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", "-licensed" => "-ได้รับอนุญาติแล้ว", "by" => "โดย", "Documentation" => "เอกสารคู่มือการใช้งาน", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 01ad142a3d..42e6eac5f3 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -1,12 +1,18 @@ "Eposta kaydedildi", +"Invalid email" => "Geçersiz eposta", "OpenID Changed" => "OpenID Değiştirildi", "Invalid request" => "Geçersiz istek", "Language changed" => "Dil değiştirildi", +"Disable" => "Etkin değil", +"Enable" => "Etkin", +"Saving..." => "Kaydediliyor...", "__language_name__" => "__dil_adı__", "Log" => "Günlük", "More" => "Devamı", "Add your App" => "Uygulamanı Ekle", "Select an App" => "Bir uygulama seçin", +"See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", "-licensed" => "-lisanslı", "by" => "yapan", "Documentation" => "Dökümantasyon", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index d274b372ee..2e043f0266 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,12 +1,18 @@ "电子邮件已保存", +"Invalid email" => "无效的电子邮件", "OpenID Changed" => "OpenID 已修改", "Invalid request" => "非法请求", "Language changed" => "语言已修改", +"Disable" => "禁用", +"Enable" => "启用", +"Saving..." => "正在保存", "__language_name__" => "简体中文", "Log" => "日志", "More" => "更多", "Add your App" => "添加应用", "Select an App" => "选择一个应用", +"See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", "-licensed" => "-许可证", "by" => "由", "Documentation" => "文档", From d1dee2843798891463d38a839b2253588db88578 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 26 Jul 2012 20:45:32 -0400 Subject: [PATCH 43/68] Check if size isset, try to fix used space calculation again, fixs bug oc-1331 --- settings/personal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/personal.php b/settings/personal.php index 8ad3af0873..82626526d5 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -18,7 +18,7 @@ OC_App::setActiveNavigationEntry( 'personal' ); // calculate the disc space $rootInfo=OC_FileCache::get(''); $sharedInfo=OC_FileCache::get('/Shared'); -if (!isset($sharedInfo)) { +if (!isset($sharedInfo['size'])) { $sharedSize = 0; } else { $sharedSize = $sharedInfo['size']; From d006a551f4a90e9e6ed797cf1357e1b12623f1f6 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 26 Jul 2012 22:53:55 -0400 Subject: [PATCH 44/68] Run pre and post proxies for file_put_contents() streams --- lib/filesystemview.php | 67 +++++++++++++++++++++++------------------- 1 file changed, 36 insertions(+), 31 deletions(-) diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 3c989d7c36..e78e5e8ef6 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -223,49 +223,54 @@ class OC_FilesystemView { } public function file_put_contents($path, $data) { if(is_resource($data)) {//not having to deal with streams in file_put_contents makes life easier - $exists = $this->file_exists($path); - $run = true; - if(!$exists) { + $absolutePath = $this->getAbsolutePath($path); + if (OC_FileProxy::runPreProxies('file_put_contents', $absolutePath) && OC_Filesystem::isValidPath($path)) { + $path = $this->getRelativePath($absolutePath); + $exists = $this->file_exists($path); + $run = true; + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_create, + array( + OC_Filesystem::signal_param_path => $path, + OC_Filesystem::signal_param_run => &$run + ) + ); + } OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_create, + OC_Filesystem::signal_write, array( OC_Filesystem::signal_param_path => $path, OC_Filesystem::signal_param_run => &$run ) ); - } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_write, - array( - OC_Filesystem::signal_param_path => $path, - OC_Filesystem::signal_param_run => &$run - ) - ); - if(!$run) { - return false; - } - $target=$this->fopen($path, 'w'); - if($target) { - $count=OC_Helper::streamCopy($data, $target); - fclose($target); - fclose($data); - if(!$exists) { + if(!$run) { + return false; + } + $target=$this->fopen($path, 'w'); + if($target) { + $count=OC_Helper::streamCopy($data, $target); + fclose($target); + fclose($data); + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_create, + array( OC_Filesystem::signal_param_path => $path) + ); + } OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_create, + OC_Filesystem::signal_post_write, array( OC_Filesystem::signal_param_path => $path) ); + OC_FileProxy::runPostProxies('hash', $absolutePath, $count); + return $count > 0; + }else{ + return false; } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_write, - array( OC_Filesystem::signal_param_path => $path) - ); - return $count > 0; - }else{ - return false; } }else{ return $this->basicOperation('file_put_contents', $path, array('create', 'write'), $data); From ea2e76eecc8b02ba3a10a803e8490b91aac2fe95 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 26 Jul 2012 23:10:21 -0400 Subject: [PATCH 45/68] Forgot data parameter for file_put_contents() streams pre proxies --- lib/filesystemview.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/filesystemview.php b/lib/filesystemview.php index e78e5e8ef6..d1bab03e43 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -224,7 +224,7 @@ class OC_FilesystemView { public function file_put_contents($path, $data) { if(is_resource($data)) {//not having to deal with streams in file_put_contents makes life easier $absolutePath = $this->getAbsolutePath($path); - if (OC_FileProxy::runPreProxies('file_put_contents', $absolutePath) && OC_Filesystem::isValidPath($path)) { + if (OC_FileProxy::runPreProxies('file_put_contents', $absolutePath, $data) && OC_Filesystem::isValidPath($path)) { $path = $this->getRelativePath($absolutePath); $exists = $this->file_exists($path); $run = true; From 7050f0fa67ac4dd17e9712f9cc823f98c7452d1d Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 26 Jul 2012 23:54:25 -0400 Subject: [PATCH 46/68] Cast groups as string, fixes bug oc-1309. Thanks to nderambure. --- settings/js/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/js/users.js b/settings/js/users.js index e46c6446b8..7f3b027b4d 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -87,7 +87,7 @@ $(document).ready(function(){ var user=element.data('username'); if($(element).attr('class') == 'groupsselect'){ if(element.data('userGroups')){ - checked=element.data('userGroups').split(', '); + checked=String(element.data('userGroups')).split(', '); } if(user){ var checkHandeler=function(group){ From 680eed6bacbbc1f8352c9e8c01521b9c7fa5fff9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 27 Jul 2012 15:35:36 +0200 Subject: [PATCH 47/68] fix for bug #1295, don't escape password reset link --- core/lostpassword/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index bd2a3e897e..8f86fe23aa 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -19,7 +19,7 @@ if (isset($_POST['user'])) { if (!empty($email) and isset($_POST['sectoken']) and isset($_SESSION['sectoken']) and ($_POST['sectoken']==$_SESSION['sectoken']) ) { $link = OC_Helper::linkToAbsolute('core/lostpassword', 'resetpassword.php').'?user='.urlencode($_POST['user']).'&token='.$token; $tmpl = new OC_Template('core/lostpassword', 'email'); - $tmpl->assign('link', $link); + $tmpl->assign('link', $link, false); $msg = $tmpl->fetchPage(); $l = OC_L10N::get('core'); $from = 'lostpassword-noreply@' . OCP\Util::getServerHost(); From 4c822df28d6d0ece03468b4283bef235f9496b9e Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 27 Jul 2012 09:37:11 -0400 Subject: [PATCH 48/68] Fix incorrect copy/paste for file_put_contents() --- lib/filesystemview.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/filesystemview.php b/lib/filesystemview.php index d1bab03e43..faf3f0bd4c 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -266,7 +266,7 @@ class OC_FilesystemView { OC_Filesystem::signal_post_write, array( OC_Filesystem::signal_param_path => $path) ); - OC_FileProxy::runPostProxies('hash', $absolutePath, $count); + OC_FileProxy::runPostProxies('file_put_contents', $absolutePath, $count); return $count > 0; }else{ return false; From 48f33be848f027ec5a2a4aa8e2b270e8f7e2ff20 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 27 Jul 2012 12:32:03 -0400 Subject: [PATCH 49/68] Only call mkdir() if the root folder does not exist for FTP external storage --- apps/files_external/lib/ftp.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/files_external/lib/ftp.php b/apps/files_external/lib/ftp.php index 4d5ae670de..63f14a2877 100644 --- a/apps/files_external/lib/ftp.php +++ b/apps/files_external/lib/ftp.php @@ -24,9 +24,10 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ if(!$this->root || $this->root[0]!='/'){ $this->root='/'.$this->root; } - //create the root folder if necesary - mkdir($this->constructUrl('')); + if (!$this->is_dir('')) { + $this->mkdir(''); + } } /** From df9f5b902a39d94c0da221b5d767b19e1c35e680 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 27 Jul 2012 15:34:51 -0400 Subject: [PATCH 50/68] Fix group detection for sharing in case username contains '@', fix for oc-1270 --- apps/files_sharing/ajax/getitem.php | 7 ++++++- apps/files_sharing/lib_share.php | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/ajax/getitem.php b/apps/files_sharing/ajax/getitem.php index ff6c29b6a0..06a80102de 100644 --- a/apps/files_sharing/ajax/getitem.php +++ b/apps/files_sharing/ajax/getitem.php @@ -22,8 +22,13 @@ while ($path != $userDirectory) { } } else { // Check if uid_shared_with is a group - if (($pos = strpos($uid_shared_with, '@')) !== false) { + $pos = strrpos($uid_shared_with, '@'); + if ($pos !== false) { $gid = substr($uid_shared_with, $pos + 1); + } else { + $gid = false; + } + if ($gid && OC_Group::groupExists($gid)) { // Include users in the group so the users can be removed from the list of people to share with if ($path == $source) { $group = array(array('gid' => $gid, 'permissions' => $rows[$i]['permissions'], 'users' => OC_Group::usersInGroup($gid), 'parentFolder' => false)); diff --git a/apps/files_sharing/lib_share.php b/apps/files_sharing/lib_share.php index 0237acfc1a..3bedd9bebc 100644 --- a/apps/files_sharing/lib_share.php +++ b/apps/files_sharing/lib_share.php @@ -179,7 +179,7 @@ class OC_Share { $uid_shared_with = OC_Group::usersInGroup($uid_shared_with); // Remove the owner from the list of users in the group $uid_shared_with = array_diff($uid_shared_with, array(OCP\USER::getUser())); - } else if ($uid = strstr($uid_shared_with, '@', true)) { + } else if ($uid = strrchr($uid_shared_with, '@', true)) { $uid_shared_with = array($uid); } else { $uid_shared_with = array($uid_shared_with); From 6a4c46e2c29eac2c6c0344c46ab18375608b5c5f Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 27 Jul 2012 18:05:18 -0400 Subject: [PATCH 51/68] Set the user id when authenticating user for Ampache, fixes bug oc-219 --- apps/media/lib_ampache.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/media/lib_ampache.php b/apps/media/lib_ampache.php index d5a093338c..a041e9a884 100644 --- a/apps/media/lib_ampache.php +++ b/apps/media/lib_ampache.php @@ -71,6 +71,7 @@ class OC_MEDIA_AMPACHE{ $pass=$users[0]['user_password_sha256']; $key=hash('sha256',$time.$pass); if($key==$auth){ + $token=hash('sha256','oc_media_'.$key); OC_MEDIA_COLLECTION::$uid=$users[0]['user_id']; $date=date('c');//todo proper update/add/clean dates @@ -150,6 +151,7 @@ class OC_MEDIA_AMPACHE{ $users=$query->execute(array($auth))->fetchAll(); if(count($users)>0){ OC_MEDIA_COLLECTION::$uid=$users[0]['user_id']; + OC_User::setUserId($users[0]['user_id']); return $users[0]['user_id']; }else{ return false; From dd4765ad1654f1fb52585a093ab3438b0810c88b Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 27 Jul 2012 18:10:40 -0400 Subject: [PATCH 52/68] Set filter to empty if not set by Ampache client --- apps/media/lib_ampache.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/media/lib_ampache.php b/apps/media/lib_ampache.php index a041e9a884..4951399fa1 100644 --- a/apps/media/lib_ampache.php +++ b/apps/media/lib_ampache.php @@ -71,7 +71,6 @@ class OC_MEDIA_AMPACHE{ $pass=$users[0]['user_password_sha256']; $key=hash('sha256',$time.$pass); if($key==$auth){ - $token=hash('sha256','oc_media_'.$key); OC_MEDIA_COLLECTION::$uid=$users[0]['user_id']; $date=date('c');//todo proper update/add/clean dates @@ -273,7 +272,7 @@ class OC_MEDIA_AMPACHE{ "); return; } - $filter=$params['filter']; + $filter = isset($params['filter']) ? $params['filter'] : ''; $albums=OC_MEDIA_COLLECTION::getAlbums($filter); $artist=OC_MEDIA_COLLECTION::getArtistName($filter); echo(''); @@ -402,7 +401,7 @@ class OC_MEDIA_AMPACHE{ "); return; } - $filter=$params['filter']; + $filter = isset($params['filter']) ? $params['filter'] : ''; $artists=OC_MEDIA_COLLECTION::getArtists($filter); $albums=OC_MEDIA_COLLECTION::getAlbums(0,$filter); $songs=OC_MEDIA_COLLECTION::getSongs(0,0,$filter); From 6bc45f11f7ec66a610b5cfa50f7621718b770694 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Sat, 28 Jul 2012 00:25:13 +0200 Subject: [PATCH 53/68] bookmarks.pot and lib.pot added to transifex --- l10n/.tx/config | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/l10n/.tx/config b/l10n/.tx/config index 3a0c6c28dc..814fb9a37d 100644 --- a/l10n/.tx/config +++ b/l10n/.tx/config @@ -36,3 +36,15 @@ file_filter = /gallery.po source_file = templates/gallery.pot source_lang = en +[owncloud.bookmarks] +file_filter = /bookmarks.po +source_file = templates/bookmarks.pot +source_lang = en +type = PO + +[owncloud.lib] +file_filter = /lib.po +source_file = templates/lib.pot +source_lang = en +type = PO + From fa4052d6f1385647b15aee84456f7ec7484bb04f Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 28 Jul 2012 02:05:38 +0200 Subject: [PATCH 54/68] [tx-robot] updated from transifex --- apps/bookmarks/l10n/fi_FI.php | 12 + apps/calendar/l10n/ca.php | 4 +- apps/contacts/l10n/ca.php | 2 +- apps/contacts/l10n/sk_SK.php | 86 +++- l10n/af/bookmarks.po | 60 +++ l10n/af/lib.po | 112 +++++ l10n/ar/bookmarks.po | 60 +++ l10n/ar/lib.po | 112 +++++ l10n/ar_SA/bookmarks.po | 60 +++ l10n/ar_SA/lib.po | 112 +++++ l10n/bg_BG/bookmarks.po | 60 +++ l10n/bg_BG/lib.po | 112 +++++ l10n/ca/bookmarks.po | 60 +++ l10n/ca/calendar.po | 8 +- l10n/ca/contacts.po | 6 +- l10n/ca/lib.po | 112 +++++ l10n/ca/settings.po | 12 +- l10n/cs_CZ/bookmarks.po | 60 +++ l10n/cs_CZ/lib.po | 112 +++++ l10n/da/bookmarks.po | 60 +++ l10n/da/lib.po | 112 +++++ l10n/de/bookmarks.po | 60 +++ l10n/de/lib.po | 112 +++++ l10n/de/settings.po | 13 +- l10n/el/bookmarks.po | 60 +++ l10n/el/lib.po | 112 +++++ l10n/eo/bookmarks.po | 60 +++ l10n/eo/lib.po | 112 +++++ l10n/es/bookmarks.po | 60 +++ l10n/es/lib.po | 112 +++++ l10n/et_EE/bookmarks.po | 60 +++ l10n/et_EE/lib.po | 112 +++++ l10n/eu/bookmarks.po | 60 +++ l10n/eu/lib.po | 112 +++++ l10n/fa/bookmarks.po | 60 +++ l10n/fa/lib.po | 112 +++++ l10n/fi_FI/bookmarks.po | 61 +++ l10n/fi_FI/lib.po | 113 +++++ l10n/fr/bookmarks.po | 60 +++ l10n/fr/lib.po | 112 +++++ l10n/fr/settings.po | 12 +- l10n/gl/bookmarks.po | 60 +++ l10n/gl/lib.po | 112 +++++ l10n/he/bookmarks.po | 60 +++ l10n/he/lib.po | 112 +++++ l10n/hr/bookmarks.po | 60 +++ l10n/hr/lib.po | 112 +++++ l10n/hu_HU/bookmarks.po | 60 +++ l10n/hu_HU/lib.po | 112 +++++ l10n/hy/bookmarks.po | 60 +++ l10n/hy/lib.po | 112 +++++ l10n/ia/bookmarks.po | 60 +++ l10n/ia/lib.po | 112 +++++ l10n/id/bookmarks.po | 60 +++ l10n/id/lib.po | 112 +++++ l10n/id_ID/bookmarks.po | 60 +++ l10n/id_ID/lib.po | 112 +++++ l10n/it/bookmarks.po | 60 +++ l10n/it/lib.po | 112 +++++ l10n/it/settings.po | 12 +- l10n/ja_JP/bookmarks.po | 60 +++ l10n/ja_JP/lib.po | 112 +++++ l10n/ko/bookmarks.po | 60 +++ l10n/ko/lib.po | 112 +++++ l10n/lb/bookmarks.po | 60 +++ l10n/lb/lib.po | 112 +++++ l10n/lt_LT/bookmarks.po | 60 +++ l10n/lt_LT/lib.po | 112 +++++ l10n/lv/bookmarks.po | 60 +++ l10n/lv/lib.po | 112 +++++ l10n/mk/bookmarks.po | 60 +++ l10n/mk/lib.po | 112 +++++ l10n/ms_MY/bookmarks.po | 60 +++ l10n/ms_MY/lib.po | 112 +++++ l10n/nb_NO/bookmarks.po | 60 +++ l10n/nb_NO/lib.po | 112 +++++ l10n/nl/bookmarks.po | 60 +++ l10n/nl/lib.po | 112 +++++ l10n/nn_NO/bookmarks.po | 60 +++ l10n/nn_NO/lib.po | 112 +++++ l10n/pl/bookmarks.po | 60 +++ l10n/pl/lib.po | 112 +++++ l10n/pt_BR/bookmarks.po | 60 +++ l10n/pt_BR/lib.po | 112 +++++ l10n/pt_PT/bookmarks.po | 60 +++ l10n/pt_PT/lib.po | 112 +++++ l10n/ro/bookmarks.po | 60 +++ l10n/ro/lib.po | 112 +++++ l10n/ru/bookmarks.po | 60 +++ l10n/ru/lib.po | 112 +++++ l10n/sk_SK/bookmarks.po | 60 +++ l10n/sk_SK/contacts.po | 919 ++++++++++++++++++---------------- l10n/sk_SK/lib.po | 112 +++++ l10n/sl/bookmarks.po | 60 +++ l10n/sl/lib.po | 112 +++++ l10n/so/bookmarks.po | 60 +++ l10n/so/lib.po | 112 +++++ l10n/sr/bookmarks.po | 60 +++ l10n/sr/lib.po | 112 +++++ l10n/sr@latin/bookmarks.po | 60 +++ l10n/sr@latin/lib.po | 112 +++++ l10n/sv/bookmarks.po | 60 +++ l10n/sv/lib.po | 112 +++++ l10n/templates/bookmarks.pot | 2 +- l10n/templates/calendar.pot | 2 +- l10n/templates/contacts.pot | 2 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/gallery.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/media.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/th_TH/bookmarks.po | 60 +++ l10n/th_TH/lib.po | 112 +++++ l10n/tr/bookmarks.po | 60 +++ l10n/tr/lib.po | 112 +++++ l10n/uk/bookmarks.po | 60 +++ l10n/uk/lib.po | 112 +++++ l10n/vi/bookmarks.po | 60 +++ l10n/vi/lib.po | 112 +++++ l10n/zh_CN/bookmarks.po | 60 +++ l10n/zh_CN/lib.po | 112 +++++ l10n/zh_TW/bookmarks.po | 60 +++ l10n/zh_TW/lib.po | 112 +++++ lib/l10n/fi_FI.php | 20 + settings/l10n/ca.php | 3 + settings/l10n/de.php | 3 + settings/l10n/fr.php | 3 + settings/l10n/it.php | 3 + 129 files changed, 9582 insertions(+), 500 deletions(-) create mode 100644 apps/bookmarks/l10n/fi_FI.php create mode 100644 l10n/af/bookmarks.po create mode 100644 l10n/af/lib.po create mode 100644 l10n/ar/bookmarks.po create mode 100644 l10n/ar/lib.po create mode 100644 l10n/ar_SA/bookmarks.po create mode 100644 l10n/ar_SA/lib.po create mode 100644 l10n/bg_BG/bookmarks.po create mode 100644 l10n/bg_BG/lib.po create mode 100644 l10n/ca/bookmarks.po create mode 100644 l10n/ca/lib.po create mode 100644 l10n/cs_CZ/bookmarks.po create mode 100644 l10n/cs_CZ/lib.po create mode 100644 l10n/da/bookmarks.po create mode 100644 l10n/da/lib.po create mode 100644 l10n/de/bookmarks.po create mode 100644 l10n/de/lib.po create mode 100644 l10n/el/bookmarks.po create mode 100644 l10n/el/lib.po create mode 100644 l10n/eo/bookmarks.po create mode 100644 l10n/eo/lib.po create mode 100644 l10n/es/bookmarks.po create mode 100644 l10n/es/lib.po create mode 100644 l10n/et_EE/bookmarks.po create mode 100644 l10n/et_EE/lib.po create mode 100644 l10n/eu/bookmarks.po create mode 100644 l10n/eu/lib.po create mode 100644 l10n/fa/bookmarks.po create mode 100644 l10n/fa/lib.po create mode 100644 l10n/fi_FI/bookmarks.po create mode 100644 l10n/fi_FI/lib.po create mode 100644 l10n/fr/bookmarks.po create mode 100644 l10n/fr/lib.po create mode 100644 l10n/gl/bookmarks.po create mode 100644 l10n/gl/lib.po create mode 100644 l10n/he/bookmarks.po create mode 100644 l10n/he/lib.po create mode 100644 l10n/hr/bookmarks.po create mode 100644 l10n/hr/lib.po create mode 100644 l10n/hu_HU/bookmarks.po create mode 100644 l10n/hu_HU/lib.po create mode 100644 l10n/hy/bookmarks.po create mode 100644 l10n/hy/lib.po create mode 100644 l10n/ia/bookmarks.po create mode 100644 l10n/ia/lib.po create mode 100644 l10n/id/bookmarks.po create mode 100644 l10n/id/lib.po create mode 100644 l10n/id_ID/bookmarks.po create mode 100644 l10n/id_ID/lib.po create mode 100644 l10n/it/bookmarks.po create mode 100644 l10n/it/lib.po create mode 100644 l10n/ja_JP/bookmarks.po create mode 100644 l10n/ja_JP/lib.po create mode 100644 l10n/ko/bookmarks.po create mode 100644 l10n/ko/lib.po create mode 100644 l10n/lb/bookmarks.po create mode 100644 l10n/lb/lib.po create mode 100644 l10n/lt_LT/bookmarks.po create mode 100644 l10n/lt_LT/lib.po create mode 100644 l10n/lv/bookmarks.po create mode 100644 l10n/lv/lib.po create mode 100644 l10n/mk/bookmarks.po create mode 100644 l10n/mk/lib.po create mode 100644 l10n/ms_MY/bookmarks.po create mode 100644 l10n/ms_MY/lib.po create mode 100644 l10n/nb_NO/bookmarks.po create mode 100644 l10n/nb_NO/lib.po create mode 100644 l10n/nl/bookmarks.po create mode 100644 l10n/nl/lib.po create mode 100644 l10n/nn_NO/bookmarks.po create mode 100644 l10n/nn_NO/lib.po create mode 100644 l10n/pl/bookmarks.po create mode 100644 l10n/pl/lib.po create mode 100644 l10n/pt_BR/bookmarks.po create mode 100644 l10n/pt_BR/lib.po create mode 100644 l10n/pt_PT/bookmarks.po create mode 100644 l10n/pt_PT/lib.po create mode 100644 l10n/ro/bookmarks.po create mode 100644 l10n/ro/lib.po create mode 100644 l10n/ru/bookmarks.po create mode 100644 l10n/ru/lib.po create mode 100644 l10n/sk_SK/bookmarks.po create mode 100644 l10n/sk_SK/lib.po create mode 100644 l10n/sl/bookmarks.po create mode 100644 l10n/sl/lib.po create mode 100644 l10n/so/bookmarks.po create mode 100644 l10n/so/lib.po create mode 100644 l10n/sr/bookmarks.po create mode 100644 l10n/sr/lib.po create mode 100644 l10n/sr@latin/bookmarks.po create mode 100644 l10n/sr@latin/lib.po create mode 100644 l10n/sv/bookmarks.po create mode 100644 l10n/sv/lib.po create mode 100644 l10n/th_TH/bookmarks.po create mode 100644 l10n/th_TH/lib.po create mode 100644 l10n/tr/bookmarks.po create mode 100644 l10n/tr/lib.po create mode 100644 l10n/uk/bookmarks.po create mode 100644 l10n/uk/lib.po create mode 100644 l10n/vi/bookmarks.po create mode 100644 l10n/vi/lib.po create mode 100644 l10n/zh_CN/bookmarks.po create mode 100644 l10n/zh_CN/lib.po create mode 100644 l10n/zh_TW/bookmarks.po create mode 100644 l10n/zh_TW/lib.po create mode 100644 lib/l10n/fi_FI.php diff --git a/apps/bookmarks/l10n/fi_FI.php b/apps/bookmarks/l10n/fi_FI.php new file mode 100644 index 0000000000..c814747411 --- /dev/null +++ b/apps/bookmarks/l10n/fi_FI.php @@ -0,0 +1,12 @@ + "Kirjanmerkit", +"unnamed" => "nimetön", +"Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Vedä tämä selaimesi kirjanmerkkipalkkiin ja napsauta sitä, kun haluat lisätä kirjanmerkin nopeasti:", +"Read later" => "Lue myöhemmin", +"Address" => "Osoite", +"Title" => "Otsikko", +"Tags" => "Tunnisteet", +"Save bookmark" => "Tallenna kirjanmerkki", +"You have no bookmarks" => "Sinulla ei ole kirjanmerkkejä", +"Bookmarklet
" => "Kirjanmerkitsin
" +); diff --git a/apps/calendar/l10n/ca.php b/apps/calendar/l10n/ca.php index 2d298a31a4..d999eaf473 100644 --- a/apps/calendar/l10n/ca.php +++ b/apps/calendar/l10n/ca.php @@ -183,12 +183,12 @@ "12h" => "12h", "First day of the week" => "Primer dia de la setmana", "Cache" => "Memòria de cau", -"Clear cache for repeating events" => "Neteja la memòria de cau pels esdveniments amb repetició", +"Clear cache for repeating events" => "Neteja la memòria de cau pels esdeveniments amb repetició", "Calendar CalDAV syncing addresses" => "Adreça de sincronització del calendari CalDAV", "more info" => "més informació", "Primary address (Kontact et al)" => "Adreça primària (Kontact et al)", "iOS/OS X" => "IOS/OS X", -"Read only iCalendar link(s)" => "Enllaç(os) del calendari només de lectura", +"Read only iCalendar link(s)" => "Enllaç(os) iCalendar només de lectura", "Users" => "Usuaris", "select users" => "seleccioneu usuaris", "Editable" => "Editable", diff --git a/apps/contacts/l10n/ca.php b/apps/contacts/l10n/ca.php index 285f96e64a..256182f02c 100644 --- a/apps/contacts/l10n/ca.php +++ b/apps/contacts/l10n/ca.php @@ -206,5 +206,5 @@ "more info" => "més informació", "Primary address (Kontact et al)" => "Adreça primària (Kontact i al)", "iOS/OS X" => "iOS/OS X", -"Read only vCard directory link(s)" => "Enllaç(os) només de lectura vCard" +"Read only vCard directory link(s)" => "Enllaç(os) vCard només de lectura" ); diff --git a/apps/contacts/l10n/sk_SK.php b/apps/contacts/l10n/sk_SK.php index 6e5ebe3bd3..79db2dbcf6 100644 --- a/apps/contacts/l10n/sk_SK.php +++ b/apps/contacts/l10n/sk_SK.php @@ -1,10 +1,11 @@ "Chyba (de)aktivácie adresára.", "There was an error adding the contact." => "Vyskytla sa chyba pri pridávaní kontaktu.", +"element name is not set." => "meno elementu nie je nastavené.", +"id is not set." => "ID nie je nastavené.", "Cannot add empty property." => "Nemôžem pridať prázdny údaj.", "At least one of the address fields has to be filled out." => "Musí byť uvedený aspoň jeden adresný údaj.", "Trying to add duplicate property: " => "Pokúšate sa pridať rovnaký atribút:", -"Error adding contact property." => "Chyba pridania údaju kontaktu", "No ID provided" => "ID nezadané", "Error setting checksum." => "Chyba pri nastavovaní kontrolného súčtu.", "No categories selected for deletion." => "Žiadne kategórie neboli vybraté na odstránenie.", @@ -12,22 +13,23 @@ "No contacts found." => "Žiadne kontakty nenájdené.", "Missing ID" => "Chýba ID", "Error parsing VCard for ID: \"" => "Chyba pri vyňatí ID z VCard:", -"Cannot add addressbook with an empty name." => "Nedá sa pridať adresár s prázdnym menom.", -"Error adding addressbook." => "Chyba počas pridávania adresára.", -"Error activating addressbook." => "Chyba aktivovania adresára.", "No contact ID was submitted." => "Nebolo nastavené ID kontaktu.", "Error reading contact photo." => "Chyba pri čítaní fotky kontaktu.", "Error saving temporary file." => "Chyba pri ukladaní dočasného súboru.", "The loading photo is not valid." => "Načítaná fotka je vadná.", -"id is not set." => "ID nie je nastavené.", "Information about vCard is incorrect. Please reload the page." => "Informácie o vCard sú neplatné. Prosím obnovte stránku.", "Error deleting contact property." => "Chyba odstránenia údaju kontaktu.", "Contact ID is missing." => "Chýba ID kontaktu.", -"Missing contact id." => "Chýba ID kontaktu.", "No photo path was submitted." => "Žiadna fotka nebola poslaná.", "File doesn't exist:" => "Súbor neexistuje:", "Error loading image." => "Chyba pri nahrávaní obrázka.", -"element name is not set." => "meno elementu nie je nastavené.", +"Error getting contact object." => "Chyba počas prevzatia objektu kontakt.", +"Error getting PHOTO property." => "Chyba počas získavania fotky.", +"Error saving contact." => "Chyba počas ukladania kontaktu.", +"Error resizing image" => "Chyba počas zmeny obrázku.", +"Error cropping image" => "Chyba počas orezania obrázku.", +"Error creating temporary image" => "Chyba počas vytvárania dočasného obrázku.", +"Error finding image: " => "Chyba vyhľadania obrázku: ", "checksum is not set." => "kontrolný súčet nie je nastavený.", "Information about vCard is incorrect. Please reload the page: " => "Informácia o vCard je nesprávna. Obnovte stránku, prosím.", "Something went FUBAR. " => "Niečo sa pokazilo.", @@ -41,8 +43,27 @@ "The uploaded file was only partially uploaded" => "Ukladaný súbor sa nahral len čiastočne", "No file was uploaded" => "Žiadny súbor nebol uložený", "Missing a temporary folder" => "Chýba dočasný priečinok", +"Couldn't save temporary image: " => "Nemôžem uložiť dočasný obrázok: ", +"Couldn't load temporary image: " => "Nemôžem načítať dočasný obrázok: ", +"No file was uploaded. Unknown error" => "Žiaden súbor nebol odoslaný. Neznáma chyba", "Contacts" => "Kontakty", -"Drop a VCF file to import contacts." => "Pretiahnite VCF súbor pre import kontaktov.", +"Sorry, this functionality has not been implemented yet" => "Bohužiaľ, táto funkcia ešte nebola implementovaná", +"Not implemented" => "Neimplementované", +"Couldn't get a valid address." => "Nemôžem získať platnú adresu.", +"Error" => "Chyba", +"Contact" => "Kontakt", +"New" => "Nový", +"New Contact" => "Nový kontakt", +"This property has to be non-empty." => "Tento parameter nemôže byť prázdny.", +"Couldn't serialize elements." => "Nemôžem previesť prvky.", +"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' zavolané bez argument. Prosím oznámte chybu na bugs.owncloud.org", +"Edit name" => "Upraviť meno", +"No files selected for upload." => "Žiadne súbory neboli vybrané k nahratiu", +"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Súbor, ktorý sa pokúšate nahrať, presahuje maximálnu povolenú veľkosť.", +"Select type" => "Vybrať typ", +"Result: " => "Výsledok: ", +" imported, " => " importovaných, ", +" failed." => " zlyhaných.", "Addressbook not found." => "Adresár sa nenašiel.", "This is not your addressbook." => "Toto nie je váš adresár.", "Contact could not be found." => "Kontakt nebol nájdený.", @@ -60,25 +81,44 @@ "Video" => "Video", "Pager" => "Pager", "Internet" => "Internet", +"Birthday" => "Narodeniny", +"Business" => "Biznis", +"Clients" => "Klienti", +"Holidays" => "Prázdniny", +"Meeting" => "Stretnutie", +"Other" => "Iné", +"Projects" => "Projekty", +"Questions" => "Otázky", "{name}'s Birthday" => "Narodeniny {name}", -"Contact" => "Kontakt", "Add Contact" => "Pridať Kontakt.", +"Import" => "Importovať", "Addressbooks" => "Adresáre", +"Close" => "Zatvoriť", +"Keyboard shortcuts" => "Klávesové skratky", +"Navigation" => "Navigácia", +"Next contact in list" => "Ďalší kontakt v zozname", +"Previous contact in list" => "Predchádzajúci kontakt v zozname", +"Next/previous addressbook" => "Ďalší/predošlí adresár", +"Actions" => "Akcie", +"Refresh contacts list" => "Obnov zoznam kontaktov", +"Add new contact" => "Pridaj nový kontakt", +"Add new addressbook" => "Pridaj nový adresár", +"Delete current contact" => "Vymaž súčasný kontakt", "Configure Address Books" => "Nastaviť adresáre", "New Address Book" => "Nový adresár", -"Import from VCF" => "Importovať z VCF", "CardDav Link" => "CardDav odkaz", "Download" => "Stiahnuť", "Edit" => "Upraviť", "Delete" => "Odstrániť", -"Download contact" => "Stiahnuť kontakt", -"Delete contact" => "Odstrániť kontakt", "Drop photo to upload" => "Pretiahnite sem fotku pre nahratie", +"Delete current photo" => "Odstrániť súčasnú fotku", +"Edit current photo" => "Upraviť súčasnú fotku", +"Upload new photo" => "Nahrať novú fotku", +"Select photo from ownCloud" => "Vybrať fotku z ownCloud", "Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formát vlastný, krátke meno, celé meno, obrátené alebo obrátené s čiarkami", "Edit name details" => "Upraviť podrobnosti mena", "Nickname" => "Prezývka", "Enter nickname" => "Zadajte prezývku", -"Birthday" => "Narodeniny", "dd-mm-yyyy" => "dd. mm. yyyy", "Groups" => "Skupiny", "Separate groups with commas" => "Oddelte skupiny čiarkami", @@ -94,24 +134,22 @@ "Edit address details" => "Upraviť podrobnosti adresy", "Add notes here." => "Tu môžete pridať poznámky.", "Add field" => "Pridať pole", -"Profile picture" => "Profilová fotka", "Phone" => "Telefón", "Note" => "Poznámka", -"Delete current photo" => "Odstrániť súčasnú fotku", -"Edit current photo" => "Upraviť súčasnú fotku", -"Upload new photo" => "Nahrať novú fotku", -"Select photo from ownCloud" => "Vybrať fotku z ownCloud", +"Download contact" => "Stiahnuť kontakt", +"Delete contact" => "Odstrániť kontakt", +"The temporary image has been removed from cache." => "Dočasný obrázok bol odstránený z cache.", "Edit address" => "Upraviť adresu", "Type" => "Typ", "PO Box" => "PO Box", +"Street address" => "Ulica", +"Street and number" => "Ulica a číslo", "Extended" => "Rozšírené", -"Street" => "Ulica", "City" => "Mesto", "Region" => "Región", "Zipcode" => "PSČ", +"Postal code" => "PSČ", "Country" => "Krajina", -"Edit categories" => "Upraviť kategórie", -"Add" => "Pridať", "Addressbook" => "Adresár", "Hon. prefixes" => "Tituly pred", "Miss" => "Slečna", @@ -126,6 +164,8 @@ "Hon. suffixes" => "Tituly za", "J.D." => "JUDr.", "M.D." => "MUDr.", +"D.O." => "D.O.", +"D.C." => "D.C.", "Ph.D." => "Ph.D.", "Esq." => "Esq.", "Jr." => "ml.", @@ -141,13 +181,11 @@ "Please choose the addressbook" => "Prosím zvolte adresár", "create a new addressbook" => "vytvoriť nový adresár", "Name of new addressbook" => "Meno nového adresára", -"Import" => "Importovať", "Importing contacts" => "Importovanie kontaktov", -"Select address book to import to:" => "Vyberte adresár, do ktorého chcete importovať:", -"Select from HD" => "Vyberte z pevného disku", "You have no contacts in your addressbook." => "Nemáte žiadne kontakty v adresári.", "Add contact" => "Pridať kontakt", "Configure addressbooks" => "Nastaviť adresáre", +"Enter name" => "Zadaj meno", "CardDAV syncing addresses" => "Adresy pre synchronizáciu s CardDAV", "more info" => "viac informácií", "Primary address (Kontact et al)" => "Predvolená adresa (Kontakt etc)", diff --git a/l10n/af/bookmarks.po b/l10n/af/bookmarks.po new file mode 100644 index 0000000000..f9c5316dd5 --- /dev/null +++ b/l10n/af/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/af/lib.po b/l10n/af/lib.po new file mode 100644 index 0000000000..a5cbac2624 --- /dev/null +++ b/l10n/af/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/ar/bookmarks.po b/l10n/ar/bookmarks.po new file mode 100644 index 0000000000..50d8ccbf67 --- /dev/null +++ b/l10n/ar/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po new file mode 100644 index 0000000000..36dea95d34 --- /dev/null +++ b/l10n/ar/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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: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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/ar_SA/bookmarks.po b/l10n/ar_SA/bookmarks.po new file mode 100644 index 0000000000..476c475f46 --- /dev/null +++ b/l10n/ar_SA/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_SA\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/ar_SA/lib.po b/l10n/ar_SA/lib.po new file mode 100644 index 0000000000..1d1cba42b7 --- /dev/null +++ b/l10n/ar_SA/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_SA\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/bg_BG/bookmarks.po b/l10n/bg_BG/bookmarks.po new file mode 100644 index 0000000000..7375ecb18e --- /dev/null +++ b/l10n/bg_BG/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+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" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po new file mode 100644 index 0000000000..04f21db7de --- /dev/null +++ b/l10n/bg_BG/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/ca/bookmarks.po b/l10n/ca/bookmarks.po new file mode 100644 index 0000000000..4dc33835a3 --- /dev/null +++ b/l10n/ca/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/ca/calendar.po b/l10n/ca/calendar.po index a8a5c77878..e5c6761343 100644 --- a/l10n/ca/calendar.po +++ b/l10n/ca/calendar.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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 10:41+0000\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 06:17+0000\n" "Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -769,7 +769,7 @@ msgstr "Memòria de cau" #: templates/settings.php:48 msgid "Clear cache for repeating events" -msgstr "Neteja la memòria de cau pels esdveniments amb repetició" +msgstr "Neteja la memòria de cau pels esdeveniments amb repetició" #: templates/settings.php:53 msgid "Calendar CalDAV syncing addresses" @@ -789,7 +789,7 @@ msgstr "IOS/OS X" #: templates/settings.php:59 msgid "Read only iCalendar link(s)" -msgstr "Enllaç(os) del calendari només de lectura" +msgstr "Enllaç(os) iCalendar només de lectura" #: templates/share.dropdown.php:20 msgid "Users" diff --git a/l10n/ca/contacts.po b/l10n/ca/contacts.po index 507042e9ce..5d7e0b0fc2 100644 --- a/l10n/ca/contacts.po +++ b/l10n/ca/contacts.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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 10:52+0000\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 06: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" @@ -870,4 +870,4 @@ msgstr "iOS/OS X" #: templates/settings.php:10 msgid "Read only vCard directory link(s)" -msgstr "Enllaç(os) només de lectura vCard" +msgstr "Enllaç(os) vCard només de lectura" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po new file mode 100644 index 0000000000..2d23400a99 --- /dev/null +++ b/l10n/ca/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 8629118121..43be7c44b6 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 00:02+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 06:08+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" @@ -37,7 +37,7 @@ msgstr "Sol.licitud no vàlida" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Error d'autenticació" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -205,7 +205,7 @@ msgstr "Altre" #: templates/users.php:80 msgid "SubAdmin" -msgstr "" +msgstr "SubAdmin" #: templates/users.php:82 msgid "Quota" @@ -213,7 +213,7 @@ msgstr "Quota" #: templates/users.php:112 msgid "SubAdmin for ..." -msgstr "" +msgstr "SubAdmin per a ..." #: templates/users.php:145 msgid "Delete" diff --git a/l10n/cs_CZ/bookmarks.po b/l10n/cs_CZ/bookmarks.po new file mode 100644 index 0000000000..74239f80fa --- /dev/null +++ b/l10n/cs_CZ/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po new file mode 100644 index 0000000000..2d67565ff5 --- /dev/null +++ b/l10n/cs_CZ/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/da/bookmarks.po b/l10n/da/bookmarks.po new file mode 100644 index 0000000000..7d336705b2 --- /dev/null +++ b/l10n/da/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/da/lib.po b/l10n/da/lib.po new file mode 100644 index 0000000000..8d65f903fe --- /dev/null +++ b/l10n/da/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/de/bookmarks.po b/l10n/de/bookmarks.po new file mode 100644 index 0000000000..a00546e020 --- /dev/null +++ b/l10n/de/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/de/lib.po b/l10n/de/lib.po new file mode 100644 index 0000000000..1230fa0545 --- /dev/null +++ b/l10n/de/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 9051386acc..85ded96f8c 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -8,14 +8,15 @@ # Jan-Christoph Borchardt , 2011. # Marcel Kühlhorn , 2012. # , 2012. +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 00:02+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 05:12+0000\n" +"Last-Translator: JamFX \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" @@ -41,7 +42,7 @@ msgstr "Ungültige Anfrage" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Anmeldungsfehler" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -209,7 +210,7 @@ msgstr "andere" #: templates/users.php:80 msgid "SubAdmin" -msgstr "" +msgstr "Unteradministrator" #: templates/users.php:82 msgid "Quota" @@ -217,7 +218,7 @@ msgstr "Quota" #: templates/users.php:112 msgid "SubAdmin for ..." -msgstr "" +msgstr "Unteradministrator für..." #: templates/users.php:145 msgid "Delete" diff --git a/l10n/el/bookmarks.po b/l10n/el/bookmarks.po new file mode 100644 index 0000000000..a5f983f2bf --- /dev/null +++ b/l10n/el/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/el/lib.po b/l10n/el/lib.po new file mode 100644 index 0000000000..9f817d1a46 --- /dev/null +++ b/l10n/el/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/eo/bookmarks.po b/l10n/eo/bookmarks.po new file mode 100644 index 0000000000..4df36ca031 --- /dev/null +++ b/l10n/eo/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po new file mode 100644 index 0000000000..c4d6f1228b --- /dev/null +++ b/l10n/eo/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/es/bookmarks.po b/l10n/es/bookmarks.po new file mode 100644 index 0000000000..7cd3e5bf34 --- /dev/null +++ b/l10n/es/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/es/lib.po b/l10n/es/lib.po new file mode 100644 index 0000000000..870f4ec141 --- /dev/null +++ b/l10n/es/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/et_EE/bookmarks.po b/l10n/et_EE/bookmarks.po new file mode 100644 index 0000000000..0370bec552 --- /dev/null +++ b/l10n/et_EE/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et_EE\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po new file mode 100644 index 0000000000..c170dc40f9 --- /dev/null +++ b/l10n/et_EE/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et_EE\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/eu/bookmarks.po b/l10n/eu/bookmarks.po new file mode 100644 index 0000000000..d443167a5b --- /dev/null +++ b/l10n/eu/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po new file mode 100644 index 0000000000..f8625e4759 --- /dev/null +++ b/l10n/eu/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/fa/bookmarks.po b/l10n/fa/bookmarks.po new file mode 100644 index 0000000000..1a79cdbe0a --- /dev/null +++ b/l10n/fa/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po new file mode 100644 index 0000000000..f0abd9d4d8 --- /dev/null +++ b/l10n/fa/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/fi_FI/bookmarks.po b/l10n/fi_FI/bookmarks.po new file mode 100644 index 0000000000..70bd07ab62 --- /dev/null +++ b/l10n/fi_FI/bookmarks.po @@ -0,0 +1,61 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jiri Grönroos , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:21+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" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi_FI\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "Kirjanmerkit" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "nimetön" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "Vedä tämä selaimesi kirjanmerkkipalkkiin ja napsauta sitä, kun haluat lisätä kirjanmerkin nopeasti:" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "Lue myöhemmin" + +#: templates/list.php:13 +msgid "Address" +msgstr "Osoite" + +#: templates/list.php:14 +msgid "Title" +msgstr "Otsikko" + +#: templates/list.php:15 +msgid "Tags" +msgstr "Tunnisteet" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "Tallenna kirjanmerkki" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "Sinulla ei ole kirjanmerkkejä" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "Kirjanmerkitsin
" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po new file mode 100644 index 0000000000..8191bf7710 --- /dev/null +++ b/l10n/fi_FI/lib.po @@ -0,0 +1,113 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jiri Grönroos , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:27+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" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi_FI\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: app.php:287 +msgid "Help" +msgstr "Ohje" + +#: app.php:294 +msgid "Personal" +msgstr "" + +#: app.php:299 +msgid "Settings" +msgstr "Asetukset" + +#: app.php:304 +msgid "Users" +msgstr "Käyttäjät" + +#: app.php:311 +msgid "Apps" +msgstr "Sovellukset" + +#: app.php:313 +msgid "Admin" +msgstr "" + +#: files.php:245 +msgid "ZIP download is turned off." +msgstr "ZIP-lataus on poistettu käytöstä." + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "Tiedostot on ladattava yksittäin." + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "Takaisin tiedostoihin" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "sekuntia sitten" + +#: template.php:87 +msgid "1 minute ago" +msgstr "1 minuutti sitten" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "%d minuuttia sitten" + +#: template.php:91 +msgid "today" +msgstr "tänään" + +#: template.php:92 +msgid "yesterday" +msgstr "eilen" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "%d päivää sitten" + +#: template.php:94 +msgid "last month" +msgstr "viime kuussa" + +#: template.php:95 +msgid "months ago" +msgstr "kuukautta sitten" + +#: template.php:96 +msgid "last year" +msgstr "viime vuonna" + +#: template.php:97 +msgid "years ago" +msgstr "vuotta sitten" diff --git a/l10n/fr/bookmarks.po b/l10n/fr/bookmarks.po new file mode 100644 index 0000000000..ba57cdc64f --- /dev/null +++ b/l10n/fr/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po new file mode 100644 index 0000000000..90c10f690e --- /dev/null +++ b/l10n/fr/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 5cfd59dbba..a519d0f7b9 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 00:02+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 10:05+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" @@ -42,7 +42,7 @@ msgstr "Requête invalide" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Erreur d'authentification" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -210,7 +210,7 @@ msgstr "Autre" #: templates/users.php:80 msgid "SubAdmin" -msgstr "" +msgstr "SubAdmin" #: templates/users.php:82 msgid "Quota" @@ -218,7 +218,7 @@ msgstr "Quota" #: templates/users.php:112 msgid "SubAdmin for ..." -msgstr "" +msgstr "SubAdmin pour ..." #: templates/users.php:145 msgid "Delete" diff --git a/l10n/gl/bookmarks.po b/l10n/gl/bookmarks.po new file mode 100644 index 0000000000..9086620a94 --- /dev/null +++ b/l10n/gl/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po new file mode 100644 index 0000000000..2e675b5678 --- /dev/null +++ b/l10n/gl/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/he/bookmarks.po b/l10n/he/bookmarks.po new file mode 100644 index 0000000000..14546978e0 --- /dev/null +++ b/l10n/he/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/he/lib.po b/l10n/he/lib.po new file mode 100644 index 0000000000..78686b991a --- /dev/null +++ b/l10n/he/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" + +#: 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/hr/bookmarks.po b/l10n/hr/bookmarks.po new file mode 100644 index 0000000000..b9e98477cf --- /dev/null +++ b/l10n/hr/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po new file mode 100644 index 0000000000..d38126e621 --- /dev/null +++ b/l10n/hr/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/hu_HU/bookmarks.po b/l10n/hu_HU/bookmarks.po new file mode 100644 index 0000000000..4fe0e566ab --- /dev/null +++ b/l10n/hu_HU/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po new file mode 100644 index 0000000000..cd149d946d --- /dev/null +++ b/l10n/hu_HU/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" + +#: 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/hy/bookmarks.po b/l10n/hy/bookmarks.po new file mode 100644 index 0000000000..74aef26301 --- /dev/null +++ b/l10n/hy/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po new file mode 100644 index 0000000000..1a8aea0ebb --- /dev/null +++ b/l10n/hy/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/ia/bookmarks.po b/l10n/ia/bookmarks.po new file mode 100644 index 0000000000..1848a204c0 --- /dev/null +++ b/l10n/ia/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po new file mode 100644 index 0000000000..4950811110 --- /dev/null +++ b/l10n/ia/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ia\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/id/bookmarks.po b/l10n/id/bookmarks.po new file mode 100644 index 0000000000..d9e1fba3ac --- /dev/null +++ b/l10n/id/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po new file mode 100644 index 0000000000..6c8b5a8c49 --- /dev/null +++ b/l10n/id/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/id_ID/bookmarks.po b/l10n/id_ID/bookmarks.po new file mode 100644 index 0000000000..f954c1e8a4 --- /dev/null +++ b/l10n/id_ID/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/id_ID/lib.po b/l10n/id_ID/lib.po new file mode 100644 index 0000000000..62fef73ca0 --- /dev/null +++ b/l10n/id_ID/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/it/bookmarks.po b/l10n/it/bookmarks.po new file mode 100644 index 0000000000..501cb1181c --- /dev/null +++ b/l10n/it/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/it/lib.po b/l10n/it/lib.po new file mode 100644 index 0000000000..f930daa0b6 --- /dev/null +++ b/l10n/it/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 47885e9b06..475f87fd92 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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 00:02+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 05: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" @@ -42,7 +42,7 @@ msgstr "Richiesta non valida" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Errore di autenticazione" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -210,7 +210,7 @@ msgstr "Altro" #: templates/users.php:80 msgid "SubAdmin" -msgstr "" +msgstr "SubAdmin" #: templates/users.php:82 msgid "Quota" @@ -218,7 +218,7 @@ msgstr "Quote" #: templates/users.php:112 msgid "SubAdmin for ..." -msgstr "" +msgstr "SubAdmin per..." #: templates/users.php:145 msgid "Delete" diff --git a/l10n/ja_JP/bookmarks.po b/l10n/ja_JP/bookmarks.po new file mode 100644 index 0000000000..a708697103 --- /dev/null +++ b/l10n/ja_JP/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po new file mode 100644 index 0000000000..30b5055623 --- /dev/null +++ b/l10n/ja_JP/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/ko/bookmarks.po b/l10n/ko/bookmarks.po new file mode 100644 index 0000000000..1992ba3b14 --- /dev/null +++ b/l10n/ko/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po new file mode 100644 index 0000000000..2308a069de --- /dev/null +++ b/l10n/ko/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/lb/bookmarks.po b/l10n/lb/bookmarks.po new file mode 100644 index 0000000000..024a705e24 --- /dev/null +++ b/l10n/lb/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po new file mode 100644 index 0000000000..bb55ec5a6f --- /dev/null +++ b/l10n/lb/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lb\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/lt_LT/bookmarks.po b/l10n/lt_LT/bookmarks.po new file mode 100644 index 0000000000..fbda0e4853 --- /dev/null +++ b/l10n/lt_LT/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po new file mode 100644 index 0000000000..11f020d545 --- /dev/null +++ b/l10n/lt_LT/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/lv/bookmarks.po b/l10n/lv/bookmarks.po new file mode 100644 index 0000000000..2114fcd31a --- /dev/null +++ b/l10n/lv/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po new file mode 100644 index 0000000000..40959dcc42 --- /dev/null +++ b/l10n/lv/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/mk/bookmarks.po b/l10n/mk/bookmarks.po new file mode 100644 index 0000000000..547a2c5da2 --- /dev/null +++ b/l10n/mk/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po new file mode 100644 index 0000000000..713abb126d --- /dev/null +++ b/l10n/mk/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/ms_MY/bookmarks.po b/l10n/ms_MY/bookmarks.po new file mode 100644 index 0000000000..06c58f9a86 --- /dev/null +++ b/l10n/ms_MY/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ms_MY\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po new file mode 100644 index 0000000000..cd3b8e2f80 --- /dev/null +++ b/l10n/ms_MY/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ms_MY\n" +"Plural-Forms: nplurals=1; plural=0\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/nb_NO/bookmarks.po b/l10n/nb_NO/bookmarks.po new file mode 100644 index 0000000000..65673a48ac --- /dev/null +++ b/l10n/nb_NO/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po new file mode 100644 index 0000000000..dada31bd02 --- /dev/null +++ b/l10n/nb_NO/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb_NO\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/nl/bookmarks.po b/l10n/nl/bookmarks.po new file mode 100644 index 0000000000..7aa6cc6bfc --- /dev/null +++ b/l10n/nl/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po new file mode 100644 index 0000000000..fbe8ced9f7 --- /dev/null +++ b/l10n/nl/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/nn_NO/bookmarks.po b/l10n/nn_NO/bookmarks.po new file mode 100644 index 0000000000..0eb3cfe7ed --- /dev/null +++ b/l10n/nn_NO/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po new file mode 100644 index 0000000000..17b3f9e58d --- /dev/null +++ b/l10n/nn_NO/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn_NO\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/pl/bookmarks.po b/l10n/pl/bookmarks.po new file mode 100644 index 0000000000..4eee797945 --- /dev/null +++ b/l10n/pl/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po new file mode 100644 index 0000000000..5b7d557a68 --- /dev/null +++ b/l10n/pl/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/pt_BR/bookmarks.po b/l10n/pt_BR/bookmarks.po new file mode 100644 index 0000000000..e574ace5f8 --- /dev/null +++ b/l10n/pt_BR/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po new file mode 100644 index 0000000000..d9a3c6dbc4 --- /dev/null +++ b/l10n/pt_BR/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/pt_PT/bookmarks.po b/l10n/pt_PT/bookmarks.po new file mode 100644 index 0000000000..b4ba2758a3 --- /dev/null +++ b/l10n/pt_PT/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po new file mode 100644 index 0000000000..70d233eab3 --- /dev/null +++ b/l10n/pt_PT/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/ro/bookmarks.po b/l10n/ro/bookmarks.po new file mode 100644 index 0000000000..e02fd456c9 --- /dev/null +++ b/l10n/ro/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po new file mode 100644 index 0000000000..b0fd2256d6 --- /dev/null +++ b/l10n/ro/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2: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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/ru/bookmarks.po b/l10n/ru/bookmarks.po new file mode 100644 index 0000000000..151205b731 --- /dev/null +++ b/l10n/ru/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po new file mode 100644 index 0000000000..97723dd617 --- /dev/null +++ b/l10n/ru/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/sk_SK/bookmarks.po b/l10n/sk_SK/bookmarks.po new file mode 100644 index 0000000000..1f1343ccd6 --- /dev/null +++ b/l10n/sk_SK/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/sk_SK/contacts.po b/l10n/sk_SK/contacts.po index 5f8e53bfa1..d7a7d820f8 100644 --- a/l10n/sk_SK/contacts.po +++ b/l10n/sk_SK/contacts.po @@ -5,105 +5,102 @@ # Translators: # , 2012. # Roman Priesol , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/language/sk_SK/)\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 21:49+0000\n" +"Last-Translator: zixo \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" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: ajax/activation.php:19 ajax/updateaddressbook.php:32 +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 msgid "Error (de)activating addressbook." msgstr "Chyba (de)aktivácie adresára." -#: ajax/addcontact.php:59 +#: ajax/addcontact.php:47 msgid "There was an error adding the contact." msgstr "Vyskytla sa chyba pri pridávaní kontaktu." -#: ajax/addproperty.php:40 +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "meno elementu nie je nastavené." + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "ID nie je nastavené." + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "" + +#: ajax/addproperty.php:56 msgid "Cannot add empty property." msgstr "Nemôžem pridať prázdny údaj." -#: ajax/addproperty.php:52 +#: ajax/addproperty.php:67 msgid "At least one of the address fields has to be filled out." msgstr "Musí byť uvedený aspoň jeden adresný údaj." -#: ajax/addproperty.php:62 +#: ajax/addproperty.php:76 msgid "Trying to add duplicate property: " msgstr "Pokúšate sa pridať rovnaký atribút:" -#: ajax/addproperty.php:120 -msgid "Error adding contact property." -msgstr "Chyba pridania údaju kontaktu" +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "" -#: ajax/categories/categoriesfor.php:15 +#: ajax/categories/categoriesfor.php:17 msgid "No ID provided" msgstr "ID nezadané" -#: ajax/categories/categoriesfor.php:27 +#: ajax/categories/categoriesfor.php:34 msgid "Error setting checksum." msgstr "Chyba pri nastavovaní kontrolného súčtu." -#: ajax/categories/delete.php:29 +#: ajax/categories/delete.php:19 msgid "No categories selected for deletion." msgstr "Žiadne kategórie neboli vybraté na odstránenie." -#: ajax/categories/delete.php:36 ajax/categories/rescan.php:28 +#: ajax/categories/delete.php:26 msgid "No address books found." msgstr "Žiadny adresár nenájdený." -#: ajax/categories/delete.php:44 ajax/categories/rescan.php:36 +#: ajax/categories/delete.php:34 msgid "No contacts found." msgstr "Žiadne kontakty nenájdené." -#: ajax/contactdetails.php:37 +#: ajax/contactdetails.php:31 msgid "Missing ID" msgstr "Chýba ID" -#: ajax/contactdetails.php:41 +#: ajax/contactdetails.php:36 msgid "Error parsing VCard for ID: \"" msgstr "Chyba pri vyňatí ID z VCard:" -#: ajax/createaddressbook.php:18 -msgid "Cannot add addressbook with an empty name." -msgstr "Nedá sa pridať adresár s prázdnym menom." - -#: ajax/createaddressbook.php:24 -msgid "Error adding addressbook." -msgstr "Chyba počas pridávania adresára." - -#: ajax/createaddressbook.php:30 -msgid "Error activating addressbook." -msgstr "Chyba aktivovania adresára." - -#: ajax/currentphoto.php:34 ajax/oc_photo.php:37 ajax/uploadphoto.php:41 +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 #: ajax/uploadphoto.php:68 msgid "No contact ID was submitted." msgstr "Nebolo nastavené ID kontaktu." -#: ajax/currentphoto.php:40 +#: ajax/currentphoto.php:36 msgid "Error reading contact photo." msgstr "Chyba pri čítaní fotky kontaktu." -#: ajax/currentphoto.php:52 +#: ajax/currentphoto.php:48 msgid "Error saving temporary file." msgstr "Chyba pri ukladaní dočasného súboru." -#: ajax/currentphoto.php:55 +#: ajax/currentphoto.php:51 msgid "The loading photo is not valid." msgstr "Načítaná fotka je vadná." -#: ajax/deletecard.php:37 ajax/saveproperty.php:58 -msgid "id is not set." -msgstr "ID nie je nastavené." - #: ajax/deleteproperty.php:36 msgid "Information about vCard is incorrect. Please reload the page." msgstr "Informácie o vCard sú neplatné. Prosím obnovte stránku." @@ -112,328 +109,387 @@ msgstr "Informácie o vCard sú neplatné. Prosím obnovte stránku." msgid "Error deleting contact property." msgstr "Chyba odstránenia údaju kontaktu." -#: ajax/editname.php:37 +#: ajax/editname.php:31 msgid "Contact ID is missing." msgstr "Chýba ID kontaktu." -#: ajax/loadphoto.php:44 -msgid "Missing contact id." -msgstr "Chýba ID kontaktu." - -#: ajax/oc_photo.php:41 +#: ajax/oc_photo.php:32 msgid "No photo path was submitted." msgstr "Žiadna fotka nebola poslaná." -#: ajax/oc_photo.php:48 +#: ajax/oc_photo.php:39 msgid "File doesn't exist:" msgstr "Súbor neexistuje:" -#: ajax/oc_photo.php:54 ajax/oc_photo.php:57 +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 msgid "Error loading image." msgstr "Chyba pri nahrávaní obrázka." -#: ajax/savecrop.php:68 +#: ajax/savecrop.php:67 msgid "Error getting contact object." -msgstr "" +msgstr "Chyba počas prevzatia objektu kontakt." -#: ajax/savecrop.php:75 +#: ajax/savecrop.php:76 msgid "Error getting PHOTO property." -msgstr "" +msgstr "Chyba počas získavania fotky." -#: ajax/savecrop.php:88 +#: ajax/savecrop.php:93 msgid "Error saving contact." -msgstr "" +msgstr "Chyba počas ukladania kontaktu." -#: ajax/savecrop.php:98 +#: ajax/savecrop.php:103 msgid "Error resizing image" -msgstr "" +msgstr "Chyba počas zmeny obrázku." -#: ajax/savecrop.php:101 +#: ajax/savecrop.php:106 msgid "Error cropping image" -msgstr "" +msgstr "Chyba počas orezania obrázku." -#: ajax/savecrop.php:104 +#: ajax/savecrop.php:109 msgid "Error creating temporary image" -msgstr "" +msgstr "Chyba počas vytvárania dočasného obrázku." -#: ajax/savecrop.php:107 +#: ajax/savecrop.php:112 msgid "Error finding image: " -msgstr "" +msgstr "Chyba vyhľadania obrázku: " -#: ajax/saveproperty.php:55 -msgid "element name is not set." -msgstr "meno elementu nie je nastavené." - -#: ajax/saveproperty.php:61 +#: ajax/saveproperty.php:40 msgid "checksum is not set." msgstr "kontrolný súčet nie je nastavený." -#: ajax/saveproperty.php:78 +#: ajax/saveproperty.php:59 msgid "Information about vCard is incorrect. Please reload the page: " msgstr "Informácia o vCard je nesprávna. Obnovte stránku, prosím." -#: ajax/saveproperty.php:83 +#: ajax/saveproperty.php:64 msgid "Something went FUBAR. " msgstr "Niečo sa pokazilo." -#: ajax/saveproperty.php:150 +#: ajax/saveproperty.php:133 msgid "Error updating contact property." msgstr "Chyba aktualizovania údaju kontaktu." -#: ajax/updateaddressbook.php:20 +#: ajax/updateaddressbook.php:21 msgid "Cannot update addressbook with an empty name." msgstr "Nedá sa upraviť adresár s prázdnym menom." -#: ajax/updateaddressbook.php:26 +#: ajax/updateaddressbook.php:25 msgid "Error updating addressbook." msgstr "Chyba aktualizácie adresára." -#: ajax/uploadimport.php:46 ajax/uploadimport.php:76 +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 msgid "Error uploading contacts to storage." msgstr "Chyba pri ukladaní kontaktov na úložisko." -#: ajax/uploadimport.php:59 ajax/uploadphoto.php:77 +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 msgid "There is no error, the file uploaded with success" msgstr "Nevyskytla sa žiadna chyba, súbor úspešne uložené." -#: ajax/uploadimport.php:60 ajax/uploadphoto.php:78 +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Ukladaný súbor prekračuje nastavenie upload_max_filesize v php.ini" -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:79 +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára." -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:80 +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 msgid "The uploaded file was only partially uploaded" msgstr "Ukladaný súbor sa nahral len čiastočne" -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:81 +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 msgid "No file was uploaded" msgstr "Žiadny súbor nebol uložený" -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:82 +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 msgid "Missing a temporary folder" msgstr "Chýba dočasný priečinok" -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:102 +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 msgid "Couldn't save temporary image: " -msgstr "" +msgstr "Nemôžem uložiť dočasný obrázok: " -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:105 +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 msgid "Couldn't load temporary image: " -msgstr "" +msgstr "Nemôžem načítať dočasný obrázok: " #: ajax/uploadphoto.php:71 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" -#: appinfo/app.php:17 templates/settings.php:3 +#: appinfo/app.php:19 templates/settings.php:3 msgid "Contacts" msgstr "Kontakty" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Sorry, this functionality has not been implemented yet" -msgstr "" +msgstr "Bohužiaľ, táto funkcia ešte nebola implementovaná" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Not implemented" -msgstr "" +msgstr "Neimplementované" -#: js/contacts.js:29 +#: js/contacts.js:58 msgid "Couldn't get a valid address." -msgstr "" +msgstr "Nemôžem získať platnú adresu." -#: js/contacts.js:29 js/contacts.js:334 js/contacts.js:341 js/contacts.js:355 -#: js/contacts.js:393 js/contacts.js:399 js/contacts.js:565 js/contacts.js:605 -#: js/contacts.js:631 js/contacts.js:668 js/contacts.js:747 js/contacts.js:753 -#: js/contacts.js:765 js/contacts.js:799 js/contacts.js:1056 -#: js/contacts.js:1064 js/contacts.js:1073 js/contacts.js:1130 -#: js/contacts.js:1146 js/contacts.js:1161 js/contacts.js:1173 -#: js/contacts.js:1196 js/contacts.js:1449 js/contacts.js:1457 -#: js/contacts.js:1483 js/contacts.js:1494 js/contacts.js:1509 -#: js/contacts.js:1526 js/contacts.js:1596 js/contacts.js:1644 -#: js/contacts.js:1654 js/contacts.js:1657 +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 msgid "Error" -msgstr "" +msgstr "Chyba" -#: js/contacts.js:364 -msgid "Are you sure you want to delete this contact?" -msgstr "" - -#: js/contacts.js:364 -msgid "Warning" -msgstr "" - -#: js/contacts.js:605 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:631 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:747 js/contacts.js:765 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:781 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1056 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1064 js/contacts.js:1449 js/contacts.js:1634 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1119 -msgid "Select photo" -msgstr "" - -#: js/contacts.js:1257 js/contacts.js:1290 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1305 templates/part.importaddressbook.php:25 -msgid "Drop a VCF file to import contacts." -msgstr "Pretiahnite VCF súbor pre import kontaktov." - -#: js/contacts.js:1475 -msgid "Import done. Success/Failure: " -msgstr "" - -#: js/contacts.js:1476 -msgid "OK" -msgstr "" - -#: js/contacts.js:1494 -msgid "Displayname cannot be empty." -msgstr "" - -#: js/contacts.js:1634 -msgid "Upload too large" -msgstr "" - -#: js/contacts.js:1638 -msgid "Only image files can be used as profile picture." -msgstr "" - -#: js/contacts.js:1638 -msgid "Wrong file type" -msgstr "" - -#: js/contacts.js:1644 -msgid "" -"Your browser doesn't support AJAX upload. Please click on the profile " -"picture to select a photo to upload." -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: lib/app.php:30 -msgid "Addressbook not found." -msgstr "Adresár sa nenašiel." - -#: lib/app.php:34 -msgid "This is not your addressbook." -msgstr "Toto nie je váš adresár." - -#: lib/app.php:45 -msgid "Contact could not be found." -msgstr "Kontakt nebol nájdený." - -#: lib/app.php:101 templates/part.contact.php:109 -msgid "Address" -msgstr "Adresa" - -#: lib/app.php:102 -msgid "Telephone" -msgstr "Telefón" - -#: lib/app.php:103 templates/part.contact.php:108 -msgid "Email" -msgstr "E-mail" - -#: lib/app.php:104 templates/part.contact.php:33 templates/part.contact.php:34 -#: templates/part.contact.php:104 -msgid "Organization" -msgstr "Organizácia" - -#: lib/app.php:116 lib/app.php:123 lib/app.php:133 -msgid "Work" -msgstr "Práca" - -#: lib/app.php:117 lib/app.php:121 lib/app.php:134 -msgid "Home" -msgstr "Domov" - -#: lib/app.php:122 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:124 -msgid "Text" -msgstr "SMS" - -#: lib/app.php:125 -msgid "Voice" -msgstr "Odkazová schránka" - -#: lib/app.php:126 -msgid "Message" -msgstr "Správa" - -#: lib/app.php:127 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:128 -msgid "Video" -msgstr "Video" - -#: lib/app.php:129 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:135 -msgid "Internet" -msgstr "Internet" - -#: lib/hooks.php:79 -msgid "{name}'s Birthday" -msgstr "Narodeniny {name}" - -#: lib/search.php:22 +#: js/contacts.js:389 lib/search.php:15 msgid "Contact" msgstr "Kontakt" -#: templates/index.php:13 +#: js/contacts.js:389 +msgid "New" +msgstr "Nový" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "Nový kontakt" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "Tento parameter nemôže byť prázdny." + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "Nemôžem previesť prvky." + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "'deleteProperty' zavolané bez argument. Prosím oznámte chybu na bugs.owncloud.org" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "Upraviť meno" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "Žiadne súbory neboli vybrané k nahratiu" + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "Súbor, ktorý sa pokúšate nahrať, presahuje maximálnu povolenú veľkosť." + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "Vybrať typ" + +#: js/loader.js:49 +msgid "Result: " +msgstr "Výsledok: " + +#: js/loader.js:49 +msgid " imported, " +msgstr " importovaných, " + +#: js/loader.js:49 +msgid " failed." +msgstr " zlyhaných." + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "Adresár sa nenašiel." + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "Toto nie je váš adresár." + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "Kontakt nebol nájdený." + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "Adresa" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "Telefón" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "E-mail" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "Organizácia" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "Práca" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "Domov" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "Mobil" + +#: lib/app.php:123 +msgid "Text" +msgstr "SMS" + +#: lib/app.php:124 +msgid "Voice" +msgstr "Odkazová schránka" + +#: lib/app.php:125 +msgid "Message" +msgstr "Správa" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Pager" + +#: lib/app.php:134 +msgid "Internet" +msgstr "Internet" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "Narodeniny" + +#: lib/app.php:170 +msgid "Business" +msgstr "Biznis" + +#: lib/app.php:171 +msgid "Call" +msgstr "" + +#: lib/app.php:172 +msgid "Clients" +msgstr "Klienti" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "Prázdniny" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "" + +#: lib/app.php:176 +msgid "Journey" +msgstr "" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "Stretnutie" + +#: lib/app.php:179 +msgid "Other" +msgstr "Iné" + +#: lib/app.php:180 +msgid "Personal" +msgstr "" + +#: lib/app.php:181 +msgid "Projects" +msgstr "Projekty" + +#: lib/app.php:182 +msgid "Questions" +msgstr "Otázky" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "Narodeniny {name}" + +#: templates/index.php:15 msgid "Add Contact" msgstr "Pridať Kontakt." -#: templates/index.php:14 +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "Importovať" + +#: templates/index.php:20 msgid "Addressbooks" msgstr "Adresáre" +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "Zatvoriť" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "Klávesové skratky" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "Navigácia" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "Ďalší kontakt v zozname" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "Predchádzajúci kontakt v zozname" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "Ďalší/predošlí adresár" + +#: templates/index.php:54 +msgid "Actions" +msgstr "Akcie" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "Obnov zoznam kontaktov" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "Pridaj nový kontakt" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "Pridaj nový adresár" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "Vymaž súčasný kontakt" + #: templates/part.chooseaddressbook.php:1 msgid "Configure Address Books" msgstr "Nastaviť adresáre" @@ -442,11 +498,7 @@ msgstr "Nastaviť adresáre" msgid "New Address Book" msgstr "Nový adresár" -#: templates/part.chooseaddressbook.php:17 -msgid "Import from VCF" -msgstr "Importovať z VCF" - -#: templates/part.chooseaddressbook.php:22 +#: templates/part.chooseaddressbook.php:21 #: templates/part.chooseaddressbook.rowfields.php:8 msgid "CardDav Link" msgstr "CardDav odkaz" @@ -460,186 +512,195 @@ msgid "Edit" msgstr "Upraviť" #: templates/part.chooseaddressbook.rowfields.php:17 -#: templates/part.contact.php:34 templates/part.contact.php:36 -#: templates/part.contact.php:38 templates/part.contact.php:42 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 msgid "Delete" msgstr "Odstrániť" -#: templates/part.contact.php:12 -msgid "Download contact" -msgstr "Stiahnuť kontakt" - -#: templates/part.contact.php:13 -msgid "Delete contact" -msgstr "Odstrániť kontakt" - -#: templates/part.contact.php:19 +#: templates/part.contact.php:16 msgid "Drop photo to upload" msgstr "Pretiahnite sem fotku pre nahratie" -#: templates/part.contact.php:29 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formát vlastný, krátke meno, celé meno, obrátené alebo obrátené s čiarkami" - -#: templates/part.contact.php:30 -msgid "Edit name details" -msgstr "Upraviť podrobnosti mena" - -#: templates/part.contact.php:35 templates/part.contact.php:105 -msgid "Nickname" -msgstr "Prezývka" - -#: templates/part.contact.php:36 -msgid "Enter nickname" -msgstr "Zadajte prezývku" - -#: templates/part.contact.php:37 templates/part.contact.php:106 -msgid "Birthday" -msgstr "Narodeniny" - -#: templates/part.contact.php:38 -msgid "dd-mm-yyyy" -msgstr "dd. mm. yyyy" - -#: templates/part.contact.php:39 templates/part.contact.php:111 -msgid "Groups" -msgstr "Skupiny" - -#: templates/part.contact.php:41 -msgid "Separate groups with commas" -msgstr "Oddelte skupiny čiarkami" - -#: templates/part.contact.php:42 -msgid "Edit groups" -msgstr "Úprava skupín" - -#: templates/part.contact.php:55 templates/part.contact.php:69 -msgid "Preferred" -msgstr "Uprednostňované" - -#: templates/part.contact.php:56 -msgid "Please specify a valid email address." -msgstr "Prosím zadajte platnú e-mailovú adresu." - -#: templates/part.contact.php:56 -msgid "Enter email address" -msgstr "Zadajte e-mailové adresy" - -#: templates/part.contact.php:60 -msgid "Mail to address" -msgstr "Odoslať na adresu" - -#: templates/part.contact.php:61 -msgid "Delete email address" -msgstr "Odstrániť e-mailové adresy" - -#: templates/part.contact.php:70 -msgid "Enter phone number" -msgstr "Zadajte telefónne číslo" - -#: templates/part.contact.php:74 -msgid "Delete phone number" -msgstr "Odstrániť telefónne číslo" - -#: templates/part.contact.php:84 -msgid "View on map" -msgstr "Zobraziť na mape" - -#: templates/part.contact.php:84 -msgid "Edit address details" -msgstr "Upraviť podrobnosti adresy" - -#: templates/part.contact.php:95 -msgid "Add notes here." -msgstr "Tu môžete pridať poznámky." - -#: templates/part.contact.php:101 -msgid "Add field" -msgstr "Pridať pole" - -#: templates/part.contact.php:103 -msgid "Profile picture" -msgstr "Profilová fotka" - -#: templates/part.contact.php:107 -msgid "Phone" -msgstr "Telefón" - -#: templates/part.contact.php:110 -msgid "Note" -msgstr "Poznámka" - -#: templates/part.contactphoto.php:8 +#: templates/part.contact.php:18 msgid "Delete current photo" msgstr "Odstrániť súčasnú fotku" -#: templates/part.contactphoto.php:9 +#: templates/part.contact.php:19 msgid "Edit current photo" msgstr "Upraviť súčasnú fotku" -#: templates/part.contactphoto.php:10 +#: templates/part.contact.php:20 msgid "Upload new photo" msgstr "Nahrať novú fotku" -#: templates/part.contactphoto.php:11 +#: templates/part.contact.php:21 msgid "Select photo from ownCloud" msgstr "Vybrať fotku z ownCloud" -#: templates/part.cropphoto.php:64 -msgid "The temporary image has been removed from cache." +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr "Formát vlastný, krátke meno, celé meno, obrátené alebo obrátené s čiarkami" + +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "Upraviť podrobnosti mena" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "Prezývka" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "Zadajte prezývku" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" msgstr "" -#: templates/part.edit_address_dialog.php:9 +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "dd. mm. yyyy" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "Skupiny" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "Oddelte skupiny čiarkami" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "Úprava skupín" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "Uprednostňované" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "Prosím zadajte platnú e-mailovú adresu." + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "Zadajte e-mailové adresy" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "Odoslať na adresu" + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "Odstrániť e-mailové adresy" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "Zadajte telefónne číslo" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "Odstrániť telefónne číslo" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "Zobraziť na mape" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "Upraviť podrobnosti adresy" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "Tu môžete pridať poznámky." + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "Pridať pole" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "Telefón" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "Poznámka" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "Stiahnuť kontakt" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "Odstrániť kontakt" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "Dočasný obrázok bol odstránený z cache." + +#: templates/part.edit_address_dialog.php:6 msgid "Edit address" msgstr "Upraviť adresu" -#: templates/part.edit_address_dialog.php:14 +#: templates/part.edit_address_dialog.php:10 msgid "Type" msgstr "Typ" -#: templates/part.edit_address_dialog.php:22 -#: templates/part.edit_address_dialog.php:25 +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 msgid "PO Box" msgstr "PO Box" -#: templates/part.edit_address_dialog.php:29 -#: templates/part.edit_address_dialog.php:32 +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "Ulica" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "Ulica a číslo" + +#: templates/part.edit_address_dialog.php:30 msgid "Extended" msgstr "Rozšírené" -#: templates/part.edit_address_dialog.php:35 -#: templates/part.edit_address_dialog.php:38 -msgid "Street" -msgstr "Ulica" +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "" -#: templates/part.edit_address_dialog.php:41 -#: templates/part.edit_address_dialog.php:44 +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 msgid "City" msgstr "Mesto" -#: templates/part.edit_address_dialog.php:47 -#: templates/part.edit_address_dialog.php:50 +#: templates/part.edit_address_dialog.php:42 msgid "Region" msgstr "Región" -#: templates/part.edit_address_dialog.php:53 -#: templates/part.edit_address_dialog.php:56 +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "" + +#: templates/part.edit_address_dialog.php:48 msgid "Zipcode" msgstr "PSČ" -#: templates/part.edit_address_dialog.php:59 -#: templates/part.edit_address_dialog.php:62 +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "PSČ" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 msgid "Country" msgstr "Krajina" -#: templates/part.edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Upraviť kategórie" - -#: templates/part.edit_categories_dialog.php:14 -msgid "Add" -msgstr "Pridať" - #: templates/part.edit_name_dialog.php:16 msgid "Addressbook" msgstr "Adresár" @@ -698,11 +759,11 @@ msgstr "MUDr." #: templates/part.edit_name_dialog.php:47 msgid "D.O." -msgstr "" +msgstr "D.O." #: templates/part.edit_name_dialog.php:48 msgid "D.C." -msgstr "" +msgstr "D.C." #: templates/part.edit_name_dialog.php:49 msgid "Ph.D." @@ -745,7 +806,6 @@ msgid "Submit" msgstr "Odoslať" #: templates/part.editaddressbook.php:30 -#: templates/part.importaddressbook.php:34 msgid "Cancel" msgstr "Zrušiť" @@ -765,33 +825,10 @@ msgstr "vytvoriť nový adresár" msgid "Name of new addressbook" msgstr "Meno nového adresára" -#: templates/part.import.php:17 -msgid "Import" -msgstr "Importovať" - #: templates/part.import.php:20 msgid "Importing contacts" msgstr "Importovanie kontaktov" -#: templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/part.importaddressbook.php:12 -msgid "" -"Currently this import function doesn't work while encryption is enabled.
Please upload your VCF file with the file manager and click on it to " -"import." -msgstr "" - -#: templates/part.importaddressbook.php:16 -msgid "Select address book to import to:" -msgstr "Vyberte adresár, do ktorého chcete importovať:" - -#: templates/part.importaddressbook.php:26 -msgid "Select from HD" -msgstr "Vyberte z pevného disku" - #: templates/part.no_contacts.php:2 msgid "You have no contacts in your addressbook." msgstr "Nemáte žiadne kontakty v adresári." @@ -804,6 +841,18 @@ msgstr "Pridať kontakt" msgid "Configure addressbooks" msgstr "Nastaviť adresáre" +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "Zadaj meno" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "" + #: templates/settings.php:4 msgid "CardDAV syncing addresses" msgstr "Adresy pre synchronizáciu s CardDAV" @@ -819,3 +868,7 @@ msgstr "Predvolená adresa (Kontakt etc)" #: templates/settings.php:8 msgid "iOS/OS X" msgstr "iOS/OS X" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po new file mode 100644 index 0000000000..1e1e954af8 --- /dev/null +++ b/l10n/sk_SK/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/sl/bookmarks.po b/l10n/sl/bookmarks.po new file mode 100644 index 0000000000..addf9cb165 --- /dev/null +++ b/l10n/sl/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po new file mode 100644 index 0000000000..1b75d8d051 --- /dev/null +++ b/l10n/sl/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/so/bookmarks.po b/l10n/so/bookmarks.po new file mode 100644 index 0000000000..63be2e2801 --- /dev/null +++ b/l10n/so/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/so/lib.po b/l10n/so/lib.po new file mode 100644 index 0000000000..a9d32f6949 --- /dev/null +++ b/l10n/so/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: so\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/sr/bookmarks.po b/l10n/sr/bookmarks.po new file mode 100644 index 0000000000..c0abe8d98b --- /dev/null +++ b/l10n/sr/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po new file mode 100644 index 0000000000..2ee133933b --- /dev/null +++ b/l10n/sr/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/sr@latin/bookmarks.po b/l10n/sr@latin/bookmarks.po new file mode 100644 index 0000000000..e78fc1875c --- /dev/null +++ b/l10n/sr@latin/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po new file mode 100644 index 0000000000..7b9a1d577a --- /dev/null +++ b/l10n/sr@latin/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/sv/bookmarks.po b/l10n/sv/bookmarks.po new file mode 100644 index 0000000000..f08502dd14 --- /dev/null +++ b/l10n/sv/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po new file mode 100644 index 0000000000..7078e2cdb0 --- /dev/null +++ b/l10n/sv/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/templates/bookmarks.pot b/l10n/templates/bookmarks.pot index ad981106b9..3ec283b080 100644 --- a/l10n/templates/bookmarks.pot +++ b/l10n/templates/bookmarks.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-27 02:01+0200\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/calendar.pot b/l10n/templates/calendar.pot index afbeda74eb..cfdab722b6 100644 --- a/l10n/templates/calendar.pot +++ b/l10n/templates/calendar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/contacts.pot b/l10n/templates/contacts.pot index f398764150..4ff7729e08 100644 --- a/l10n/templates/contacts.pot +++ b/l10n/templates/contacts.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 6e2f9257a8..3581e9fd9b 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-07-27 02:02+0200\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" "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 d73c91f0eb..43182f333d 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-07-27 02:02+0200\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/gallery.pot b/l10n/templates/gallery.pot index 744a280635..4acfa253ec 100644 --- a/l10n/templates/gallery.pot +++ b/l10n/templates/gallery.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" "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 847ecdf872..2dabe2fa37 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-07-27 02:02+0200\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/media.pot b/l10n/templates/media.pot index 33d07d122c..001bda203f 100644 --- a/l10n/templates/media.pot +++ b/l10n/templates/media.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-27 02:02+0200\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\n" "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 2f77cd01e5..053de66e30 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-07-27 02:02+0200\n" +"POT-Creation-Date: 2012-07-28 02:02+0200\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/bookmarks.po b/l10n/th_TH/bookmarks.po new file mode 100644 index 0000000000..e5a515c7dc --- /dev/null +++ b/l10n/th_TH/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po new file mode 100644 index 0000000000..2a9f5b46d5 --- /dev/null +++ b/l10n/th_TH/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/tr/bookmarks.po b/l10n/tr/bookmarks.po new file mode 100644 index 0000000000..34e76f301d --- /dev/null +++ b/l10n/tr/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po new file mode 100644 index 0000000000..a1b4a5a664 --- /dev/null +++ b/l10n/tr/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" + +#: 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/uk/bookmarks.po b/l10n/uk/bookmarks.po new file mode 100644 index 0000000000..2183661f9f --- /dev/null +++ b/l10n/uk/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po new file mode 100644 index 0000000000..fd95f1c130 --- /dev/null +++ b/l10n/uk/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: 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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/vi/bookmarks.po b/l10n/vi/bookmarks.po new file mode 100644 index 0000000000..38181e5d1f --- /dev/null +++ b/l10n/vi/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po new file mode 100644 index 0000000000..40d92269ac --- /dev/null +++ b/l10n/vi/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/zh_CN/bookmarks.po b/l10n/zh_CN/bookmarks.po new file mode 100644 index 0000000000..1164856a06 --- /dev/null +++ b/l10n/zh_CN/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po new file mode 100644 index 0000000000..35460873c8 --- /dev/null +++ b/l10n/zh_CN/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/zh_TW/bookmarks.po b/l10n/zh_TW/bookmarks.po new file mode 100644 index 0000000000..5735653faa --- /dev/null +++ b/l10n/zh_TW/bookmarks.po @@ -0,0 +1,60 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:17+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:14 +msgid "Bookmarks" +msgstr "" + +#: bookmarksHelper.php:99 +msgid "unnamed" +msgstr "" + +#: templates/bookmarklet.php:5 +msgid "" +"Drag this to your browser bookmarks and click it, when you want to bookmark " +"a webpage quickly:" +msgstr "" + +#: templates/bookmarklet.php:7 +msgid "Read later" +msgstr "" + +#: templates/list.php:13 +msgid "Address" +msgstr "" + +#: templates/list.php:14 +msgid "Title" +msgstr "" + +#: templates/list.php:15 +msgid "Tags" +msgstr "" + +#: templates/list.php:16 +msgid "Save bookmark" +msgstr "" + +#: templates/list.php:22 +msgid "You have no bookmarks" +msgstr "" + +#: templates/settings.php:11 +msgid "Bookmarklet
" +msgstr "" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po new file mode 100644 index 0000000000..43e6429a60 --- /dev/null +++ b/l10n/zh_TW/lib.po @@ -0,0 +1,112 @@ +# 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: 2012-07-28 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0\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:245 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:246 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:246 files.php:271 +msgid "Back to Files" +msgstr "" + +#: files.php:270 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php new file mode 100644 index 0000000000..032818da51 --- /dev/null +++ b/lib/l10n/fi_FI.php @@ -0,0 +1,20 @@ + "Ohje", +"Settings" => "Asetukset", +"Users" => "Käyttäjät", +"Apps" => "Sovellukset", +"ZIP download is turned off." => "ZIP-lataus on poistettu käytöstä.", +"Files need to be downloaded one by one." => "Tiedostot on ladattava yksittäin.", +"Back to Files" => "Takaisin tiedostoihin", +"Selected files too large to generate zip file." => "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon.", +"seconds ago" => "sekuntia sitten", +"1 minute ago" => "1 minuutti sitten", +"%d minutes ago" => "%d minuuttia sitten", +"today" => "tänään", +"yesterday" => "eilen", +"%d days ago" => "%d päivää sitten", +"last month" => "viime kuussa", +"months ago" => "kuukautta sitten", +"last year" => "viime vuonna", +"years ago" => "vuotta sitten" +); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 00da37ee1a..dae698dbde 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -3,6 +3,7 @@ "Invalid email" => "El correu electrònic no és vàlid", "OpenID Changed" => "OpenID ha canviat", "Invalid request" => "Sol.licitud no vàlida", +"Authentication error" => "Error d'autenticació", "Language changed" => "S'ha canviat l'idioma", "Disable" => "Desactiva", "Enable" => "Activa", @@ -44,6 +45,8 @@ "Create" => "Crea", "Default Quota" => "Quota per defecte", "Other" => "Altre", +"SubAdmin" => "SubAdmin", "Quota" => "Quota", +"SubAdmin for ..." => "SubAdmin per a ...", "Delete" => "Suprimeix" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index b4486e0aef..cab1982ec6 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -3,6 +3,7 @@ "Invalid email" => "Ungültige E-Mail", "OpenID Changed" => "OpenID geändert", "Invalid request" => "Ungültige Anfrage", +"Authentication error" => "Anmeldungsfehler", "Language changed" => "Sprache geändert", "Disable" => "Deaktivieren", "Enable" => "Aktivieren", @@ -44,6 +45,8 @@ "Create" => "Anlegen", "Default Quota" => "Standard Quota", "Other" => "andere", +"SubAdmin" => "Unteradministrator", "Quota" => "Quota", +"SubAdmin for ..." => "Unteradministrator für...", "Delete" => "Löschen" ); diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 83a2ca7b38..c22ca72396 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -3,6 +3,7 @@ "Invalid email" => "E-mail invalide", "OpenID Changed" => "Identifiant OpenID changé", "Invalid request" => "Requête invalide", +"Authentication error" => "Erreur d'authentification", "Language changed" => "Langue changée", "Disable" => "Désactivé", "Enable" => "Activé", @@ -44,6 +45,8 @@ "Create" => "Créer", "Default Quota" => "Quota par défaut", "Other" => "Autre", +"SubAdmin" => "SubAdmin", "Quota" => "Quota", +"SubAdmin for ..." => "SubAdmin pour ...", "Delete" => "Supprimer" ); diff --git a/settings/l10n/it.php b/settings/l10n/it.php index ca138cf8c1..1ef27ce331 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -3,6 +3,7 @@ "Invalid email" => "Email non valida", "OpenID Changed" => "OpenID modificato", "Invalid request" => "Richiesta non valida", +"Authentication error" => "Errore di autenticazione", "Language changed" => "Lingua modificata", "Disable" => "Disabilita", "Enable" => "Abilita", @@ -44,6 +45,8 @@ "Create" => "Crea", "Default Quota" => "Quota predefinita", "Other" => "Altro", +"SubAdmin" => "SubAdmin", "Quota" => "Quote", +"SubAdmin for ..." => "SubAdmin per...", "Delete" => "Elimina" ); From e02d8d7f7e3c1958e28ddaf9b388fc062ff35a8c Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 27 Jul 2012 21:28:25 -0400 Subject: [PATCH 55/68] Remove delete tipsy if file is deleted, fixes bug oc-958 --- apps/files/js/fileactions.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 4dc05088ee..b6f4d0b089 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -160,6 +160,7 @@ FileActions.register('all','Delete',function(){return OC.imagePath('core','actio }else{ FileList.do_delete(filename); } + $('.tipsy').remove(); }); FileActions.register('all','Rename',function(){return OC.imagePath('core','actions/rename')},function(filename){ From 7ff04be091ce7c75a749feba1ab184869c915e63 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 28 Jul 2012 11:06:36 -0400 Subject: [PATCH 56/68] Correction for 'Fix group detection for sharing in case username contains '@', fix for oc-1270' --- apps/files_sharing/lib_share.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/lib_share.php b/apps/files_sharing/lib_share.php index 3bedd9bebc..1c061cde07 100644 --- a/apps/files_sharing/lib_share.php +++ b/apps/files_sharing/lib_share.php @@ -179,10 +179,13 @@ class OC_Share { $uid_shared_with = OC_Group::usersInGroup($uid_shared_with); // Remove the owner from the list of users in the group $uid_shared_with = array_diff($uid_shared_with, array(OCP\USER::getUser())); - } else if ($uid = strrchr($uid_shared_with, '@', true)) { - $uid_shared_with = array($uid); } else { - $uid_shared_with = array($uid_shared_with); + $pos = strrpos($uid_shared_with, '@'); + if ($pos !== false && OC_Group::groupExists(substr($uid_shared_with, $pos + 1))) { + $uid_shared_with = array(substr($uid_shared_with, 0, $pos)); + } else { + $uid_shared_with = array($uid_shared_with); + } } foreach ($uid_shared_with as $uid) { $sharedFolder = $uid.'/files/Shared'; From 18f6552a086a94fd0dda5e7a47755c4560b15755 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 29 Jul 2012 02:06:29 +0200 Subject: [PATCH 57/68] [tx-robot] updated from transifex --- apps/bookmarks/l10n/ca.php | 12 +++++++ apps/bookmarks/l10n/de.php | 12 +++++++ apps/bookmarks/l10n/el.php | 12 +++++++ apps/bookmarks/l10n/sl.php | 12 +++++++ apps/calendar/l10n/el.php | 5 +++ apps/calendar/l10n/fi_FI.php | 2 ++ apps/contacts/l10n/el.php | 1 + apps/files/l10n/sl.php | 14 +++++++- apps/gallery/l10n/sl.php | 8 ++--- l10n/ca/bookmarks.po | 27 +++++++------- l10n/ca/lib.po | 53 ++++++++++++++-------------- l10n/de/bookmarks.po | 28 ++++++++------- l10n/de/lib.po | 17 ++++----- l10n/de/settings.po | 15 ++++---- l10n/el/bookmarks.po | 28 ++++++++------- l10n/el/calendar.po | 17 ++++----- l10n/el/contacts.po | 8 ++--- l10n/el/lib.po | 53 ++++++++++++++-------------- l10n/el/settings.po | 12 +++---- l10n/fi_FI/calendar.po | 8 ++--- l10n/fi_FI/lib.po | 8 ++--- l10n/fi_FI/settings.po | 8 ++--- l10n/sl/bookmarks.po | 27 +++++++------- l10n/sl/files.po | 68 +++++++++++++++++++----------------- l10n/sl/gallery.po | 64 ++++++++------------------------- l10n/sl/lib.po | 47 +++++++++++++------------ l10n/sl/settings.po | 14 ++++---- l10n/templates/bookmarks.pot | 2 +- l10n/templates/calendar.pot | 2 +- l10n/templates/contacts.pot | 2 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/gallery.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/media.pot | 2 +- l10n/templates/settings.pot | 2 +- lib/l10n/ca.php | 25 +++++++++++++ lib/l10n/de.php | 7 ++++ lib/l10n/el.php | 25 +++++++++++++ lib/l10n/fi_FI.php | 2 ++ lib/l10n/sl.php | 22 ++++++++++++ settings/l10n/de.php | 8 ++--- settings/l10n/el.php | 3 ++ settings/l10n/fi_FI.php | 1 + settings/l10n/sl.php | 4 +++ 45 files changed, 416 insertions(+), 279 deletions(-) create mode 100644 apps/bookmarks/l10n/ca.php create mode 100644 apps/bookmarks/l10n/de.php create mode 100644 apps/bookmarks/l10n/el.php create mode 100644 apps/bookmarks/l10n/sl.php create mode 100644 lib/l10n/ca.php create mode 100644 lib/l10n/de.php create mode 100644 lib/l10n/el.php create mode 100644 lib/l10n/sl.php diff --git a/apps/bookmarks/l10n/ca.php b/apps/bookmarks/l10n/ca.php new file mode 100644 index 0000000000..cf90d9a887 --- /dev/null +++ b/apps/bookmarks/l10n/ca.php @@ -0,0 +1,12 @@ + "Adreces d'interès", +"unnamed" => "sense nom", +"Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Arrossegueu-ho al navegador i feu-hi un clic quan volgueu marcar ràpidament una adreça d'interès:", +"Read later" => "Llegeix més tard", +"Address" => "Adreça", +"Title" => "Títol", +"Tags" => "Etiquetes", +"Save bookmark" => "Desa l'adreça d'interès", +"You have no bookmarks" => "No teniu adreces d'interès", +"Bookmarklet
" => "Bookmarklet
" +); diff --git a/apps/bookmarks/l10n/de.php b/apps/bookmarks/l10n/de.php new file mode 100644 index 0000000000..9e0f137382 --- /dev/null +++ b/apps/bookmarks/l10n/de.php @@ -0,0 +1,12 @@ + "Lesezeichen", +"unnamed" => "unbenannt", +"Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Ziehe dies zu deinen Browser-Lesezeichen und klicke es, wenn du eine Website schnell den Lesezeichen hinzufügen willst.", +"Read later" => "Später lesen", +"Address" => "Adresse", +"Title" => "Title", +"Tags" => "Tags", +"Save bookmark" => "Lesezeichen speichern", +"You have no bookmarks" => "Du hast keine Lesezeichen", +"Bookmarklet
" => "Bookmarklet
" +); diff --git a/apps/bookmarks/l10n/el.php b/apps/bookmarks/l10n/el.php new file mode 100644 index 0000000000..f282a1bbf8 --- /dev/null +++ b/apps/bookmarks/l10n/el.php @@ -0,0 +1,12 @@ + "Σελιδοδείκτες", +"unnamed" => "ανώνυμο", +"Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Σύρετε αυτό στους σελιδοδείκτες του περιηγητή σας και κάντε κλικ επάνω του, όταν θέλετε να προσθέσετε σύντομα μια ιστοσελίδα ως σελιδοδείκτη:", +"Read later" => "Ανάγνωση αργότερα", +"Address" => "Διεύθυνση", +"Title" => "Τίτλος", +"Tags" => "Ετικέτες", +"Save bookmark" => "Αποθήκευση σελιδοδείκτη", +"You have no bookmarks" => "Δεν έχετε σελιδοδείκτες", +"Bookmarklet
" => "Εφαρμογίδιο Σελιδοδεικτών
" +); diff --git a/apps/bookmarks/l10n/sl.php b/apps/bookmarks/l10n/sl.php new file mode 100644 index 0000000000..32a4162908 --- /dev/null +++ b/apps/bookmarks/l10n/sl.php @@ -0,0 +1,12 @@ + "Zaznamki", +"unnamed" => "neimenovano", +"Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Povlecite to povezavo med zaznamke v vašem brskalniku in jo, ko želite ustvariti zaznamek trenutne strani, preprosto kliknite:", +"Read later" => "Preberi kasneje", +"Address" => "Naslov", +"Title" => "Ime", +"Tags" => "Oznake", +"Save bookmark" => "Shrani zaznamek", +"You have no bookmarks" => "Nimate zaznamkov", +"Bookmarklet
" => "Bookmarklet
" +); diff --git a/apps/calendar/l10n/el.php b/apps/calendar/l10n/el.php index e478316bba..4657213848 100644 --- a/apps/calendar/l10n/el.php +++ b/apps/calendar/l10n/el.php @@ -1,8 +1,10 @@ "Δεν έχει δημιουργηθεί λανθάνουσα μνήμη για όλα τα ημερολόγια", "Everything seems to be completely cached" => "Όλα έχουν αποθηκευτεί στη cache", "No calendars found." => "Δε βρέθηκαν ημερολόγια.", "No events found." => "Δε βρέθηκαν γεγονότα.", "Wrong calendar" => "Λάθος ημερολόγιο", +"The file contained either no events or all events are already saved in your calendar." => "Το αρχείο που περιέχει είτε κανένα γεγονός είτε όλα τα γεγονότα έχουν ήδη αποθηκευτεί στο ημερολόγιό σας.", "events has been saved in the new calendar" => "τα συμβάντα αποθηκεύτηκαν σε ένα νέο ημερολόγιο", "Import failed" => "Η εισαγωγή απέτυχε", "events has been saved in your calendar" => "το συμβάν αποθηκεύτηκε στο ημερολογιό σου", @@ -166,6 +168,7 @@ "Please choose a calendar" => "Παρακαλώ επέλεξε ένα ημερολόγιο", "Name of new calendar" => "Όνομα νέου ημερολογίου", "Take an available name!" => "Επέλεξε ένα διαθέσιμο όνομα!", +"A Calendar with this name already exists. If you continue anyhow, these calendars will be merged." => "Ένα ημερολόγιο με αυτό το όνομα υπάρχει ήδη. Εάν θέλετε να συνεχίσετε, αυτά τα 2 ημερολόγια θα συγχωνευθούν.", "Import" => "Εισαγωγή", "Close Dialog" => "Κλείσιμο Διαλόγου", "Create a new event" => "Δημιουργήστε ένα νέο συμβάν", @@ -180,6 +183,8 @@ "12h" => "12ω", "First day of the week" => "Πρώτη μέρα της εβδομάδας", "Cache" => "Cache", +"Clear cache for repeating events" => "Εκκαθάριση λανθάνουσας μνήμης για επανάληψη γεγονότων", +"Calendar CalDAV syncing addresses" => "Διευθύνσεις συγχρονισμού ημερολογίου CalDAV", "more info" => "περισσότερες πλροφορίες", "Primary address (Kontact et al)" => "Κύρια Διεύθυνση(Επαφή και άλλα)", "iOS/OS X" => "iOS/OS X", diff --git a/apps/calendar/l10n/fi_FI.php b/apps/calendar/l10n/fi_FI.php index e67f77909a..23096d7365 100644 --- a/apps/calendar/l10n/fi_FI.php +++ b/apps/calendar/l10n/fi_FI.php @@ -2,6 +2,7 @@ "No calendars found." => "Kalentereita ei löytynyt", "No events found." => "Tapahtumia ei löytynyt.", "Wrong calendar" => "Väärä kalenteri", +"The file contained either no events or all events are already saved in your calendar." => "Tiedosto ei joko sisältänyt tapahtumia tai vaihtoehtoisesti kaikki tapahtumat on jo tallennettu kalenteriisi.", "Import failed" => "Tuonti epäonnistui", "events has been saved in your calendar" => "tapahtumaa on tallennettu kalenteriisi", "New Timezone:" => "Uusi aikavyöhyke:", @@ -135,6 +136,7 @@ "Import a calendar file" => "Tuo kalenteritiedosto", "Please choose a calendar" => "Valitse kalenteri", "Name of new calendar" => "Uuden kalenterin nimi", +"A Calendar with this name already exists. If you continue anyhow, these calendars will be merged." => "Samalla nimellä on jo olemassa kalenteri. Jos jatkat kaikesta huolimatta, kalenterit yhdistetään.", "Import" => "Tuo", "Close Dialog" => "Sulje ikkuna", "Create a new event" => "Luo uusi tapahtuma", diff --git a/apps/contacts/l10n/el.php b/apps/contacts/l10n/el.php index 9538e630a5..c67f27ab2a 100644 --- a/apps/contacts/l10n/el.php +++ b/apps/contacts/l10n/el.php @@ -106,6 +106,7 @@ "Navigation" => "Πλοήγηση", "Next contact in list" => "Επόμενη επαφή στη λίστα", "Previous contact in list" => "Προηγούμενη επαφή στη λίστα", +"Expand/collapse current addressbook" => "Ανάπτυξη/σύμπτυξη τρέχοντος βιβλίου διευθύνσεων", "Next/previous addressbook" => "Επόμενο/προηγούμενο βιβλίο διευθύνσεων", "Actions" => "Ενέργειες", "Refresh contacts list" => "Ανανέωσε τη λίστα επαφών", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index b0ea2dc373..80df2b385f 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -7,8 +7,21 @@ "Missing a temporary folder" => "Manjka začasna mapa", "Failed to write to disk" => "Pisanje na disk je spodletelo", "Files" => "Datoteke", +"Unshare" => "Vzemi iz souporabe", +"Delete" => "Izbriši", +"undo deletion" => "prekliči izbris", +"generating ZIP-file, it may take some time." => "Ustvarjam ZIP datoteko. To lahko traja nekaj časa.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nalaganje ni mogoče, saj gre za mapo, ali pa ima datoteka velikost 0 bajtov.", +"Upload Error" => "Napaka pri nalaganju", +"Pending" => "Na čakanju", +"Upload cancelled." => "Nalaganje je bilo preklicano.", +"Invalid name, '/' is not allowed." => "Neveljavno ime. Znak '/' ni dovoljen.", "Size" => "Velikost", "Modified" => "Spremenjeno", +"folder" => "mapa", +"folders" => "mape", +"file" => "datoteka", +"files" => "datoteke", "File handling" => "Rokovanje z datotekami", "Maximum upload size" => "Največja velikost za nalaganje", "max. possible: " => "največ mogoče:", @@ -26,7 +39,6 @@ "Name" => "Ime", "Share" => "Souporaba", "Download" => "Prejmi", -"Delete" => "Izbriši", "Upload too large" => "Nalaganje ni mogoče, ker je preveliko", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke, ki jih želite naložiti, presegajo največjo dovoljeno velikost na tem strežniku.", "Files are being scanned, please wait." => "Preiskujem datoteke, prosimo počakajte.", diff --git a/apps/gallery/l10n/sl.php b/apps/gallery/l10n/sl.php index 5e06123986..8d3bb9f588 100644 --- a/apps/gallery/l10n/sl.php +++ b/apps/gallery/l10n/sl.php @@ -1,9 +1,9 @@ "Slike", -"Settings" => "Nastavitve", -"Rescan" => "Ponovno preišči", -"Stop" => "Stop", -"Share" => "Deli", +"Share gallery" => "Daj galerijo v souporabo", +"Error: " => "Napaka: ", +"Internal error" => "Notranja napaka", +"Slideshow" => "predstavitev", "Back" => "Nazaj", "Remove confirmation" => "Odstrani potrditev", "Do you want to remove album" => "Ali želite odstraniti album", diff --git a/l10n/ca/bookmarks.po b/l10n/ca/bookmarks.po index 4dc33835a3..c7e3b09a60 100644 --- a/l10n/ca/bookmarks.po +++ b/l10n/ca/bookmarks.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-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"PO-Revision-Date: 2012-07-28 13:38+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" @@ -19,42 +20,42 @@ msgstr "" #: appinfo/app.php:14 msgid "Bookmarks" -msgstr "" +msgstr "Adreces d'interès" #: bookmarksHelper.php:99 msgid "unnamed" -msgstr "" +msgstr "sense nom" #: templates/bookmarklet.php:5 msgid "" "Drag this to your browser bookmarks and click it, when you want to bookmark " "a webpage quickly:" -msgstr "" +msgstr "Arrossegueu-ho al navegador i feu-hi un clic quan volgueu marcar ràpidament una adreça d'interès:" #: templates/bookmarklet.php:7 msgid "Read later" -msgstr "" +msgstr "Llegeix més tard" #: templates/list.php:13 msgid "Address" -msgstr "" +msgstr "Adreça" #: templates/list.php:14 msgid "Title" -msgstr "" +msgstr "Títol" #: templates/list.php:15 msgid "Tags" -msgstr "" +msgstr "Etiquetes" #: templates/list.php:16 msgid "Save bookmark" -msgstr "" +msgstr "Desa l'adreça d'interès" #: templates/list.php:22 msgid "You have no bookmarks" -msgstr "" +msgstr "No teniu adreces d'interès" #: templates/settings.php:11 msgid "Bookmarklet
" -msgstr "" +msgstr "Bookmarklet
" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 2d23400a99..397969d686 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/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-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-07-29 02:04+0200\n" +"PO-Revision-Date: 2012-07-28 13:42+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" @@ -19,94 +20,94 @@ msgstr "" #: app.php:287 msgid "Help" -msgstr "" +msgstr "Ajuda" #: app.php:294 msgid "Personal" -msgstr "" +msgstr "Personal" #: app.php:299 msgid "Settings" -msgstr "" +msgstr "Configuració" #: app.php:304 msgid "Users" -msgstr "" +msgstr "Usuaris" #: app.php:311 msgid "Apps" -msgstr "" +msgstr "Aplicacions" #: app.php:313 msgid "Admin" -msgstr "" +msgstr "Administració" #: files.php:245 msgid "ZIP download is turned off." -msgstr "" +msgstr "La baixada en ZIP està desactivada." #: files.php:246 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Els fitxers s'han de baixar d'un en un." #: files.php:246 files.php:271 msgid "Back to Files" -msgstr "" +msgstr "Torna a Fitxers" #: files.php:270 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "L'aplicació no està habilitada" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Error d'autenticació" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "segons enrere" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "fa 1 minut" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "fa %d minuts" #: template.php:91 msgid "today" -msgstr "" +msgstr "avui" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "ahir" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "fa %d dies" #: template.php:94 msgid "last month" -msgstr "" +msgstr "el mes passat" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "mesos enrere" #: template.php:96 msgid "last year" -msgstr "" +msgstr "l'any passat" #: template.php:97 msgid "years ago" -msgstr "" +msgstr "fa anys" diff --git a/l10n/de/bookmarks.po b/l10n/de/bookmarks.po index a00546e020..449e392591 100644 --- a/l10n/de/bookmarks.po +++ b/l10n/de/bookmarks.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Phi Lieb <>, 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"PO-Revision-Date: 2012-07-28 20:46+0000\n" +"Last-Translator: Phi Lieb <>\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" @@ -19,42 +21,42 @@ msgstr "" #: appinfo/app.php:14 msgid "Bookmarks" -msgstr "" +msgstr "Lesezeichen" #: bookmarksHelper.php:99 msgid "unnamed" -msgstr "" +msgstr "unbenannt" #: templates/bookmarklet.php:5 msgid "" "Drag this to your browser bookmarks and click it, when you want to bookmark " "a webpage quickly:" -msgstr "" +msgstr "Ziehe dies zu deinen Browser-Lesezeichen und klicke es, wenn du eine Website schnell den Lesezeichen hinzufügen willst." #: templates/bookmarklet.php:7 msgid "Read later" -msgstr "" +msgstr "Später lesen" #: templates/list.php:13 msgid "Address" -msgstr "" +msgstr "Adresse" #: templates/list.php:14 msgid "Title" -msgstr "" +msgstr "Title" #: templates/list.php:15 msgid "Tags" -msgstr "" +msgstr "Tags" #: templates/list.php:16 msgid "Save bookmark" -msgstr "" +msgstr "Lesezeichen speichern" #: templates/list.php:22 msgid "You have no bookmarks" -msgstr "" +msgstr "Du hast keine Lesezeichen" #: templates/settings.php:11 msgid "Bookmarklet
" -msgstr "" +msgstr "Bookmarklet
" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 1230fa0545..cb3103a3eb 100644 --- a/l10n/de/lib.po +++ b/l10n/de/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-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-07-29 02:04+0200\n" +"PO-Revision-Date: 2012-07-28 14:29+0000\n" +"Last-Translator: owncloud_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" @@ -19,23 +20,23 @@ msgstr "" #: app.php:287 msgid "Help" -msgstr "" +msgstr "Hilfe" #: app.php:294 msgid "Personal" -msgstr "" +msgstr "Persönlich" #: app.php:299 msgid "Settings" -msgstr "" +msgstr "Einstellungen" #: app.php:304 msgid "Users" -msgstr "" +msgstr "Benutzer" #: app.php:311 msgid "Apps" -msgstr "" +msgstr "Apps" #: app.php:313 msgid "Admin" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 85ded96f8c..c996adc2c5 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -9,14 +9,15 @@ # Marcel Kühlhorn , 2012. # , 2012. # , 2012. +# Phi Lieb <>, 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 05:12+0000\n" -"Last-Translator: JamFX \n" +"POT-Creation-Date: 2012-07-29 02:04+0200\n" +"PO-Revision-Date: 2012-07-28 20:42+0000\n" +"Last-Translator: Phi Lieb <>\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" @@ -102,11 +103,11 @@ msgstr "Dokumentation" #: templates/help.php:9 msgid "Managing Big Files" -msgstr "große Dateien verwalten" +msgstr "Große Dateien verwalten" #: templates/help.php:10 msgid "Ask a question" -msgstr "Stell eine Frage" +msgstr "Stell' eine Frage" #: templates/help.php:22 msgid "Problems connecting to help database." @@ -130,7 +131,7 @@ msgstr "der verfügbaren" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" -msgstr "Desktop und mobile synchronierungs Clients" +msgstr "Desktop- und mobile Synchronierungs-Clients" #: templates/personal.php:13 msgid "Download" @@ -206,7 +207,7 @@ msgstr "Standard Quota" #: templates/users.php:55 templates/users.php:138 msgid "Other" -msgstr "andere" +msgstr "Andere" #: templates/users.php:80 msgid "SubAdmin" diff --git a/l10n/el/bookmarks.po b/l10n/el/bookmarks.po index a5f983f2bf..0030d2d395 100644 --- a/l10n/el/bookmarks.po +++ b/l10n/el/bookmarks.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2012. +# Efstathios Iosifidis , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"PO-Revision-Date: 2012-07-28 11:33+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" @@ -19,42 +21,42 @@ msgstr "" #: appinfo/app.php:14 msgid "Bookmarks" -msgstr "" +msgstr "Σελιδοδείκτες" #: bookmarksHelper.php:99 msgid "unnamed" -msgstr "" +msgstr "ανώνυμο" #: templates/bookmarklet.php:5 msgid "" "Drag this to your browser bookmarks and click it, when you want to bookmark " "a webpage quickly:" -msgstr "" +msgstr "Σύρετε αυτό στους σελιδοδείκτες του περιηγητή σας και κάντε κλικ επάνω του, όταν θέλετε να προσθέσετε σύντομα μια ιστοσελίδα ως σελιδοδείκτη:" #: templates/bookmarklet.php:7 msgid "Read later" -msgstr "" +msgstr "Ανάγνωση αργότερα" #: templates/list.php:13 msgid "Address" -msgstr "" +msgstr "Διεύθυνση" #: templates/list.php:14 msgid "Title" -msgstr "" +msgstr "Τίτλος" #: templates/list.php:15 msgid "Tags" -msgstr "" +msgstr "Ετικέτες" #: templates/list.php:16 msgid "Save bookmark" -msgstr "" +msgstr "Αποθήκευση σελιδοδείκτη" #: templates/list.php:22 msgid "You have no bookmarks" -msgstr "" +msgstr "Δεν έχετε σελιδοδείκτες" #: templates/settings.php:11 msgid "Bookmarklet
" -msgstr "" +msgstr "Εφαρμογίδιο Σελιδοδεικτών
" diff --git a/l10n/el/calendar.po b/l10n/el/calendar.po index 0be7c6d22c..4f8562971b 100644 --- a/l10n/el/calendar.po +++ b/l10n/el/calendar.po @@ -5,15 +5,16 @@ # Translators: # , 2011. # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. # Petros Kyladitis , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 09:47+0000\n" -"Last-Translator: Marios Bekatoros <>\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"PO-Revision-Date: 2012-07-28 11:39+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" @@ -23,7 +24,7 @@ msgstr "" #: ajax/cache/status.php:19 msgid "Not all calendars are completely cached" -msgstr "" +msgstr "Δεν έχει δημιουργηθεί λανθάνουσα μνήμη για όλα τα ημερολόγια" #: ajax/cache/status.php:21 msgid "Everything seems to be completely cached" @@ -45,7 +46,7 @@ msgstr "Λάθος ημερολόγιο" msgid "" "The file contained either no events or all events are already saved in your " "calendar." -msgstr "" +msgstr "Το αρχείο που περιέχει είτε κανένα γεγονός είτε όλα τα γεγονότα έχουν ήδη αποθηκευτεί στο ημερολόγιό σας." #: ajax/import/dropimport.php:31 ajax/import/import.php:67 msgid "events has been saved in the new calendar" @@ -711,7 +712,7 @@ msgstr "Επέλεξε ένα διαθέσιμο όνομα!" msgid "" "A Calendar with this name already exists. If you continue anyhow, these " "calendars will be merged." -msgstr "" +msgstr "Ένα ημερολόγιο με αυτό το όνομα υπάρχει ήδη. Εάν θέλετε να συνεχίσετε, αυτά τα 2 ημερολόγια θα συγχωνευθούν." #: templates/part.import.php:47 msgid "Import" @@ -771,11 +772,11 @@ msgstr "Cache" #: templates/settings.php:48 msgid "Clear cache for repeating events" -msgstr "" +msgstr "Εκκαθάριση λανθάνουσας μνήμης για επανάληψη γεγονότων" #: templates/settings.php:53 msgid "Calendar CalDAV syncing addresses" -msgstr "" +msgstr "Διευθύνσεις συγχρονισμού ημερολογίου CalDAV" #: templates/settings.php:53 msgid "more info" diff --git a/l10n/el/contacts.po b/l10n/el/contacts.po index 1e03429730..9d72a185a0 100644 --- a/l10n/el/contacts.po +++ b/l10n/el/contacts.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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 08:32+0000\n" -"Last-Translator: Marios Bekatoros <>\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"PO-Revision-Date: 2012-07-28 11:43+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" @@ -467,7 +467,7 @@ msgstr "Προηγούμενη επαφή στη λίστα" #: templates/index.php:48 msgid "Expand/collapse current addressbook" -msgstr "" +msgstr "Ανάπτυξη/σύμπτυξη τρέχοντος βιβλίου διευθύνσεων" #: templates/index.php:50 msgid "Next/previous addressbook" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 9f817d1a46..da331c0cb8 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-07-29 02:04+0200\n" +"PO-Revision-Date: 2012-07-28 11:45+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" @@ -19,94 +20,94 @@ 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:245 msgid "ZIP download is turned off." -msgstr "" +msgstr "Η λήψη ZIP απενεργοποιήθηκε." #: files.php:246 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." #: files.php:246 files.php:271 msgid "Back to Files" -msgstr "" +msgstr "Πίσω στα Αρχεία" #: files.php:270 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:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Σφάλμα πιστοποίησης" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Το αναγνωριστικό έληξε. Παρακαλώ επανα-φορτώστε την σελίδα." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "δευτερόλεπτα πριν" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1 λεπτό πριν" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d λεπτά πριν" #: template.php:91 msgid "today" -msgstr "" +msgstr "σήμερα" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "χθές" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d ημέρες πριν" #: template.php:94 msgid "last month" -msgstr "" +msgstr "τον προηγούμενο μήνα" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "μήνες πριν" #: template.php:96 msgid "last year" -msgstr "" +msgstr "τον προηγούμενο χρόνο" #: template.php:97 msgid "years ago" -msgstr "" +msgstr "χρόνια πριν" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 8a66091272..02857c416c 100644 --- a/l10n/el/settings.po +++ b/l10n/el/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 00:02+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-29 02:04+0200\n" +"PO-Revision-Date: 2012-07-28 11: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" @@ -41,7 +41,7 @@ msgstr "Μη έγκυρο αίτημα" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Σφάλμα πιστοποίησης" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -209,7 +209,7 @@ msgstr "Άλλα" #: templates/users.php:80 msgid "SubAdmin" -msgstr "" +msgstr "SubAdmin" #: templates/users.php:82 msgid "Quota" @@ -217,7 +217,7 @@ msgstr "Σύνολο χώρου" #: templates/users.php:112 msgid "SubAdmin for ..." -msgstr "" +msgstr "SubAdmin για ..." #: templates/users.php:145 msgid "Delete" diff --git a/l10n/fi_FI/calendar.po b/l10n/fi_FI/calendar.po index db9bb175eb..d280acc0f2 100644 --- a/l10n/fi_FI/calendar.po +++ b/l10n/fi_FI/calendar.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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 10:40+0000\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"PO-Revision-Date: 2012-07-28 15:53+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" @@ -44,7 +44,7 @@ msgstr "Väärä kalenteri" msgid "" "The file contained either no events or all events are already saved in your " "calendar." -msgstr "" +msgstr "Tiedosto ei joko sisältänyt tapahtumia tai vaihtoehtoisesti kaikki tapahtumat on jo tallennettu kalenteriisi." #: ajax/import/dropimport.php:31 ajax/import/import.php:67 msgid "events has been saved in the new calendar" @@ -710,7 +710,7 @@ msgstr "" msgid "" "A Calendar with this name already exists. If you continue anyhow, these " "calendars will be merged." -msgstr "" +msgstr "Samalla nimellä on jo olemassa kalenteri. Jos jatkat kaikesta huolimatta, kalenterit yhdistetään." #: templates/part.import.php:47 msgid "Import" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 8191bf7710..4d360e13dd 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.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-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:27+0000\n" +"POT-Creation-Date: 2012-07-29 02:04+0200\n" +"PO-Revision-Date: 2012-07-28 15:54+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" @@ -40,7 +40,7 @@ msgstr "Sovellukset" #: app.php:313 msgid "Admin" -msgstr "" +msgstr "Ylläpitäjä" #: files.php:245 msgid "ZIP download is turned off." @@ -64,7 +64,7 @@ msgstr "" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Todennusvirhe" #: json.php:51 msgid "Token expired. Please reload page." diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 4b7cfc4375..d79aad9bbd 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 00:02+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-29 02:04+0200\n" +"PO-Revision-Date: 2012-07-28 15:51+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" @@ -37,7 +37,7 @@ msgstr "Virheellinen pyyntö" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Todennusvirhe" #: ajax/setlanguage.php:18 msgid "Language changed" diff --git a/l10n/sl/bookmarks.po b/l10n/sl/bookmarks.po index addf9cb165..7a522308d4 100644 --- a/l10n/sl/bookmarks.po +++ b/l10n/sl/bookmarks.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Peter Peroša , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"PO-Revision-Date: 2012-07-28 02:18+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" @@ -19,42 +20,42 @@ msgstr "" #: appinfo/app.php:14 msgid "Bookmarks" -msgstr "" +msgstr "Zaznamki" #: bookmarksHelper.php:99 msgid "unnamed" -msgstr "" +msgstr "neimenovano" #: templates/bookmarklet.php:5 msgid "" "Drag this to your browser bookmarks and click it, when you want to bookmark " "a webpage quickly:" -msgstr "" +msgstr "Povlecite to povezavo med zaznamke v vašem brskalniku in jo, ko želite ustvariti zaznamek trenutne strani, preprosto kliknite:" #: templates/bookmarklet.php:7 msgid "Read later" -msgstr "" +msgstr "Preberi kasneje" #: templates/list.php:13 msgid "Address" -msgstr "" +msgstr "Naslov" #: templates/list.php:14 msgid "Title" -msgstr "" +msgstr "Ime" #: templates/list.php:15 msgid "Tags" -msgstr "" +msgstr "Oznake" #: templates/list.php:16 msgid "Save bookmark" -msgstr "" +msgstr "Shrani zaznamek" #: templates/list.php:22 msgid "You have no bookmarks" -msgstr "" +msgstr "Nimate zaznamkov" #: templates/settings.php:11 msgid "Bookmarklet
" -msgstr "" +msgstr "Bookmarklet
" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 7c9c372c04..fd263bc60e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,43 +10,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Slovenian (http://www.transifex.net/projects/p/owncloud/language/sl/)\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"PO-Revision-Date: 2012-07-28 01:58+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" "Content-Transfer-Encoding: 8bit\n" "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:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je bila uspešno naložena." -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Naložena datoteka presega velikost, ki jo določa parameter upload_max_filesize v datoteki php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je bila le delno naložena" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Nobena datoteka ni bila naložena" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" @@ -54,57 +54,65 @@ msgstr "Pisanje na disk je spodletelo" msgid "Files" msgstr "Datoteke" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "Vzemi iz souporabe" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Izbriši" + #: js/filelist.js:186 msgid "undo deletion" -msgstr "" +msgstr "prekliči izbris" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Ustvarjam ZIP datoteko. To lahko traja nekaj časa." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nalaganje ni mogoče, saj gre za mapo, ali pa ima datoteka velikost 0 bajtov." #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Napaka pri nalaganju" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Na čakanju" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Nalaganje je bilo preklicano." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Velikost" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "mapa" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "mape" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "datoteka" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "datoteke" #: templates/admin.php:5 msgid "File handling" @@ -174,10 +182,6 @@ msgstr "Souporaba" msgid "Download" msgstr "Prejmi" -#: templates/index.php:56 -msgid "Delete" -msgstr "Izbriši" - #: templates/index.php:64 msgid "Upload too large" msgstr "Nalaganje ni mogoče, ker je preveliko" diff --git a/l10n/sl/gallery.po b/l10n/sl/gallery.po index 1fe6c5af7b..f9c47144b6 100644 --- a/l10n/sl/gallery.po +++ b/l10n/sl/gallery.po @@ -10,71 +10,35 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Slovenian (http://www.transifex.net/projects/p/owncloud/language/sl/)\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"PO-Revision-Date: 2012-07-28 02:03+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" "Content-Transfer-Encoding: 8bit\n" "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" -#: appinfo/app.php:37 +#: appinfo/app.php:39 msgid "Pictures" msgstr "Slike" -#: js/album_cover.js:44 +#: js/pictures.js:12 msgid "Share gallery" -msgstr "" +msgstr "Daj galerijo v souporabo" -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 +#: js/pictures.js:32 msgid "Error: " -msgstr "" +msgstr "Napaka: " -#: js/album_cover.js:64 js/album_cover.js:100 +#: js/pictures.js:32 msgid "Internal error" -msgstr "" +msgstr "Notranja napaka" -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Nastavitve" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Ponovno preišči" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Stop" - -#: templates/index.php:18 -msgid "Share" -msgstr "Deli" +#: templates/index.php:27 +msgid "Slideshow" +msgstr "predstavitev" #: templates/view_album.php:19 msgid "Back" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 1b75d8d051..fb1e393186 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Peter Peroša , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-07-29 02:04+0200\n" +"PO-Revision-Date: 2012-07-28 02:09+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" @@ -19,55 +20,55 @@ msgstr "" #: app.php:287 msgid "Help" -msgstr "" +msgstr "Pomoč" #: app.php:294 msgid "Personal" -msgstr "" +msgstr "Osebno" #: app.php:299 msgid "Settings" -msgstr "" +msgstr "Nastavitve" #: app.php:304 msgid "Users" -msgstr "" +msgstr "Uporabniki" #: app.php:311 msgid "Apps" -msgstr "" +msgstr "Aplikacije" #: app.php:313 msgid "Admin" -msgstr "" +msgstr "Skrbnik" #: files.php:245 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP prenos je onemogočen." #: files.php:246 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Datoteke morajo biti prenešene posamezno." #: files.php:246 files.php:271 msgid "Back to Files" -msgstr "" +msgstr "Nazaj na datoteke" #: files.php:270 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Izbrane datoteke so prevelike, da bi lahko ustvarili zip datoteko." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Aplikacija ni omogočena" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Napaka overitve" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Žeton je potekel. Prosimo, če spletno stran znova naložite." #: template.php:86 msgid "seconds ago" @@ -75,29 +76,29 @@ msgstr "" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "pred minuto" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "pred %d minutami" #: template.php:91 msgid "today" -msgstr "" +msgstr "danes" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "včeraj" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "pred %d dnevi" #: template.php:94 msgid "last month" -msgstr "" +msgstr "prejšnji mesec" #: template.php:95 msgid "months ago" @@ -105,7 +106,7 @@ msgstr "" #: template.php:96 msgid "last year" -msgstr "" +msgstr "lani" #: template.php:97 msgid "years ago" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 57e7366edc..25758a9537 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 00:02+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-29 02:04+0200\n" +"PO-Revision-Date: 2012-07-28 02:03+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" @@ -38,7 +38,7 @@ msgstr "Neveljaven zahtevek" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Napaka overitve" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -62,7 +62,7 @@ msgstr "__ime_jezika__" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "Varnostno opozorilo" #: templates/admin.php:28 msgid "Log" @@ -206,7 +206,7 @@ msgstr "Drugo" #: templates/users.php:80 msgid "SubAdmin" -msgstr "" +msgstr "PodSkrbnik" #: templates/users.php:82 msgid "Quota" @@ -214,7 +214,7 @@ msgstr "Količinska omejitev" #: templates/users.php:112 msgid "SubAdmin for ..." -msgstr "" +msgstr "PodSkrbnik za ..." #: templates/users.php:145 msgid "Delete" diff --git a/l10n/templates/bookmarks.pot b/l10n/templates/bookmarks.pot index 3ec283b080..0cc6b48719 100644 --- a/l10n/templates/bookmarks.pot +++ b/l10n/templates/bookmarks.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/calendar.pot b/l10n/templates/calendar.pot index cfdab722b6..feb2ff4bd9 100644 --- a/l10n/templates/calendar.pot +++ b/l10n/templates/calendar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/contacts.pot b/l10n/templates/contacts.pot index 4ff7729e08..696c3b7b1c 100644 --- a/l10n/templates/contacts.pot +++ b/l10n/templates/contacts.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 3581e9fd9b..522d4104cd 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-07-28 02:02+0200\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" "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 43182f333d..5f5750d16a 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-07-28 02:02+0200\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/gallery.pot b/l10n/templates/gallery.pot index 4acfa253ec..1969f7b410 100644 --- a/l10n/templates/gallery.pot +++ b/l10n/templates/gallery.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" "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 2dabe2fa37..0fe46e895a 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-07-28 02:02+0200\n" +"POT-Creation-Date: 2012-07-29 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/media.pot b/l10n/templates/media.pot index 001bda203f..68f2dd0d3f 100644 --- a/l10n/templates/media.pot +++ b/l10n/templates/media.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" +"POT-Creation-Date: 2012-07-29 02:03+0200\n" "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 053de66e30..52b7bbdb0b 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-07-28 02:02+0200\n" +"POT-Creation-Date: 2012-07-29 02:04+0200\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/ca.php b/lib/l10n/ca.php new file mode 100644 index 0000000000..8e4c30caec --- /dev/null +++ b/lib/l10n/ca.php @@ -0,0 +1,25 @@ + "Ajuda", +"Personal" => "Personal", +"Settings" => "Configuració", +"Users" => "Usuaris", +"Apps" => "Aplicacions", +"Admin" => "Administració", +"ZIP download is turned off." => "La baixada en ZIP està desactivada.", +"Files need to be downloaded one by one." => "Els fitxers s'han de baixar d'un en un.", +"Back to Files" => "Torna a Fitxers", +"Selected files too large to generate zip file." => "Els fitxers seleccionats son massa grans per generar un fitxer zip.", +"Application is not enabled" => "L'aplicació no està habilitada", +"Authentication error" => "Error d'autenticació", +"Token expired. Please reload page." => "El testimoni ha expirat. Torneu a carregar la pàgina.", +"seconds ago" => "segons enrere", +"1 minute ago" => "fa 1 minut", +"%d minutes ago" => "fa %d minuts", +"today" => "avui", +"yesterday" => "ahir", +"%d days ago" => "fa %d dies", +"last month" => "el mes passat", +"months ago" => "mesos enrere", +"last year" => "l'any passat", +"years ago" => "fa anys" +); diff --git a/lib/l10n/de.php b/lib/l10n/de.php new file mode 100644 index 0000000000..19746ba028 --- /dev/null +++ b/lib/l10n/de.php @@ -0,0 +1,7 @@ + "Hilfe", +"Personal" => "Persönlich", +"Settings" => "Einstellungen", +"Users" => "Benutzer", +"Apps" => "Apps" +); diff --git a/lib/l10n/el.php b/lib/l10n/el.php new file mode 100644 index 0000000000..d9f272258e --- /dev/null +++ b/lib/l10n/el.php @@ -0,0 +1,25 @@ + "Βοήθεια", +"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." => "Το αναγνωριστικό έληξε. Παρακαλώ επανα-φορτώστε την σελίδα.", +"seconds ago" => "δευτερόλεπτα πριν", +"1 minute ago" => "1 λεπτό πριν", +"%d minutes ago" => "%d λεπτά πριν", +"today" => "σήμερα", +"yesterday" => "χθές", +"%d days ago" => "%d ημέρες πριν", +"last month" => "τον προηγούμενο μήνα", +"months ago" => "μήνες πριν", +"last year" => "τον προηγούμενο χρόνο", +"years ago" => "χρόνια πριν" +); diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 032818da51..81f4aa9584 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -3,10 +3,12 @@ "Settings" => "Asetukset", "Users" => "Käyttäjät", "Apps" => "Sovellukset", +"Admin" => "Ylläpitäjä", "ZIP download is turned off." => "ZIP-lataus on poistettu käytöstä.", "Files need to be downloaded one by one." => "Tiedostot on ladattava yksittäin.", "Back to Files" => "Takaisin tiedostoihin", "Selected files too large to generate zip file." => "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon.", +"Authentication error" => "Todennusvirhe", "seconds ago" => "sekuntia sitten", "1 minute ago" => "1 minuutti sitten", "%d minutes ago" => "%d minuuttia sitten", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php new file mode 100644 index 0000000000..7889335d97 --- /dev/null +++ b/lib/l10n/sl.php @@ -0,0 +1,22 @@ + "Pomoč", +"Personal" => "Osebno", +"Settings" => "Nastavitve", +"Users" => "Uporabniki", +"Apps" => "Aplikacije", +"Admin" => "Skrbnik", +"ZIP download is turned off." => "ZIP prenos je onemogočen.", +"Files need to be downloaded one by one." => "Datoteke morajo biti prenešene posamezno.", +"Back to Files" => "Nazaj na datoteke", +"Selected files too large to generate zip file." => "Izbrane datoteke so prevelike, da bi lahko ustvarili zip datoteko.", +"Application is not enabled" => "Aplikacija ni omogočena", +"Authentication error" => "Napaka overitve", +"Token expired. Please reload page." => "Žeton je potekel. Prosimo, če spletno stran znova naložite.", +"1 minute ago" => "pred minuto", +"%d minutes ago" => "pred %d minutami", +"today" => "danes", +"yesterday" => "včeraj", +"%d days ago" => "pred %d dnevi", +"last month" => "prejšnji mesec", +"last year" => "lani" +); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index cab1982ec6..fbaab6d6c9 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -18,14 +18,14 @@ "-licensed" => "-lizenziert", "by" => "von", "Documentation" => "Dokumentation", -"Managing Big Files" => "große Dateien verwalten", -"Ask a question" => "Stell eine Frage", +"Managing Big Files" => "Große Dateien verwalten", +"Ask a question" => "Stell' eine Frage", "Problems connecting to help database." => "Probleme bei der Verbindung zur Hilfe-Datenbank.", "Go there manually." => "Datenbank direkt besuchen.", "Answer" => "Antwort", "You use" => "Du nutzt", "of the available" => "der verfügbaren", -"Desktop and Mobile Syncing Clients" => "Desktop und mobile synchronierungs Clients", +"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Synchronierungs-Clients", "Download" => "Download", "Your password got changed" => "Dein Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", @@ -44,7 +44,7 @@ "Groups" => "Gruppen", "Create" => "Anlegen", "Default Quota" => "Standard Quota", -"Other" => "andere", +"Other" => "Andere", "SubAdmin" => "Unteradministrator", "Quota" => "Quota", "SubAdmin for ..." => "Unteradministrator für...", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 9008b85cec..c2340c1641 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -3,6 +3,7 @@ "Invalid email" => "Μη έγκυρο email", "OpenID Changed" => "Το OpenID άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", +"Authentication error" => "Σφάλμα πιστοποίησης", "Language changed" => "Η γλώσσα άλλαξε", "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", @@ -44,6 +45,8 @@ "Create" => "Δημιουργία", "Default Quota" => "Προεπιλεγμένο όριο", "Other" => "Άλλα", +"SubAdmin" => "SubAdmin", "Quota" => "Σύνολο χώρου", +"SubAdmin for ..." => "SubAdmin για ...", "Delete" => "Διαγραφή" ); diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index bbfcdec384..4fbdca8024 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -3,6 +3,7 @@ "Invalid email" => "Virheellinen sähköposti", "OpenID Changed" => "OpenID on vaihdettu", "Invalid request" => "Virheellinen pyyntö", +"Authentication error" => "Todennusvirhe", "Language changed" => "Kieli on vaihdettu", "Disable" => "Poista käytöstä", "Enable" => "Käytä", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index e4f5a500cc..f1ac1f1642 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -3,11 +3,13 @@ "Invalid email" => "Neveljaven e-poštni naslov", "OpenID Changed" => "OpenID je bil spremenjen", "Invalid request" => "Neveljaven zahtevek", +"Authentication error" => "Napaka overitve", "Language changed" => "Jezik je bil spremenjen", "Disable" => "Onemogoči", "Enable" => "Omogoči", "Saving..." => "Shranjevanje...", "__language_name__" => "__ime_jezika__", +"Security Warning" => "Varnostno opozorilo", "Log" => "Dnevnik", "More" => "Več", "Add your App" => "Dodajte vašo aplikacijo", @@ -43,6 +45,8 @@ "Create" => "Ustvari", "Default Quota" => "Privzeta količinska omejitev", "Other" => "Drugo", +"SubAdmin" => "PodSkrbnik", "Quota" => "Količinska omejitev", +"SubAdmin for ..." => "PodSkrbnik za ...", "Delete" => "Izbriši" ); From 0836366d8703b2663d11e2989f8dbbb3f7c0c18b Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Sun, 29 Jul 2012 16:07:51 +0000 Subject: [PATCH 58/68] Methods to disable and enable users --- lib/user.php | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/lib/user.php b/lib/user.php index e3c9c23eff..49a0a2a10c 100644 --- a/lib/user.php +++ b/lib/user.php @@ -208,8 +208,9 @@ class OC_User { OC_Hook::emit( "OC_User", "pre_login", array( "run" => &$run, "uid" => $uid )); if( $run ){ - $uid=self::checkPassword( $uid, $password ); - if($uid){ + $uid = self::checkPassword( $uid, $password ); + $enabled = self::isEnabled($uid); + if($uid && $enabled){ session_regenerate_id(true); self::setUserId($uid); OC_Hook::emit( "OC_User", "post_login", array( "uid" => $uid, 'password'=>$password )); @@ -363,6 +364,38 @@ class OC_User { } return false; } + + /** + * disables a user + * @param string $userid the user to disable + */ + public static function disableUser($userid){ + $query = "INSERT INTO *PREFIX*preferences (`userid`, `appid`, `configkey`, `configvalue`) VALUES(?, ?, ?, ?)"; + $query = OC_DB::prepare($query); + $query->execute(array($userid, 'core', 'enabled', 'false')); + } + + /** + * enable a user + * @param string $userid + */ + public static function enableUser($userid){ + $query = "DELETE FROM *PREFIX*preferences WHERE userid = ? AND appid = ? AND configkey = ? AND configvalue = ?"; + $query = OC_DB::prepare($query); + $query->execute(array($userid, 'core', 'enabled', 'false')); + } + + /** + * checks if a user is enabled + * @param string $userid + * @return bool + */ + public static function isEnabled($userid){ + $query = "SELECT userid FROM *PREFIX*preferences WHERE userid = ? AND appid = ? AND configkey = ? AND configvalue = ?"; + $query = OC_DB::prepare($query); + $results = $query->execute(array($userid, 'core', 'enabled', 'false')); + return $results->numRows() ? false : true; + } /** * @brief Set cookie value to use in next page load From e18639551d4c2915af706c70f98c67aa04b9c89e Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 29 Jul 2012 16:00:46 -0400 Subject: [PATCH 59/68] Tweak appearance of undo delete notification --- apps/files/css/files.css | 1 + apps/files/js/filelist.js | 5 ++--- core/css/styles.css | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index dc298e4d44..e08d69f08d 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -89,3 +89,4 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } #navigation>ul>li:first-child+li { padding-top:2.9em; } #scanning-message{ top:40%; left:40%; position:absolute; display:none; } +#notification .undo { cursor:pointer; font-weight:bold; margin-left:1em; } \ No newline at end of file diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 3645258f98..aaf2e681ab 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -183,7 +183,7 @@ FileList={ procesSelection(); FileList.deleteCanceled=false; FileList.deleteFiles=files; - $('#notification').text(t('files','undo deletion')); + $('#notification').html(t('files', 'deleted')+' '+files+''+t('files', 'undo')+''); $('#notification').data('deletefile',true); $('#notification').fadeIn(); }, @@ -214,12 +214,11 @@ FileList={ $(document).ready(function(){ $('#notification').hide(); - $('#notification').click(function(){ + $('#notification .undo').live('click', function(){ if($('#notification').data('deletefile')) { $.each(FileList.deleteFiles,function(index,file){ $('tr').filterAttr('data-file',file).show(); -// alert(file); }); FileList.deleteCanceled=true; FileList.deleteFiles=null; diff --git a/core/css/styles.css b/core/css/styles.css index b818caa279..c61d0a9a1a 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -108,7 +108,7 @@ label.infield { cursor: text !important; } .bold { font-weight: bold; } .center { text-align: center; } -#notification { z-index:101; cursor:pointer; background-color:#fc4; border:0; padding:0 .7em .3em; display:none; position:fixed; left:50%; top:0; -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; } +#notification { z-index:101; background-color:#fc4; border:0; padding:0 .7em .3em; display:none; position:fixed; left:50%; top:0; -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; } .action, .selectedActions a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; -webkit-transition:opacity 200ms; -moz-transition:opacity 200ms; -o-transition:opacity 200ms; transition:opacity 200ms; } .action { width: 16px; height: 16px; } From 5262cde6a6dbf7c924508423093aaac0d17a95b5 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 29 Jul 2012 18:01:43 -0400 Subject: [PATCH 60/68] Add additional error handling for emailing private links --- apps/files_sharing/ajax/email.php | 7 ++++++- apps/files_sharing/js/share.js | 18 +++++++++++++----- lib/mail.php | 3 ++- 3 files changed, 21 insertions(+), 7 deletions(-) diff --git a/apps/files_sharing/ajax/email.php b/apps/files_sharing/ajax/email.php index 3026eb7467..aba4f699fa 100644 --- a/apps/files_sharing/ajax/email.php +++ b/apps/files_sharing/ajax/email.php @@ -10,4 +10,9 @@ $subject = $user.' shared a '.$type.' with you'; $link = $_POST['link']; $text = $user.' shared the '.$type.' '.$_POST['file'].' with you. It is available for download here: '.$link; $fromaddress = OCP\Config::getUserValue($user, 'settings', 'email', 'sharing-noreply@'.OCP\Util::getServerHost()); -OCP\Util::sendMail($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user); +try { + OCP\Util::sendMail($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user); + OCP\JSON::success(); +} catch (Exception $exception) { + OCP\JSON::error(array('data' => array('message' => $exception->getMessage()))); +} diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 39e6bd7859..3cfa3583b1 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -202,11 +202,19 @@ OC.Share={ emailPrivateLink:function() { var link = $('#privateLinkText').val(); var file = link.substr(link.lastIndexOf('/') + 1).replace(/%20/g, ' '); - $.post(OC.filePath('files_sharing', 'ajax', 'email.php'), { toaddress: $('#email').val(), link: link, file: file } ); - $('#email').css('font-weight', 'bold'); - $('#email').animate({ fontWeight: 'normal' }, 2000, function() { - $(this).val(''); - }).val('Email sent'); + var email = $('#email').val(); + if (email != '') { + $.post(OC.filePath('files_sharing', 'ajax', 'email.php'), { toaddress: email, link: link, file: file }, function(result) { + if (result && result.status == 'success') { + $('#email').css('font-weight', 'bold'); + $('#email').animate({ fontWeight: 'normal' }, 2000, function() { + $(this).val(''); + }).val('Email sent'); + } else { + OC.dialogs.alert(result.data.message, 'Error while sharing'); + } + }); + } }, dirname:function(path) { return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); diff --git a/lib/mail.php b/lib/mail.php index 7eb2c4770c..0ac9a97c1b 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -83,7 +83,8 @@ class OC_Mail { unset($mailo); OC_Log::write('mail', 'Mail from '.$fromname.' ('.$fromaddress.')'.' to: '.$toname.'('.$toaddress.')'.' subject: '.$subject, OC_Log::DEBUG); } catch (Exception $exception) { - OC_Log::write('mail', $exception->getMessage(), OC_Log::DEBUG); + OC_Log::write('mail', $exception->getMessage(), OC_Log::ERROR); + throw($exception); } } From 3430dcd367a0053b97feaa8e59be0ebda44e1dc4 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 30 Jul 2012 02:05:41 +0200 Subject: [PATCH 61/68] [tx-robot] updated from transifex --- apps/bookmarks/l10n/es.php | 12 + apps/bookmarks/l10n/sv.php | 12 + apps/calendar/l10n/sv.php | 50 +- apps/contacts/l10n/sv.php | 67 ++- apps/files/l10n/ar.php | 2 +- apps/files/l10n/bg_BG.php | 2 +- apps/files/l10n/ca.php | 1 - apps/files/l10n/cs_CZ.php | 12 +- apps/files/l10n/da.php | 12 +- apps/files/l10n/de.php | 17 +- apps/files/l10n/el.php | 1 - apps/files/l10n/eo.php | 12 +- apps/files/l10n/es.php | 1 - apps/files/l10n/et_EE.php | 12 +- apps/files/l10n/eu.php | 12 +- apps/files/l10n/fa.php | 12 +- apps/files/l10n/fi_FI.php | 1 - apps/files/l10n/fr.php | 1 - apps/files/l10n/gl.php | 12 +- apps/files/l10n/he.php | 12 +- apps/files/l10n/hr.php | 12 +- apps/files/l10n/hu_HU.php | 12 +- apps/files/l10n/ia.php | 2 +- apps/files/l10n/id.php | 2 +- apps/files/l10n/it.php | 1 - apps/files/l10n/ja_JP.php | 12 +- apps/files/l10n/ko.php | 11 +- apps/files/l10n/lb.php | 2 +- apps/files/l10n/lt_LT.php | 18 +- apps/files/l10n/mk.php | 12 +- apps/files/l10n/ms_MY.php | 26 +- apps/files/l10n/nb_NO.php | 8 +- apps/files/l10n/nl.php | 12 +- apps/files/l10n/nn_NO.php | 2 +- apps/files/l10n/pl.php | 12 +- apps/files/l10n/pt_BR.php | 12 +- apps/files/l10n/pt_PT.php | 12 +- apps/files/l10n/ro.php | 2 +- apps/files/l10n/ru.php | 12 +- apps/files/l10n/sk_SK.php | 12 +- apps/files/l10n/sl.php | 1 - apps/files/l10n/sr.php | 2 +- apps/files/l10n/sr@latin.php | 2 +- apps/files/l10n/sv.php | 13 +- apps/files/l10n/th_TH.php | 12 +- apps/files/l10n/tr.php | 12 +- apps/files/l10n/uk.php | 2 +- apps/files/l10n/zh_CN.php | 12 +- apps/files/l10n/zh_TW.php | 2 +- apps/gallery/l10n/sv.php | 8 +- core/l10n/de.php | 40 +- core/l10n/sv.php | 20 +- l10n/af/files.po | 52 +- l10n/ar/files.po | 52 +- l10n/ar_SA/files.po | 10 +- l10n/bg_BG/files.po | 52 +- l10n/ca/files.po | 14 +- l10n/cs_CZ/files.po | 72 +-- l10n/da/files.po | 73 +-- l10n/de/core.po | 103 ++-- l10n/de/files.po | 77 +-- l10n/de/lib.po | 43 +- l10n/de/settings.po | 6 +- l10n/el/files.po | 14 +- l10n/eo/files.po | 72 +-- l10n/es/bookmarks.po | 27 +- l10n/es/files.po | 14 +- l10n/es/settings.po | 12 +- l10n/et_EE/files.po | 72 +-- l10n/eu/files.po | 72 +-- l10n/fa/files.po | 72 +-- l10n/fi_FI/files.po | 14 +- l10n/fr/files.po | 14 +- l10n/gl/files.po | 72 +-- l10n/he/files.po | 73 +-- l10n/hr/files.po | 74 +-- l10n/hu_HU/files.po | 72 +-- l10n/hy/files.po | 52 +- l10n/ia/files.po | 52 +- l10n/id/files.po | 52 +- l10n/id_ID/files.po | 10 +- l10n/it/files.po | 14 +- l10n/ja_JP/files.po | 72 +-- l10n/ko/files.po | 70 +-- l10n/lb/files.po | 52 +- l10n/lt_LT/files.po | 81 ++-- l10n/lv/files.po | 12 +- l10n/mk/files.po | 73 +-- l10n/ms_MY/files.po | 98 ++-- l10n/nb_NO/files.po | 65 +-- l10n/nl/files.po | 73 +-- l10n/nn_NO/files.po | 52 +- l10n/pl/files.po | 72 +-- l10n/pl/settings.po | 8 +- l10n/pt_BR/files.po | 73 +-- l10n/pt_PT/files.po | 72 +-- l10n/ro/files.po | 52 +- l10n/ru/files.po | 73 +-- l10n/sk_SK/files.po | 72 +-- l10n/sl/files.po | 14 +- l10n/so/files.po | 10 +- l10n/sr/files.po | 52 +- l10n/sr@latin/files.po | 52 +- l10n/sv/bookmarks.po | 27 +- l10n/sv/calendar.po | 406 ++++++++++------ l10n/sv/contacts.po | 911 ++++++++++++++++++----------------- l10n/sv/core.po | 81 ++-- l10n/sv/files.po | 73 +-- l10n/sv/gallery.po | 65 +-- l10n/sv/lib.po | 53 +- l10n/sv/settings.po | 15 +- l10n/templates/bookmarks.pot | 2 +- l10n/templates/calendar.pot | 2 +- l10n/templates/contacts.pot | 2 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 8 +- l10n/templates/gallery.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/media.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/th_TH/files.po | 72 +-- l10n/tr/files.po | 72 +-- l10n/uk/files.po | 52 +- l10n/vi/files.po | 10 +- l10n/zh_CN/files.po | 72 +-- l10n/zh_TW/files.po | 52 +- lib/l10n/de.php | 20 +- lib/l10n/sv.php | 25 + settings/l10n/de.php | 2 +- settings/l10n/es.php | 3 + settings/l10n/pl.php | 1 + settings/l10n/sv.php | 4 + 132 files changed, 3101 insertions(+), 2128 deletions(-) create mode 100644 apps/bookmarks/l10n/es.php create mode 100644 apps/bookmarks/l10n/sv.php create mode 100644 lib/l10n/sv.php diff --git a/apps/bookmarks/l10n/es.php b/apps/bookmarks/l10n/es.php new file mode 100644 index 0000000000..071b0dda70 --- /dev/null +++ b/apps/bookmarks/l10n/es.php @@ -0,0 +1,12 @@ + "Marcadores", +"unnamed" => "sin nombre", +"Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Arrastra desde aquí a los marcadores de tu navegador, y haz clic cuando quieras marcar una página web rápidamente:", +"Read later" => "Leer después", +"Address" => "Dirección", +"Title" => "Título", +"Tags" => "Etiquetas", +"Save bookmark" => "Guardar marcador", +"You have no bookmarks" => "No tienes marcadores", +"Bookmarklet
" => "Bookmarklet
" +); diff --git a/apps/bookmarks/l10n/sv.php b/apps/bookmarks/l10n/sv.php new file mode 100644 index 0000000000..689bd452f1 --- /dev/null +++ b/apps/bookmarks/l10n/sv.php @@ -0,0 +1,12 @@ + "Bokmärken", +"unnamed" => "namnlös", +"Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Dra till din webbläsares bokmärken och klicka på det när du vill bokmärka en webbsida snabbt:", +"Read later" => "Läs senare", +"Address" => "Adress", +"Title" => "Titel", +"Tags" => "Taggar", +"Save bookmark" => "Spara bokmärke", +"You have no bookmarks" => "Du har inga bokmärken", +"Bookmarklet
" => "Skriptbokmärke
" +); diff --git a/apps/calendar/l10n/sv.php b/apps/calendar/l10n/sv.php index 59f8c6e6b5..e29e96b463 100644 --- a/apps/calendar/l10n/sv.php +++ b/apps/calendar/l10n/sv.php @@ -1,12 +1,23 @@ "Alla kalendrar är inte fullständigt sparade i cache", +"Everything seems to be completely cached" => "Allt verkar vara fullständigt sparat i cache", "No calendars found." => "Inga kalendrar funna", "No events found." => "Inga händelser funna.", "Wrong calendar" => "Fel kalender", +"The file contained either no events or all events are already saved in your calendar." => "Filen innehöll inga händelser eller så är alla händelser redan sparade i kalendern.", +"events has been saved in the new calendar" => "händelser har sparats i den nya kalendern", +"Import failed" => "Misslyckad import", +"events has been saved in your calendar" => "händelse har sparats i din kalender", "New Timezone:" => "Ny tidszon:", "Timezone changed" => "Tidszon ändrad", "Invalid request" => "Ogiltig begäran", "Calendar" => "Kalender", +"ddd" => "ddd", +"ddd M/d" => "ddd M/d", +"dddd M/d" => "dddd M/d", +"MMMM yyyy" => "MMMM åååå", "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" => "MMM d[ yyyy]{ '—'[ MMM] d yyyy}", +"dddd, MMM d, yyyy" => "ddd, MMM d, åååå", "Birthday" => "Födelsedag", "Business" => "Företag", "Call" => "Ringa", @@ -22,7 +33,9 @@ "Projects" => "Projekt", "Questions" => "Frågor", "Work" => "Arbetet", +"by" => "av", "unnamed" => "Namn saknas", +"New Calendar" => "Ny kalender", "Does not repeat" => "Upprepas inte", "Daily" => "Dagligen", "Weekly" => "Varje vecka", @@ -67,8 +80,26 @@ "by day and month" => "efter dag och månad", "Date" => "Datum", "Cal." => "Kal.", +"Sun." => "Sön.", +"Mon." => "Mån.", +"Tue." => "Tis.", +"Wed." => "Ons.", +"Thu." => "Tor.", +"Fri." => "Fre.", +"Sat." => "Lör.", +"Jan." => "Jan.", +"Feb." => "Feb.", +"Mar." => "Mar.", +"Apr." => "Apr.", +"May." => "Maj.", +"Jun." => "Jun.", +"Jul." => "Jul.", +"Aug." => "Aug.", +"Sep." => "Sep.", +"Oct." => "Okt.", +"Nov." => "Nov.", +"Dec." => "Dec.", "All day" => "Hela dagen", -"New Calendar" => "Ny kalender", "Missing fields" => "Saknade fält", "Title" => "Rubrik", "From Date" => "Från datum", @@ -132,18 +163,17 @@ "Interval" => "Hur ofta", "End" => "Slut", "occurrences" => "Händelser", -"Import a calendar file" => "Importera en kalenderfil", -"Please choose the calendar" => "Välj kalender", "create a new calendar" => "skapa en ny kalender", +"Import a calendar file" => "Importera en kalenderfil", +"Please choose a calendar" => "Välj en kalender", "Name of new calendar" => "Namn på ny kalender", +"Take an available name!" => "Ta ett ledigt namn!", +"A Calendar with this name already exists. If you continue anyhow, these calendars will be merged." => "En kalender med detta namn finns redan. Om du fortsätter ändå så kommer dessa kalendrar att slås samman.", "Import" => "Importera", -"Importing calendar" => "Importerar kalender", -"Calendar imported successfully" => "Kalender importerades utan problem", "Close Dialog" => "Stäng ", "Create a new event" => "Skapa en ny händelse", "View an event" => "Visa en händelse", "No categories selected" => "Inga kategorier valda", -"Select category" => "Välj kategori", "of" => "av", "at" => "på", "Timezone" => "Tidszon", @@ -152,7 +182,13 @@ "24h" => "24h", "12h" => "12h", "First day of the week" => "Första dagen av veckan", -"Calendar CalDAV syncing address:" => "Synkroniseringsadress för CalDAV kalender:", +"Cache" => "Cache", +"Clear cache for repeating events" => "Töm cache för upprepade händelser", +"Calendar CalDAV syncing addresses" => "Kalender CalDAV synkroniserar adresser", +"more info" => "mer info", +"Primary address (Kontact et al)" => "Primary address (Kontact et al)", +"iOS/OS X" => "iOS/OS X", +"Read only iCalendar link(s)" => "Read only iCalendar link(s)", "Users" => "Användare", "select users" => "välj användare", "Editable" => "Redigerbar", diff --git a/apps/contacts/l10n/sv.php b/apps/contacts/l10n/sv.php index 8d5d37d248..bb8f0d0a30 100644 --- a/apps/contacts/l10n/sv.php +++ b/apps/contacts/l10n/sv.php @@ -1,30 +1,32 @@ "Fel när (av)aktivera adressbok", "There was an error adding the contact." => "Det uppstod ett fel när kontakt skulle läggas till", +"id is not set." => "ID är inte satt.", +"Could not parse contact: " => "Kunde inte läsa kontakt:", "Cannot add empty property." => "Kan inte lägga till en tom egenskap", "At least one of the address fields has to be filled out." => "Minst ett fält måste fyllas i", -"Error adding contact property." => "Fel när kontaktegenskap skulle läggas till", +"Error adding contact property: " => "Kunde inte lägga till egenskap för kontakt:", "No ID provided" => "Inget ID angett", "Error setting checksum." => "Fel uppstod när kontrollsumma skulle sättas.", "No categories selected for deletion." => "Inga kategorier valda för borttaging", "No address books found." => "Ingen adressbok funnen.", "No contacts found." => "Inga kontakter funna.", "Missing ID" => "ID saknas", -"Cannot add addressbook with an empty name." => "Kan inte lägga till adressbok med ett tomt namn.", -"Error adding addressbook." => "Fel när adressbok skulle läggas till", -"Error activating addressbook." => "Fel uppstod när adressbok skulle aktiveras", "No contact ID was submitted." => "Inget kontakt-ID angavs.", "Error reading contact photo." => "Fel uppstod när ", "Error saving temporary file." => "Fel uppstod när temporär fil skulle sparas.", "The loading photo is not valid." => "Det laddade fotot är inte giltigt.", -"id is not set." => "ID är inte satt.", "Information about vCard is incorrect. Please reload the page." => "Information om vCard är felaktigt. Vänligen ladda om sidan.", "Error deleting contact property." => "Fel uppstod när kontaktegenskap skulle tas bort", "Contact ID is missing." => "Kontakt-ID saknas.", -"Missing contact id." => "Saknar kontakt-ID.", "No photo path was submitted." => "Ingen sökväg till foto angavs.", "File doesn't exist:" => "Filen existerar inte.", "Error loading image." => "Fel uppstod när bild laddades.", +"Error saving contact." => "Fel vid sparande av kontakt.", +"Error resizing image" => "Fel vid storleksförändring av bilden", +"Error cropping image" => "Fel vid beskärning av bilden", +"Error creating temporary image" => "Fel vid skapande av tillfällig bild", +"Error finding image: " => "Kunde inte hitta bild", "checksum is not set." => "kontrollsumma är inte satt.", "Information about vCard is incorrect. Please reload the page: " => "Informationen om vCard är fel. Ladda om sidan:", "Error updating contact property." => "Fel uppstod när kontaktegenskap skulle uppdateras", @@ -37,8 +39,27 @@ "The uploaded file was only partially uploaded" => "Den uppladdade filen var bara delvist uppladdad", "No file was uploaded" => "Ingen fil laddades upp", "Missing a temporary folder" => "En temporär mapp saknas", +"Couldn't save temporary image: " => "Kunde inte spara tillfällig bild:", +"Couldn't load temporary image: " => "Kunde inte ladda tillfällig bild:", +"No file was uploaded. Unknown error" => "Ingen fil uppladdad. Okänt fel", "Contacts" => "Kontakter", -"Drop a VCF file to import contacts." => "Släpp en VCF-fil för att importera kontakter.", +"Sorry, this functionality has not been implemented yet" => "Tyvärr är denna funktion inte införd än", +"Not implemented" => "Inte införd", +"Couldn't get a valid address." => "Kunde inte hitta en giltig adress.", +"Error" => "Fel", +"Contact" => "Kontakt", +"New" => "Ny", +"New Contact" => "Ny kontakt", +"This property has to be non-empty." => "Denna egenskap får inte vara tom.", +"Couldn't serialize elements." => "Kunde inte serialisera element.", +"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "\"deleteProperty\" anropades utan typargument. Vänligen rapportera till bugs.owncloud.org", +"Edit name" => "Ändra namn", +"No files selected for upload." => "Inga filer valda för uppladdning", +"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Filen du försöker ladda upp är större än den maximala storleken för filuppladdning på denna server.", +"Select type" => "Välj typ", +"Result: " => "Resultat:", +" imported, " => "importerad,", +" failed." => "misslyckades.", "Addressbook not found." => "Hittade inte adressboken", "This is not your addressbook." => "Det här är inte din adressbok.", "Contact could not be found." => "Kontakt kunde inte hittas.", @@ -56,25 +77,33 @@ "Video" => "Video", "Pager" => "Personsökare", "Internet" => "Internet", +"Birthday" => "Födelsedag", +"Business" => "Företag", +"Call" => "Ring", +"Clients" => "Kunder", +"Deliverer" => "Leverera", +"Holidays" => "Helgdagar", +"Ideas" => "Idéer", "{name}'s Birthday" => "{name}'s födelsedag", -"Contact" => "Kontakt", "Add Contact" => "Lägg till kontakt", +"Import" => "Importera", "Addressbooks" => "Adressböcker", +"Close" => "Stäng", "Configure Address Books" => "Konfigurera adressböcker", "New Address Book" => "Ny adressbok", -"Import from VCF" => "Importera från VCF", "CardDav Link" => "CardDAV länk", "Download" => "Nedladdning", "Edit" => "Redigera", "Delete" => "Radera", -"Download contact" => "Ladda ner kontakt", -"Delete contact" => "Radera kontakt", "Drop photo to upload" => "Släpp foto för att ladda upp", +"Delete current photo" => "Ta bort aktuellt foto", +"Edit current photo" => "Redigera aktuellt foto", +"Upload new photo" => "Ladda upp ett nytt foto", +"Select photo from ownCloud" => "Välj foto från ownCloud", "Format custom, Short name, Full name, Reverse or Reverse with comma" => " anpassad, korta namn, hela namn, bakåt eller bakåt med komma", "Edit name details" => "Redigera detaljer för namn", "Nickname" => "Smeknamn", "Enter nickname" => "Ange smeknamn", -"Birthday" => "Födelsedag", "dd-mm-yyyy" => "dd-mm-åååå", "Groups" => "Grupper", "Separate groups with commas" => "Separera grupperna med kommatecken", @@ -90,24 +119,19 @@ "Edit address details" => "Redigera detaljer för adress", "Add notes here." => "Lägg till noteringar här.", "Add field" => "Lägg till fält", -"Profile picture" => "Profilbild", "Phone" => "Telefon", "Note" => "Notering", -"Delete current photo" => "Ta bort aktuellt foto", -"Edit current photo" => "Redigera aktuellt foto", -"Upload new photo" => "Ladda upp ett nytt foto", -"Select photo from ownCloud" => "Välj foto från ownCloud", +"Download contact" => "Ladda ner kontakt", +"Delete contact" => "Radera kontakt", +"The temporary image has been removed from cache." => "Den tillfälliga bilden har raderats från cache.", "Edit address" => "Editera adress", "Type" => "Typ", "PO Box" => "Postbox", "Extended" => "Utökad", -"Street" => "Gata", "City" => "Stad", "Region" => "Län", "Zipcode" => "Postnummer", "Country" => "Land", -"Edit categories" => "Editera kategorier", -"Add" => "Ny", "Addressbook" => "Adressbok", "Miss" => "Herr", "Ms" => "Ingen adressbok funnen.", @@ -129,10 +153,7 @@ "Please choose the addressbook" => "Vänligen välj adressboken", "create a new addressbook" => "skapa en ny adressbok", "Name of new addressbook" => "Namn för ny adressbok", -"Import" => "Importera", "Importing contacts" => "Importerar kontakter", -"Select address book to import to:" => "Importera till adressbok:", -"Select from HD" => "Välj från hårddisk", "You have no contacts in your addressbook." => "Du har inga kontakter i din adressbok.", "Add contact" => "Lägg till en kontakt", "Configure addressbooks" => "Konfigurera adressböcker", diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 91e748e300..52480ce7ff 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -6,6 +6,7 @@ "No file was uploaded" => "لم يتم ترفيع أي من الملفات", "Missing a temporary folder" => "المجلد المؤقت غير موجود", "Files" => "الملفات", +"Delete" => "محذوف", "Size" => "حجم", "Modified" => "معدل", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", @@ -16,7 +17,6 @@ "Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!", "Name" => "الاسم", "Download" => "تحميل", -"Delete" => "محذوف", "Upload too large" => "حجم الترفيع أعلى من المسموح", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." ); diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index 83b3608731..329f306d9e 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -6,6 +6,7 @@ "No file was uploaded" => "Фахлът не бе качен", "Missing a temporary folder" => "Липсва временната папка", "Files" => "Файлове", +"Delete" => "Изтриване", "Size" => "Размер", "Modified" => "Променено", "Maximum upload size" => "Макс. размер за качване", @@ -13,7 +14,6 @@ "Nothing in here. Upload something!" => "Няма нищо, качете нещо!", "Name" => "Име", "Download" => "Изтегляне", -"Delete" => "Изтриване", "Upload too large" => "Файлът е прекалено голям", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." ); diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index bce5579010..c23746ac5a 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -9,7 +9,6 @@ "Files" => "Fitxers", "Unshare" => "Deixa de compartir", "Delete" => "Suprimeix", -"undo deletion" => "desfés l'eliminació", "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", "Upload Error" => "Error en la pujada", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 9a4be26dad..ddaf923d1b 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Chybí adresář pro sočasné soubory", "Failed to write to disk" => "Zápis na disk se nezdařil", "Files" => "Soubory", +"Delete" => "Vymazat", +"generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to chvíli trvat", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nemohu nahrát váš soubor neboť to je adresář a nebo má nulovou délku.", +"Upload Error" => "Chyba při nahrávání", +"Pending" => "Očekává se", +"Upload cancelled." => "Nahrávání zrušeno", +"Invalid name, '/' is not allowed." => "Špatné jméno, znak '/' není povolen", "Size" => "Velikost", "Modified" => "Změněno", +"folder" => "adresář", +"folders" => "adresáře", +"file" => "soubor", +"files" => "soubory", "File handling" => "Nastavení chování k souborům", "Maximum upload size" => "Maximální velikost ukládaných souborů", "max. possible: " => "největší možná:", @@ -26,7 +37,6 @@ "Name" => "Název", "Share" => "Sdílet", "Download" => "Stáhnout", -"Delete" => "Vymazat", "Upload too large" => "Příliš velký soubor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte uložit, překračují maximální velikosti uploadu na tomto serveru.", "Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 3683ab8484..d24e2a8dcb 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Mangler en midlertidig mappe", "Failed to write to disk" => "Fejl ved skrivning til disk.", "Files" => "Filer", +"Delete" => "Slet", +"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", +"Pending" => "Afventer", +"Upload cancelled." => "Upload afbrudt.", +"Invalid name, '/' is not allowed." => "Ugyldigt navn, '/' er ikke tilladt.", "Size" => "Størrelse", "Modified" => "Ændret", +"folder" => "mappe", +"folders" => "mapper", +"file" => "fil", +"files" => "filer", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimal upload-størrelse", "max. possible: " => "max. mulige: ", @@ -26,7 +37,6 @@ "Name" => "Navn", "Share" => "Del", "Download" => "Download", -"Delete" => "Slet", "Upload too large" => "Upload for stor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server.", "Files are being scanned, please wait." => "Filerne bliver indlæst, vent venligst.", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 9c5310c43b..ea7ffa5ac5 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -6,11 +6,23 @@ "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 Festplatte", -"Files" => "Files", +"Files" => "Dateien", +"Unshare" => "Nicht mehr teilen", +"Delete" => "Löschen", +"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" => "Datei kann nicht hochgeladen werden da sie ein Verzeichniss ist oder 0 bytes hat.", +"Upload Error" => "Fehler beim Hochladen", +"Pending" => "Anstehend", +"Upload cancelled." => "Hochladen abgebrochen.", +"Invalid name, '/' is not allowed." => "Ungültiger Name, \"/\" ist nicht erlaubt.", "Size" => "Größe", "Modified" => "Bearbeitet", +"folder" => "Ordner", +"folders" => "Ordner", +"file" => "Datei", +"files" => "Dateien", "File handling" => "Dateibehandlung", -"Maximum upload size" => "Maximum upload size", +"Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", "Needed for multi-file and folder downloads." => "Für Mehrfachdateien- und Ordnerdownloads benötigt:", "Enable ZIP-download" => "ZIP-Download aktivieren", @@ -26,7 +38,6 @@ "Name" => "Name", "Share" => "Teilen", "Download" => "Herunterladen", -"Delete" => "Löschen", "Upload too large" => "Upload zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Daten werden gescannt, bitte warten.", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 042643a6e0..ce154bacb7 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -9,7 +9,6 @@ "Files" => "Αρχεία", "Unshare" => "Ακύρωση Διαμοιρασμού", "Delete" => "Διαγραφή", -"undo deletion" => "αναίρεση διαγραφής", "generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.", "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", "Upload Error" => "Σφάλμα Μεταφόρτωσης", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 64c380d600..fa9e5eca42 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Mankas tempa dosierujo", "Failed to write to disk" => "Malsukcesis skribo al disko", "Files" => "Dosieroj", +"Delete" => "Forigi", +"generating ZIP-file, it may take some time." => "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo", +"Unable to upload your file as it is a directory or has 0 bytes" => "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn", +"Upload Error" => "Alŝuta eraro", +"Pending" => "Traktotaj", +"Upload cancelled." => "La alŝuto nuliĝis.", +"Invalid name, '/' is not allowed." => "Nevalida nomo, “/” ne estas permesata.", "Size" => "Grando", "Modified" => "Modifita", +"folder" => "dosierujo", +"folders" => "dosierujoj", +"file" => "dosiero", +"files" => "dosieroj", "File handling" => "Dosieradministro", "Maximum upload size" => "Maksimuma alŝutogrando", "max. possible: " => "maks. ebla: ", @@ -26,7 +37,6 @@ "Name" => "Nomo", "Share" => "Kunhavigi", "Download" => "Elŝuti", -"Delete" => "Forigi", "Upload too large" => "Elŝuto tro larĝa", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.", "Files are being scanned, please wait." => "Dosieroj estas skanataj, bonvolu atendi.", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 506218815b..e1376aa42b 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -9,7 +9,6 @@ "Files" => "Archivos", "Unshare" => "No compartir", "Delete" => "Eliminado", -"undo deletion" => "deshacer la eliminación", "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", "Upload Error" => "Error al subir el archivo", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 89bb96581c..a5dd345f8e 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Ajutiste failide kaust puudub", "Failed to write to disk" => "Kettale kirjutamine ebaõnnestus", "Files" => "Failid", +"Delete" => "Kustuta", +"generating ZIP-file, it may take some time." => "ZIP-faili loomine, see võib veidi aega võtta.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti", +"Upload Error" => "Üleslaadimise viga", +"Pending" => "Ootel", +"Upload cancelled." => "Üleslaadimine tühistati.", +"Invalid name, '/' is not allowed." => "Vigane nimi, '/' pole lubatud.", "Size" => "Suurus", "Modified" => "Muudetud", +"folder" => "kaust", +"folders" => "kausta", +"file" => "fail", +"files" => "faili", "File handling" => "Failide käsitlemine", "Maximum upload size" => "Maksimaalne üleslaadimise suurus", "max. possible: " => "maks. võimalik: ", @@ -26,7 +37,6 @@ "Name" => "Nimi", "Share" => "Jaga", "Download" => "Lae alla", -"Delete" => "Kustuta", "Upload too large" => "Üleslaadimine on liiga suur", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse.", "Files are being scanned, please wait." => "Faile skannitakse, palun oota", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index a7ca21f496..588df210a1 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Aldi baterako karpeta falta da", "Failed to write to disk" => "Errore bat izan da diskoan idazterakoan", "Files" => "Fitxategiak", +"Delete" => "Ezabatu", +"generating ZIP-file, it may take some time." => "ZIP-fitxategia sortzen ari da, denbora har dezake", +"Unable to upload your file as it is a directory or has 0 bytes" => "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu", +"Upload Error" => "Igotzean errore bat suertatu da", +"Pending" => "Zain", +"Upload cancelled." => "Igoera ezeztatuta", +"Invalid name, '/' is not allowed." => "Baliogabeko izena, '/' ezin da erabili. ", "Size" => "Tamaina", "Modified" => "Aldatuta", +"folder" => "karpeta", +"folders" => "Karpetak", +"file" => "fitxategia", +"files" => "fitxategiak", "File handling" => "Fitxategien kudeaketa", "Maximum upload size" => "Igo daitekeen gehienezko tamaina", "max. possible: " => "max, posiblea:", @@ -26,7 +37,6 @@ "Name" => "Izena", "Share" => "Elkarbanatu", "Download" => "Deskargatu", -"Delete" => "Ezabatu", "Upload too large" => "Igotakoa handiegia da", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira.", "Files are being scanned, please wait." => "Fitxategiak eskaneatzen ari da, itxoin mezedez.", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 4bb46e1fcf..77173d2836 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "یک پوشه موقت گم شده است", "Failed to write to disk" => "نوشتن بر روی دیسک سخت ناموفق بود", "Files" => "فایل ها", +"Delete" => "پاک کردن", +"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" => "خطا در بار گذاری", +"Pending" => "در انتظار", +"Upload cancelled." => "بار گذاری لغو شد", +"Invalid name, '/' is not allowed." => "نام نامناسب '/' غیرفعال است", "Size" => "اندازه", "Modified" => "تغییر یافته", +"folder" => "پوشه", +"folders" => "پوشه ها", +"file" => "پرونده", +"files" => "پرونده ها", "File handling" => "اداره پرونده ها", "Maximum upload size" => "حداکثر اندازه بارگزاری", "max. possible: " => "حداکثرمقدارممکن:", @@ -26,7 +37,6 @@ "Name" => "نام", "Share" => "به اشتراک گذاری", "Download" => "بارگیری", -"Delete" => "پاک کردن", "Upload too large" => "حجم بارگذاری بسیار زیاد است", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد", "Files are being scanned, please wait." => "پرونده ها در حال بازرسی هستند لطفا صبر کنید", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 8b51d15a91..1b1cfd394c 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -9,7 +9,6 @@ "Files" => "Tiedostot", "Unshare" => "Lopeta jakaminen", "Delete" => "Poista", -"undo deletion" => "kumoa poisto", "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", "Upload Error" => "Lähetysvirhe.", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 6f5e1ec6b8..ca3d03ad6f 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -9,7 +9,6 @@ "Files" => "Fichiers", "Unshare" => "Ne plus partager", "Delete" => "Supprimer", -"undo deletion" => "Annuler la suppression", "generating ZIP-file, it may take some time." => "Générer un fichier ZIP, 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.", "Upload Error" => "Erreur de chargement", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 36eafaefe2..cbbd65217b 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Falta un cartafol temporal", "Failed to write to disk" => "Erro ao escribir no disco", "Files" => "Ficheiros", +"Delete" => "Eliminar", +"generating ZIP-file, it may take some time." => "xerando ficheiro ZIP, pode levar un anaco.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes", +"Upload Error" => "Erro na subida", +"Pending" => "Pendentes", +"Upload cancelled." => "Subida cancelada.", +"Invalid name, '/' is not allowed." => "Nome non válido, '/' non está permitido.", "Size" => "Tamaño", "Modified" => "Modificado", +"folder" => "cartafol", +"folders" => "cartafoles", +"file" => "ficheiro", +"files" => "ficheiros", "File handling" => "Manexo de ficheiro", "Maximum upload size" => "Tamaño máximo de envío", "max. possible: " => "máx. posible: ", @@ -26,7 +37,6 @@ "Name" => "Nome", "Share" => "Compartir", "Download" => "Descargar", -"Delete" => "Eliminar", "Upload too large" => "Envío demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiros que trata de subir superan o tamaño máximo permitido neste servidor", "Files are being scanned, please wait." => "Estanse analizando os ficheiros, espere por favor.", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 0876eb952c..65d093e366 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "תיקייה זמנית חסרה", "Failed to write to disk" => "הכתיבה לכונן נכשלה", "Files" => "קבצים", +"Delete" => "מחיקה", +"generating ZIP-file, it may take some time." => "יוצר קובץ ZIP, אנא המתן.", +"Unable to upload your file as it is a directory or has 0 bytes" => "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים", +"Upload Error" => "שגיאת העלאה", +"Pending" => "ממתין", +"Upload cancelled." => "ההעלאה בוטלה.", +"Invalid name, '/' is not allowed." => "שם לא חוקי, '/' אסור לשימוש.", "Size" => "גודל", "Modified" => "זמן שינוי", +"folder" => "תקיה", +"folders" => "תקיות", +"file" => "קובץ", +"files" => "קבצים", "File handling" => "טיפול בקבצים", "Maximum upload size" => "גודל העלאה מקסימלי", "max. possible: " => "המרבי האפשרי: ", @@ -26,7 +37,6 @@ "Name" => "שם", "Share" => "שיתוף", "Download" => "הורדה", -"Delete" => "מחיקה", "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." => "הקבצים נסרקים, נא להמתין.", diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index 3281d20a61..7d5e61b354 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Nedostaje privremena mapa", "Failed to write to disk" => "Neuspjelo pisanje na disk", "Files" => "Datoteke", +"Delete" => "Briši", +"generating ZIP-file, it may take some time." => "generiranje ZIP datoteke, ovo može potrajati.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nemoguće poslati datoteku jer je prazna ili je direktorij", +"Upload Error" => "Pogreška pri slanju", +"Pending" => "U tijeku", +"Upload cancelled." => "Slanje poništeno.", +"Invalid name, '/' is not allowed." => "Neispravan naziv, znak '/' nije dozvoljen.", "Size" => "Veličina", "Modified" => "Zadnja promjena", +"folder" => "mapa", +"folders" => "mape", +"file" => "datoteka", +"files" => "datoteke", "File handling" => "datoteka za rukovanje", "Maximum upload size" => "Maksimalna veličina prijenosa", "max. possible: " => "maksimalna moguća: ", @@ -26,7 +37,6 @@ "Name" => "Naziv", "Share" => "podjeli", "Download" => "Preuzmi", -"Delete" => "Briši", "Upload too large" => "Prijenos je preobiman", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju.", "Files are being scanned, please wait." => "Datoteke se skeniraju, molimo pričekajte.", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 41255cb409..22d3958516 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Hiányzik az ideiglenes könyvtár", "Failed to write to disk" => "Nem írható lemezre", "Files" => "Fájlok", +"Delete" => "Törlé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", +"Pending" => "Folyamatban", +"Upload cancelled." => "Feltöltés megszakítva", +"Invalid name, '/' is not allowed." => "Érvénytelen név, a '/' nem megengedett", "Size" => "Méret", "Modified" => "Módosítva", +"folder" => "mappa", +"folders" => "mappák", +"file" => "fájl", +"files" => "fájlok", "File handling" => "Fájlkezelés", "Maximum upload size" => "Maximális feltölthető fájlméret", "max. possible: " => "max. lehetséges", @@ -26,7 +37,6 @@ "Name" => "Név", "Share" => "Megosztás", "Download" => "Letöltés", -"Delete" => "Törlé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", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index 645eba48a1..f9205cb5f6 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -2,6 +2,7 @@ "The uploaded file was only partially uploaded" => "Le file incargate solmente esseva incargate partialmente", "No file was uploaded" => "Nulle file esseva incargate", "Files" => "Files", +"Delete" => "Deler", "Size" => "Dimension", "Modified" => "Modificate", "Maximum upload size" => "Dimension maxime de incargamento", @@ -12,6 +13,5 @@ "Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!", "Name" => "Nomine", "Download" => "Discargar", -"Delete" => "Deler", "Upload too large" => "Incargamento troppo longe" ); diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 1f9dc3290a..47ce6429c9 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -5,6 +5,7 @@ "Missing a temporary folder" => "Kehilangan folder temporer", "Failed to write to disk" => "Gagal menulis ke disk", "Files" => "Berkas", +"Delete" => "Hapus", "Size" => "Ukuran", "Modified" => "Dimodifikasi", "File handling" => "Penanganan berkas", @@ -24,7 +25,6 @@ "Name" => "Nama", "Share" => "Bagikan", "Download" => "Unduh", -"Delete" => "Hapus", "Upload too large" => "Unggahan terlalu besar", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Berkas yang anda coba unggah melebihi ukuran maksimum untuk pengunggahan berkas di server ini.", "Files are being scanned, please wait." => "Berkas sedang dipindai, silahkan tunggu.", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 0bf113eba1..35ee7a5fdd 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -9,7 +9,6 @@ "Files" => "File", "Unshare" => "Rimuovi condivisione", "Delete" => "Elimina", -"undo deletion" => "annulla l'eliminazione", "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", "Upload Error" => "Errore di invio", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index c04d0836df..231bbe3dcb 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "テンポラリフォルダが見つかりません", "Failed to write to disk" => "ディスクへの書き込みに失敗しました", "Files" => "ファイル", +"Delete" => "削除", +"generating ZIP-file, it may take some time." => "ZIPファイルを生成中です、しばらくお待ちください。", +"Unable to upload your file as it is a directory or has 0 bytes" => "アップロード使用としているファイルがディレクトリ、もしくはサイズが0バイトのため、アップロードできません。", +"Upload Error" => "アップロードエラー", +"Pending" => "保留", +"Upload cancelled." => "アップロードはキャンセルされました。", +"Invalid name, '/' is not allowed." => "無効な名前、'/' は使用できません。", "Size" => "サイズ", "Modified" => "更新日時", +"folder" => "フォルダ", +"folders" => "フォルダ", +"file" => "ファイル", +"files" => "ファイル", "File handling" => "ファイル操作", "Maximum upload size" => "最大アップロードサイズ", "max. possible: " => "最大容量: ", @@ -26,7 +37,6 @@ "Name" => "名前", "Share" => "共有", "Download" => "ダウンロード", -"Delete" => "削除", "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." => "ファイルをスキャンしています、しばらくお待ちください。", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 70575f0975..218dd0ea2d 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -7,8 +7,18 @@ "Missing a temporary folder" => "임시 폴더가 사라짐", "Failed to write to disk" => "디스크에 쓰지 못했습니다", "Files" => "파일", +"Delete" => "삭제", +"generating ZIP-file, it may take some time." => "ZIP파일 생성에 시간이 걸릴 수 있습니다.", +"Upload Error" => "업로드 에러", +"Pending" => "보류 중", +"Upload cancelled." => "업로드 취소.", +"Invalid name, '/' is not allowed." => "잘못된 이름, '/' 은 허용이 되지 않습니다.", "Size" => "크기", "Modified" => "수정됨", +"folder" => "폴더", +"folders" => "폴더", +"file" => "파일", +"files" => "파일", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", "max. possible: " => "최대. 가능한:", @@ -26,7 +36,6 @@ "Name" => "이름", "Share" => "공유", "Download" => "다운로드", -"Delete" => "삭제", "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." => "파일을 검색중입니다, 기다려 주십시오.", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 548ef4895d..f7a10fbc5c 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Et feelt en temporären Dossier", "Failed to write to disk" => "Konnt net op den Disk schreiwen", "Files" => "Dateien", +"Delete" => "Läschen", "Size" => "Gréisst", "Modified" => "Geännert", "File handling" => "Fichier handling", @@ -26,7 +27,6 @@ "Name" => "Numm", "Share" => "Share", "Download" => "Eroflueden", -"Delete" => "Läschen", "Upload too large" => "Upload ze grouss", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "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.", "Files are being scanned, please wait." => "Fichieren gi gescannt, war weg.", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index e876e743a4..14c7a1a6ff 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -7,9 +7,22 @@ "Missing a temporary folder" => "Nėra laikinojo katalogo", "Failed to write to disk" => "Nepavyko įrašyti į diską", "Files" => "Failai", +"Delete" => "Ištrinti", +"generating ZIP-file, it may take some time." => "kuriamas ZIP archyvas, tai gali užtrukti šiek tiek laiko.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas", +"Upload Error" => "Įkėlimo klaida", +"Upload cancelled." => "Įkėlimas atšauktas.", +"Invalid name, '/' is not allowed." => "Pavadinime negali būti naudojamas ženklas \"/\".", "Size" => "Dydis", "Modified" => "Pakeista", +"folder" => "katalogas", +"folders" => "katalogai", +"file" => "failas", +"files" => "failai", "Maximum upload size" => "Maksimalus failo dydis", +"Enable ZIP-download" => "Įjungti atsisiuntimą ZIP archyvu", +"0 is unlimited" => "0 yra neribotas", +"Maximum input size for ZIP files" => "Maksimalus ZIP archyvo failo dydis", "New" => "Naujas", "Text file" => "Teksto failas", "Folder" => "Katalogas", @@ -20,7 +33,8 @@ "Name" => "Pavadinimas", "Share" => "Dalintis", "Download" => "Atsisiųsti", -"Delete" => "Ištrinti", "Upload too large" => "Įkėlimui failas per didelis", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Bandomų įkelti failų dydis viršija maksimalų leidžiamą šiame serveryje" +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Bandomų įkelti failų dydis viršija maksimalų leidžiamą šiame serveryje", +"Files are being scanned, please wait." => "Skenuojami failai, prašome palaukti.", +"Current scanning" => "Šiuo metu skenuojama" ); diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index d3efa4d022..4e1eccff25 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Не постои привремена папка", "Failed to write to disk" => "Неуспеав да запишам на диск", "Files" => "Датотеки", +"Delete" => "Избриши", +"generating ZIP-file, it may take some time." => "Се генерира ZIP фајлот, ќе треба извесно време.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти", +"Upload Error" => "Грешка при преземање", +"Pending" => "Чека", +"Upload cancelled." => "Преземањето е прекинато.", +"Invalid name, '/' is not allowed." => "неисправно име, '/' не е дозволено.", "Size" => "Големина", "Modified" => "Променето", +"folder" => "фолдер", +"folders" => "фолдери", +"file" => "датотека", +"files" => "датотеки", "File handling" => "Ракување со датотеки", "Maximum upload size" => "Максимална големина за подигање", "max. possible: " => "макс. можно:", @@ -26,7 +37,6 @@ "Name" => "Име", "Share" => "Сподели", "Download" => "Преземи", -"Delete" => "Избриши", "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." => "Се скенираат датотеки, ве молам почекајте.", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index 1a1d72a01b..f0870c79ed 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -5,18 +5,40 @@ "The uploaded file was only partially uploaded" => "Sebahagian daripada fail telah dimuat naik. ", "No file was uploaded" => "Tiada fail yang dimuat naik", "Missing a temporary folder" => "Folder sementara hilang", +"Failed to write to disk" => "Gagal untuk disimpan", "Files" => "fail", +"Delete" => "Padam", +"generating ZIP-file, it may take some time." => "sedang menghasilkan fail ZIP, mungkin mengambil sedikit masa.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes", +"Upload Error" => "Muat naik ralat", +"Pending" => "Dalam proses", +"Upload cancelled." => "Muatnaik dibatalkan.", +"Invalid name, '/' is not allowed." => "penggunaa nama tidak sah, '/' tidak dibenarkan.", "Size" => "Saiz", "Modified" => "Dimodifikasi", +"folder" => "direktori", +"folders" => "direktori", +"file" => "fail", +"files" => "fail", +"File handling" => "Pengendalian fail", "Maximum upload size" => "Saiz maksimum muat naik", +"max. possible: " => "maksimum:", +"Needed for multi-file and folder downloads." => "Diperlukan untuk muatturun fail pelbagai ", +"Enable ZIP-download" => "Aktifkan muatturun ZIP", +"0 is unlimited" => "0 adalah tanpa had", +"Maximum input size for ZIP files" => "Saiz maksimum input untuk fail ZIP", "New" => "Baru", "Text file" => "Fail teks", "Folder" => "Folder", +"From url" => "Dari url", "Upload" => "Muat naik", +"Cancel upload" => "Batal muat naik", "Nothing in here. Upload something!" => "Tiada apa-apa di sini. Muat naik sesuatu!", "Name" => "Nama ", +"Share" => "Kongsi", "Download" => "Muat turun", -"Delete" => "Padam", "Upload too large" => "Muat naik terlalu besar", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server", +"Files are being scanned, please wait." => "Fail sedang diimbas, harap bersabar.", +"Current scanning" => "Imbasan semasa" ); diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 0f4cc33ae3..f02de12615 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -7,8 +7,15 @@ "Missing a temporary folder" => "Mangler en midlertidig mappe", "Failed to write to disk" => "Klarte ikke å skrive til disk", "Files" => "Filer", +"Delete" => "Slett", +"generating ZIP-file, it may take some time." => "opprettet ZIP-fil, dette kan ta litt tid", +"Pending" => "Ventende", "Size" => "Størrelse", "Modified" => "Endret", +"folder" => "mappe", +"folders" => "mapper", +"file" => "fil", +"files" => "filer", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimum opplastingsstørrelse", "max. possible: " => "max. mulige:", @@ -26,7 +33,6 @@ "Name" => "Navn", "Share" => "Del", "Download" => "Last ned", -"Delete" => "Slett", "Upload too large" => "Opplasting for stor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er for store for å laste opp til denne serveren.", "Files are being scanned, please wait." => "Skanner etter filer, vennligst vent.", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 119f6034f1..b093dc3ce1 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Een tijdelijke map mist", "Failed to write to disk" => "Schrijven naar schijf mislukt", "Files" => "Bestanden", +"Delete" => "Verwijder", +"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", +"Upload Error" => "Upload Fout", +"Pending" => "Wachten", +"Upload cancelled." => "Uploaden geannuleerd.", +"Invalid name, '/' is not allowed." => "Ongeldige naam, '/' is niet toegestaan.", "Size" => "Bestandsgrootte", "Modified" => "Laatst aangepast", +"folder" => "map", +"folders" => "mappen", +"file" => "bestand", +"files" => "bestanden", "File handling" => "Bestand", "Maximum upload size" => "Maximale bestandsgrootte voor uploads", "max. possible: " => "max. mogelijk: ", @@ -26,7 +37,6 @@ "Name" => "Naam", "Share" => "Delen", "Download" => "Download", -"Delete" => "Verwijder", "Upload too large" => "Bestanden te groot", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.", "Files are being scanned, please wait." => "Bestanden worden gescand, even wachten.", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index 002e85de5c..d6af730249 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -6,6 +6,7 @@ "No file was uploaded" => "Ingen filer vart lasta opp", "Missing a temporary folder" => "Manglar ei mellombels mappe", "Files" => "Filer", +"Delete" => "Slett", "Size" => "Storleik", "Modified" => "Endra", "Maximum upload size" => "Maksimal opplastingsstorleik", @@ -16,7 +17,6 @@ "Nothing in here. Upload something!" => "Ingenting her. Last noko opp!", "Name" => "Namn", "Download" => "Last ned", -"Delete" => "Slett", "Upload too large" => "For stor opplasting", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er større enn maksgrensa til denne tenaren." ); diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index bfdd04659d..67a29b4661 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Brak katalogu tymczasowego", "Failed to write to disk" => "Błąd zapisu na dysk", "Files" => "Pliki", +"Delete" => "Usuwa element", +"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", +"Upload Error" => "Błąd wczytywania", +"Pending" => "Oczekujące", +"Upload cancelled." => "Wczytywanie anulowane.", +"Invalid name, '/' is not allowed." => "Nieprawidłowa nazwa '/' jest niedozwolone.", "Size" => "Rozmiar", "Modified" => "Czas modyfikacji", +"folder" => "folder", +"folders" => "foldery", +"file" => "plik", +"files" => "pliki", "File handling" => "Zarządzanie plikami", "Maximum upload size" => "Maksymalny rozmiar wysyłanego pliku", "max. possible: " => "max. możliwych", @@ -26,7 +37,6 @@ "Name" => "Nazwa", "Share" => "Współdziel", "Download" => "Pobiera element", -"Delete" => "Usuwa element", "Upload too large" => "Wysyłany plik ma za duży rozmiar", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Pliki które próbujesz przesłać, przekraczają maksymalną, dopuszczalną wielkość.", "Files are being scanned, please wait." => "Skanowanie plików, proszę czekać.", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index b70406f517..b783c37cb0 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Pasta temporária não encontrada", "Failed to write to disk" => "Falha ao escrever no disco", "Files" => "Arquivos", +"Delete" => "Excluir", +"generating ZIP-file, it may take some time." => "gerando arquivo ZIP, isso pode levar um tempo.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes.", +"Upload Error" => "Erro de envio", +"Pending" => "Pendente", +"Upload cancelled." => "Envio cancelado.", +"Invalid name, '/' is not allowed." => "Nome inválido, '/' não é permitido.", "Size" => "Tamanho", "Modified" => "Modificado", +"folder" => "pasta", +"folders" => "pastas", +"file" => "arquivo", +"files" => "arquivos", "File handling" => "Tratamento de Arquivo", "Maximum upload size" => "Tamanho máximo para carregar", "max. possible: " => "max. possível:", @@ -26,7 +37,6 @@ "Name" => "Nome", "Share" => "Compartilhar", "Download" => "Baixar", -"Delete" => "Excluir", "Upload too large" => "Arquivo muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor.", "Files are being scanned, please wait." => "Arquivos sendo escaneados, por favor aguarde.", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index ac22430282..6e5ffce797 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Falta uma pasta temporária", "Failed to write to disk" => "Falhou a escrita no disco", "Files" => "Ficheiros", +"Delete" => "Apagar", +"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 é possivel fazer o upload do ficheiro devido a ser uma pasta ou ter 0 bytes", +"Upload Error" => "Erro no upload", +"Pending" => "Pendente", +"Upload cancelled." => "O upload foi cancelado.", +"Invalid name, '/' is not allowed." => "nome inválido, '/' não permitido.", "Size" => "Tamanho", "Modified" => "Modificado", +"folder" => "pasta", +"folders" => "pastas", +"file" => "ficheiro", +"files" => "ficheiros", "File handling" => "Manuseamento de ficheiros", "Maximum upload size" => "Tamanho máximo de envio", "max. possible: " => "max. possivel: ", @@ -26,7 +37,6 @@ "Name" => "Nome", "Share" => "Partilhar", "Download" => "Transferir", -"Delete" => "Apagar", "Upload too large" => "Envio muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que estás a tentar enviar excedem o tamanho máximo de envio neste servidor.", "Files are being scanned, please wait." => "Os ficheiros estão a ser analisados, por favor aguarde.", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index e6f0294fd3..58a6d2454f 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Lipsește un dosar temporar", "Failed to write to disk" => "Eroare la scriere pe disc", "Files" => "Fișiere", +"Delete" => "Șterge", "Size" => "Dimensiune", "Modified" => "Modificat", "File handling" => "Manipulare fișiere", @@ -26,7 +27,6 @@ "Name" => "Nume", "Share" => "Partajează", "Download" => "Descarcă", -"Delete" => "Șterge", "Upload too large" => "Fișierul încărcat este prea mare", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server.", "Files are being scanned, please wait." => "Fișierele sunt scanate, te rog așteptă.", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 45648012a1..99bb6df8f8 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Невозможно найти временную папку", "Failed to write to disk" => "Ошибка записи на диск", "Files" => "Файлы", +"Delete" => "Удалить", +"generating ZIP-file, it may take some time." => "создание ZIP-файла, это может занять некоторое время.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Не удается загрузить файл размером 0 байт в каталог", +"Upload Error" => "Ошибка загрузки", +"Pending" => "Ожидание", +"Upload cancelled." => "Загрузка отменена.", +"Invalid name, '/' is not allowed." => "Неверное имя, '/' не допускается.", "Size" => "Размер", "Modified" => "Изменен", +"folder" => "папка", +"folders" => "папки", +"file" => "файл", +"files" => "файлы", "File handling" => "Управление файлами", "Maximum upload size" => "Максимальный размер файла", "max. possible: " => "макс. возможно: ", @@ -26,7 +37,6 @@ "Name" => "Название", "Share" => "Поделиться", "Download" => "Скачать", -"Delete" => "Удалить", "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." => "Подождите, файлы сканируются.", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 2a7e84af6c..8a31c55032 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Chýbajúci dočasný priečinok", "Failed to write to disk" => "Zápis na disk sa nepodaril", "Files" => "Súbory", +"Delete" => "Odstrániť", +"generating ZIP-file, it may take some time." => "generujem ZIP-súbor, môže to chvíľu trvať.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov.", +"Upload Error" => "Chyba nahrávania", +"Pending" => "Čaká sa", +"Upload cancelled." => "Nahrávanie zrušené", +"Invalid name, '/' is not allowed." => "Chybný názov, \"/\" nie je povolené", "Size" => "Veľkosť", "Modified" => "Upravené", +"folder" => "priečinok", +"folders" => "priečinky", +"file" => "súbor", +"files" => "súbory", "File handling" => "Nastavenie správanie k súborom", "Maximum upload size" => "Maximálna veľkosť nahratia", "max. possible: " => "najväčšie možné:", @@ -26,7 +37,6 @@ "Name" => "Meno", "Share" => "Zdielať", "Download" => "Stiahnuť", -"Delete" => "Odstrániť", "Upload too large" => "Nahrávanie príliš veľké", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory ktoré sa snažíte nahrať presahujú maximálnu veľkosť pre nahratie súborov na tento server.", "Files are being scanned, please wait." => "Súbory sa práve prehľadávajú, prosím čakajte.", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 80df2b385f..a4f3b57888 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -9,7 +9,6 @@ "Files" => "Datoteke", "Unshare" => "Vzemi iz souporabe", "Delete" => "Izbriši", -"undo deletion" => "prekliči izbris", "generating ZIP-file, it may take some time." => "Ustvarjam ZIP datoteko. To lahko traja nekaj časa.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nalaganje ni mogoče, saj gre za mapo, ali pa ima datoteka velikost 0 bajtov.", "Upload Error" => "Napaka pri nalaganju", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 68c50d5282..84164e25c6 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -6,6 +6,7 @@ "No file was uploaded" => "Ниједан фајл није послат", "Missing a temporary folder" => "Недостаје привремена фасцикла", "Files" => "Фајлови", +"Delete" => "Обриши", "Size" => "Величина", "Modified" => "Задња измена", "Maximum upload size" => "Максимална величина пошиљке", @@ -16,7 +17,6 @@ "Nothing in here. Upload something!" => "Овде нема ничег. Пошаљите нешто!", "Name" => "Име", "Download" => "Преузми", -"Delete" => "Обриши", "Upload too large" => "Пошиљка је превелика", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Фајлови које желите да пошаљете превазилазе ограничење максималне величине пошиљке на овом серверу." ); diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index 63843fc8b5..96c567aec4 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -6,6 +6,7 @@ "No file was uploaded" => "Nijedan fajl nije poslat", "Missing a temporary folder" => "Nedostaje privremena fascikla", "Files" => "Fajlovi", +"Delete" => "Obriši", "Size" => "Veličina", "Modified" => "Zadnja izmena", "Maximum upload size" => "Maksimalna veličina pošiljke", @@ -13,7 +14,6 @@ "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", "Name" => "Ime", "Download" => "Preuzmi", -"Delete" => "Obriši", "Upload too large" => "Pošiljka je prevelika", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." ); diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index f508f22f3c..f3d936ff84 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -7,8 +7,20 @@ "Missing a temporary folder" => "Saknar en tillfällig mapp", "Failed to write to disk" => "Misslyckades spara till disk", "Files" => "Filer", +"Unshare" => "Sluta dela", +"Delete" => "Ta bort", +"generating ZIP-file, it may take some time." => "Gererar 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.", +"Upload Error" => "Uppladdningsfel", +"Pending" => "Väntar", +"Upload cancelled." => "Uppladdning avbruten.", +"Invalid name, '/' is not allowed." => "Ogiltigt namn, '/' är inte tillåten.", "Size" => "Storlek", "Modified" => "Ändrad", +"folder" => "mapp", +"folders" => "mappar", +"file" => "fil", +"files" => "filer", "File handling" => "Filhantering", "Maximum upload size" => "Maximal storlek att ladda upp", "max. possible: " => "max. möjligt:", @@ -26,7 +38,6 @@ "Name" => "Namn", "Share" => "Dela", "Download" => "Ladda ned", -"Delete" => "Ta bort", "Upload too large" => "För stor uppladdning", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern.", "Files are being scanned, please wait." => "Filerna skannas, var god vänta", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index ec538262e0..4299c31a45 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "แฟ้มเอกสารชั่วคราวเกิดการสูญหาย", "Failed to write to disk" => "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว", "Files" => "ไฟล์", +"Delete" => "ลบ", +"generating ZIP-file, it may take some time." => "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่", +"Unable to upload your file as it is a directory or has 0 bytes" => "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์", +"Upload Error" => "เกิดข้อผิดพลาดในการอัพโหลด", +"Pending" => "อยู่ระหว่างดำเนินการ", +"Upload cancelled." => "การอัพโหลดถูกยกเลิก", +"Invalid name, '/' is not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน", "Size" => "ขนาด", "Modified" => "ปรับปรุงล่าสุด", +"folder" => "โฟลเดอร์", +"folders" => "โฟลเดอร์", +"file" => "ไฟล์", +"files" => "ไฟล์", "File handling" => "การจัดกาไฟล์", "Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", "max. possible: " => "จำนวนสูงสุดที่สามารถทำได้: ", @@ -26,7 +37,6 @@ "Name" => "ชื่อ", "Share" => "แชร์", "Download" => "ดาวน์โหลด", -"Delete" => "ลบ", "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." => "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่.", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index b8de8249a1..0ecbcadb48 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "Geçici bir klasör eksik", "Failed to write to disk" => "Diske yazılamadı", "Files" => "Dosyalar", +"Delete" => "Sil", +"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ı", +"Pending" => "Bekliyor", +"Upload cancelled." => "Yükleme iptal edildi.", +"Invalid name, '/' is not allowed." => "Geçersiz isim, '/' işaretine izin verilmiyor.", "Size" => "Boyut", "Modified" => "Değiştirilme", +"folder" => "dizin", +"folders" => "dizinler", +"file" => "dosya", +"files" => "dosyalar", "File handling" => "Dosya taşıma", "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", @@ -26,7 +37,6 @@ "Name" => "Ad", "Share" => "Paylaş", "Download" => "İndir", -"Delete" => "Sil", "Upload too large" => "Yüklemeniz çok büyük", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor.", "Files are being scanned, please wait." => "Dosyalar taranıyor, lütfen bekleyin.", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 8b21cb26a3..743bc57fee 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -6,6 +6,7 @@ "No file was uploaded" => "Не відвантажено жодного файлу", "Missing a temporary folder" => "Відсутній тимчасовий каталог", "Files" => "Файли", +"Delete" => "Видалити", "Size" => "Розмір", "Modified" => "Змінено", "Maximum upload size" => "Максимальний розмір відвантажень", @@ -16,7 +17,6 @@ "Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!", "Name" => "Ім'я", "Download" => "Завантажити", -"Delete" => "Видалити", "Upload too large" => "Файл занадто великий", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." ); diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index c2e6541f2a..80693ba1d4 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -7,8 +7,19 @@ "Missing a temporary folder" => "缺少临时目录", "Failed to write to disk" => "写入磁盘失败", "Files" => "文件", +"Delete" => "删除", +"generating ZIP-file, it may take some time." => "正在生成 ZIP 文件,可能需要一些时间", +"Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节", +"Upload Error" => "上传错误", +"Pending" => "操作等待中", +"Upload cancelled." => "上传已取消", +"Invalid name, '/' is not allowed." => "非法的名称,不允许使用‘/’。", "Size" => "大小", "Modified" => "修改日期", +"folder" => "文件夹", +"folders" => "文件夹", +"file" => "文件", +"files" => "文件", "File handling" => "文件处理", "Maximum upload size" => "最大上传大小", "max. possible: " => "最大可能: ", @@ -26,7 +37,6 @@ "Name" => "名称", "Share" => "共享", "Download" => "下载", -"Delete" => "删除", "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." => "文件正在被扫描,请稍候。", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 91a1344ca3..bc8aa4ff89 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "遺失暫存資料夾", "Failed to write to disk" => "寫入硬碟失敗", "Files" => "檔案", +"Delete" => "刪除", "Size" => "大小", "Modified" => "修改", "File handling" => "檔案處理", @@ -26,7 +27,6 @@ "Name" => "名稱", "Share" => "分享", "Download" => "下載", -"Delete" => "刪除", "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." => "正在掃描檔案,請稍等。", diff --git a/apps/gallery/l10n/sv.php b/apps/gallery/l10n/sv.php index 520d271df1..b63a89d90f 100644 --- a/apps/gallery/l10n/sv.php +++ b/apps/gallery/l10n/sv.php @@ -1,9 +1,9 @@ "Bilder", -"Settings" => "Inställningar", -"Rescan" => "Sök igen", -"Stop" => "Stoppa", -"Share" => "Dela", +"Share gallery" => "Dela galleri", +"Error: " => "Fel:", +"Internal error" => "Internt fel", +"Slideshow" => "Bildspel", "Back" => "Tillbaka", "Remove confirmation" => "Vill du säkert ta bort", "Do you want to remove album" => "Vill du ta bort albumet", diff --git a/core/l10n/de.php b/core/l10n/de.php index 9fcd5c8496..549f184c26 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -2,36 +2,54 @@ "Application name not provided." => "Applikationsname nicht angegeben", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", -"Owncloud password reset" => "ownCloud Passwort zurücksetzen", -"ownCloud password reset" => "ownCloud Passwort zurücksetzen", +"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", +"January" => "Januar", +"February" => "Februar", +"March" => "März", +"April" => "April", +"May" => "Mai", +"June" => "Juni", +"July" => "Juli", +"August" => "August", +"September" => "September", +"October" => "Oktober", +"November" => "November", +"December" => "Dezember", +"Cancel" => "Abbrechen", +"No" => "Nein", +"Yes" => "Ja", +"Ok" => "OK", +"No categories selected for deletion." => "Keine Kategorien zum Löschen angegeben.", +"Error" => "Fehler", +"ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutze folgenden Link, um dein Passwort zurückzusetzen: {link}", -"You will receive a link to reset your password via Email." => "Sie erhalten einen Link, um Ihr Passwort per E-Mail zurückzusetzen.", +"You will receive a link to reset your password via Email." => "Du erhälst einen Link, um dein Passwort per E-Mail zurückzusetzen.", "Requested" => "Angefragt", "Login failed!" => "Login fehlgeschlagen!", -"Username" => "Nutzername", +"Username" => "Benutzername", "Request reset" => "Anfrage zurückgesetzt", -"Your password was reset" => "Ihr Passwort wurde zurückgesetzt.", +"Your password was reset" => "Dein Passwort wurde zurückgesetzt.", "To login page" => "Zur Login-Seite", "New password" => "Neues Passwort", "Reset password" => "Passwort zurücksetzen", "Personal" => "Persönlich", -"Users" => "Nutzer", +"Users" => "Benutzer", "Apps" => "Anwendungen", -"Admin" => "Verwaltung", +"Admin" => "Admin", "Help" => "Hilfe", "Access forbidden" => "Zugang verboten", "Cloud not found" => "Cloud nicht verfügbar", "Edit categories" => "Kategorien ändern", "Add" => "Hinzufügen", -"Create an admin account" => "Admin-Konto anlegen", +"Create an admin account" => "Administrator-Konto anlegen", "Password" => "Passwort", "Advanced" => "Erweitert", "Data folder" => "Datenverzeichnis", "Configure the database" => "Datenbank einrichten", "will be used" => "wird genutzt", -"Database user" => "Datenbanknutzer", -"Database password" => "Datenbankpasswort", -"Database name" => "Datenbankname", +"Database user" => "Datenbank-Benutzer", +"Database password" => "Datenbank-Passwort", +"Database name" => "Datenbank-Name", "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "web services under your control", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index fd53952184..7dcb0d7aac 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -2,7 +2,25 @@ "Application name not provided." => "Programnamn har inte angetts", "No category to add?" => "Ingen kategori att lägga till?", "This category already exists: " => "Denna kategori finns redan:", -"Owncloud password reset" => "Owncloud lösenordsåterställning", +"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", +"January" => "Januari", +"February" => "Februari", +"March" => "Mars", +"April" => "April", +"May" => "Maj", +"June" => "Juni", +"July" => "Juli", +"August" => "Augusti", +"September" => "September", +"October" => "Oktober", +"November" => "November", +"December" => "December", +"Cancel" => "Avbryt", +"No" => "Nej", +"Yes" => "Ja", +"Ok" => "Ok", +"No categories selected for deletion." => "Inga kategorier valda för radering.", +"Error" => "Fel", "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/af/files.po b/l10n/af/files.po index 142439d4d9..c6bfa607c9 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.po @@ -7,43 +7,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Afrikaans (http://www.transifex.net/projects/p/owncloud/language/af/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "" @@ -51,8 +51,20 @@ msgstr "" msgid "Files" msgstr "" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -79,27 +91,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -171,10 +183,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:56 -msgid "Delete" -msgstr "" - #: templates/index.php:64 msgid "Upload too large" msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index eaf684ef80..318a459be4 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,43 +8,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Arabic (http://www.transifex.net/projects/p/owncloud/language/ar/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "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:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما upload_max_filesize يسمح به في ملف php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "" @@ -52,8 +52,20 @@ msgstr "" msgid "Files" msgstr "الملفات" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "محذوف" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -80,27 +92,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "حجم" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "معدل" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -172,10 +184,6 @@ msgstr "" msgid "Download" msgstr "تحميل" -#: templates/index.php:56 -msgid "Delete" -msgstr "محذوف" - #: templates/index.php:64 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po index 3b87221937..ddc698c369 100644 --- a/l10n/ar_SA/files.po +++ b/l10n/ar_SA/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-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" "Last-Translator: owncloud_robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,11 @@ msgid "Delete" msgstr "" #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index e81c2f2a9c..c87744a21d 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -8,43 +8,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/language/bg_BG/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \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" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Файлът е качен успешно" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Файлът който се опитвате да качите, надвишава зададените стойности в upload_max_filesize в PHP.INI" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Файлът е качен частично" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Фахлът не бе качен" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Липсва временната папка" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "" @@ -52,8 +52,20 @@ msgstr "" msgid "Files" msgstr "Файлове" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Изтриване" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -80,27 +92,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Размер" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Променено" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -172,10 +184,6 @@ msgstr "" msgid "Download" msgstr "Изтегляне" -#: templates/index.php:56 -msgid "Delete" -msgstr "Изтриване" - #: templates/index.php:64 msgid "Upload too large" msgstr "Файлът е прекалено голям" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index c66676acba..538b9da7fe 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 07:07+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" @@ -62,8 +62,12 @@ msgid "Delete" msgstr "Suprimeix" #: js/filelist.js:186 -msgid "undo deletion" -msgstr "desfés l'eliminació" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" +msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 23b3d0b036..8ba79199e8 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.net/projects/p/owncloud/language/cs_CZ/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Odeslaný soubor přesáhl velikostí parametr upload_max_filesize v php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesáhl velikostí parametr MAX_FILE_SIZE specifikovaný v HTML formuláři" -#: ajax/upload.php:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Soubor nebyl odeslán" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Chybí adresář pro sočasné soubory" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Zápis na disk se nezdařil" @@ -53,57 +53,69 @@ msgstr "Zápis na disk se nezdařil" msgid "Files" msgstr "Soubory" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Vymazat" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "generuji ZIP soubor, může to chvíli trvat" #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nemohu nahrát váš soubor neboť to je adresář a nebo má nulovou délku." #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Chyba při nahrávání" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Očekává se" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Nahrávání zrušeno" #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Špatné jméno, znak '/' není povolen" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Velikost" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Změněno" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "adresář" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "adresáře" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "soubor" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "soubory" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +185,6 @@ msgstr "Sdílet" msgid "Download" msgstr "Stáhnout" -#: templates/index.php:56 -msgid "Delete" -msgstr "Vymazat" - #: templates/index.php:64 msgid "Upload too large" msgstr "Příliš velký soubor" diff --git a/l10n/da/files.po b/l10n/da/files.po index d7990d5d94..fdf9ce4e67 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -6,47 +6,48 @@ # Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. # Pascal d'Hermilly , 2011. # 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-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/language/da/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Der er ingen fejl, filen blev uploadet med success" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Den uploadede fil overskrider upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Den uploadede file blev kun delvist uploadet" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Ingen fil blev uploadet" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." @@ -54,57 +55,69 @@ msgstr "Fejl ved skrivning til disk." msgid "Files" msgstr "Filer" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Slet" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "genererer ZIP-fil, det kan tage lidt tid." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Fejl ved upload" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Afventer" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Upload afbrudt." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Ugyldigt navn, '/' er ikke tilladt." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Størrelse" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Ændret" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "mappe" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "mapper" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "fil" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "filer" #: templates/admin.php:5 msgid "File handling" @@ -174,10 +187,6 @@ msgstr "Del" msgid "Download" msgstr "Download" -#: templates/index.php:56 -msgid "Delete" -msgstr "Slet" - #: templates/index.php:64 msgid "Upload too large" msgstr "Upload for stor" diff --git a/l10n/de/core.po b/l10n/de/core.po index 2d88b3ef59..9d8ff1066c 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -8,14 +8,17 @@ # , 2011. # Jan-Christoph Borchardt , 2011. # Marcel Kühlhorn , 2012. +# , 2012. +# Phi Lieb <>, 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: German (http://www.transifex.net/projects/p/owncloud/language/de/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-29 18:47+0000\n" +"Last-Translator: Phi Lieb <>\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" "Content-Transfer-Encoding: 8bit\n" @@ -36,87 +39,83 @@ msgstr "Kategorie existiert bereits:" #: js/jquery-ui-1.8.16.custom.min.js:511 msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" +msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:520 +#: js/js.js:519 msgid "January" -msgstr "" +msgstr "Januar" -#: js/js.js:520 +#: js/js.js:519 msgid "February" -msgstr "" +msgstr "Februar" -#: js/js.js:520 +#: js/js.js:519 msgid "March" -msgstr "" +msgstr "März" -#: js/js.js:520 +#: js/js.js:519 msgid "April" -msgstr "" +msgstr "April" -#: js/js.js:520 +#: js/js.js:519 msgid "May" -msgstr "" +msgstr "Mai" + +#: js/js.js:519 +msgid "June" +msgstr "Juni" #: js/js.js:520 -msgid "June" -msgstr "" - -#: js/js.js:521 msgid "July" -msgstr "" +msgstr "Juli" -#: js/js.js:521 +#: js/js.js:520 msgid "August" -msgstr "" +msgstr "August" -#: js/js.js:521 +#: js/js.js:520 msgid "September" -msgstr "" +msgstr "September" -#: js/js.js:521 +#: js/js.js:520 msgid "October" -msgstr "" +msgstr "Oktober" -#: js/js.js:521 +#: js/js.js:520 msgid "November" -msgstr "" +msgstr "November" -#: js/js.js:521 +#: js/js.js:520 msgid "December" -msgstr "" +msgstr "Dezember" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Abbrechen" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Nein" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Ja" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "OK" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Keine Kategorien zum Löschen angegeben." #: js/oc-vcategories.js:68 msgid "Error" -msgstr "" +msgstr "Fehler" #: lostpassword/index.php:26 -msgid "Owncloud password reset" -msgstr "ownCloud Passwort zurücksetzen" - -#: lostpassword/index.php:27 msgid "ownCloud password reset" -msgstr "ownCloud Passwort zurücksetzen" +msgstr "ownCloud-Passwort zurücksetzen" #: lostpassword/templates/email.php:1 msgid "Use the following link to reset your password: {link}" @@ -124,7 +123,7 @@ msgstr "Nutze folgenden Link, um dein Passwort zurückzusetzen: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Sie erhalten einen Link, um Ihr Passwort per E-Mail zurückzusetzen." +msgstr "Du erhälst einen Link, um dein Passwort per E-Mail zurückzusetzen." #: lostpassword/templates/lostpassword.php:5 msgid "Requested" @@ -137,7 +136,7 @@ msgstr "Login fehlgeschlagen!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:25 #: templates/login.php:9 msgid "Username" -msgstr "Nutzername" +msgstr "Benutzername" #: lostpassword/templates/lostpassword.php:15 msgid "Request reset" @@ -145,7 +144,7 @@ msgstr "Anfrage zurückgesetzt" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Ihr Passwort wurde zurückgesetzt." +msgstr "Dein Passwort wurde zurückgesetzt." #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -165,7 +164,7 @@ msgstr "Persönlich" #: strings.php:6 msgid "Users" -msgstr "Nutzer" +msgstr "Benutzer" #: strings.php:7 msgid "Apps" @@ -173,7 +172,7 @@ msgstr "Anwendungen" #: strings.php:8 msgid "Admin" -msgstr "Verwaltung" +msgstr "Admin" #: strings.php:9 msgid "Help" @@ -197,7 +196,7 @@ msgstr "Hinzufügen" #: templates/installation.php:23 msgid "Create an admin account" -msgstr "Admin-Konto anlegen" +msgstr "Administrator-Konto anlegen" #: templates/installation.php:29 templates/login.php:13 msgid "Password" @@ -222,15 +221,15 @@ msgstr "wird genutzt" #: templates/installation.php:82 msgid "Database user" -msgstr "Datenbanknutzer" +msgstr "Datenbank-Benutzer" #: templates/installation.php:86 msgid "Database password" -msgstr "Datenbankpasswort" +msgstr "Datenbank-Passwort" #: templates/installation.php:90 msgid "Database name" -msgstr "Datenbankname" +msgstr "Datenbank-Name" #: templates/installation.php:96 msgid "Database host" @@ -244,11 +243,11 @@ msgstr "Installation abschließen" msgid "web services under your control" msgstr "web services under your control" -#: templates/layout.user.php:41 +#: templates/layout.user.php:49 msgid "Log out" msgstr "Abmelden" -#: templates/layout.user.php:53 templates/layout.user.php:54 +#: templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Einstellungen" diff --git a/l10n/de/files.po b/l10n/de/files.po index b7f6cb08c3..61d7972e88 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,106 +9,119 @@ # Marcel Kühlhorn , 2012. # Michael Krell , 2012. # , 2012. +# , 2012. # Thomas Müller <>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: German (http://www.transifex.net/projects/p/owncloud/language/de/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Datei fehlerfrei hochgeladen." -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Die Größe der hochzuladenden Datei überschreitet die upload_max_filesize-Richtlinie in php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Temporärer Ordner fehlt." -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf Festplatte" #: appinfo/app.php:6 msgid "Files" -msgstr "Files" +msgstr "Dateien" + +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "Nicht mehr teilen" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Löschen" #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Datei kann nicht hochgeladen werden da sie ein Verzeichniss ist oder 0 bytes hat." #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Fehler beim Hochladen" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Anstehend" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Hochladen abgebrochen." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Ungültiger Name, \"/\" ist nicht erlaubt." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Größe" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "Ordner" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "Ordner" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "Datei" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "Dateien" #: templates/admin.php:5 msgid "File handling" @@ -116,7 +129,7 @@ msgstr "Dateibehandlung" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximum upload size" +msgstr "Maximale Upload-Größe" #: templates/admin.php:7 msgid "max. possible: " @@ -178,10 +191,6 @@ msgstr "Teilen" msgid "Download" msgstr "Herunterladen" -#: templates/index.php:56 -msgid "Delete" -msgstr "Löschen" - #: templates/index.php:64 msgid "Upload too large" msgstr "Upload zu groß" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index cb3103a3eb..b487d24a1d 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Phi Lieb <>, 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-29 02:04+0200\n" -"PO-Revision-Date: 2012-07-28 14:29+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-30 02:03+0200\n" +"PO-Revision-Date: 2012-07-29 16:32+0000\n" +"Last-Translator: Phi Lieb <>\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" @@ -40,74 +41,74 @@ msgstr "Apps" #: app.php:313 msgid "Admin" -msgstr "" +msgstr "Administrator" #: files.php:245 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP-Download ist deaktiviert." #: files.php:246 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Die Dateien müssen einzeln heruntergeladen werden." #: files.php:246 files.php:271 msgid "Back to Files" -msgstr "" +msgstr "Zurück zu \"Dateien\"" #: files.php:270 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Die gewählten Dateien sind zu groß, um eine zip-Datei zu generieren." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Anwendung ist nicht aktiviert" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Authentifizierungs-Fehler" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token abgelaufen. Bitte Seite neuladen." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "vor wenigen Sekunden" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "Vor einer Minute" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "Vor %d Minuten" #: template.php:91 msgid "today" -msgstr "" +msgstr "Heute" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "Gestern" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "Vor %d Tagen" #: template.php:94 msgid "last month" -msgstr "" +msgstr "Letzten Monat" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "Vor Monaten" #: template.php:96 msgid "last year" -msgstr "" +msgstr "Letztes Jahr" #: template.php:97 msgid "years ago" -msgstr "" +msgstr "Vor Jahren" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index c996adc2c5..92690194d8 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-29 02:04+0200\n" -"PO-Revision-Date: 2012-07-28 20:42+0000\n" +"POT-Creation-Date: 2012-07-30 02:03+0200\n" +"PO-Revision-Date: 2012-07-29 18:48+0000\n" "Last-Translator: Phi Lieb <>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "Log" #: templates/admin.php:55 msgid "More" -msgstr "mehr" +msgstr "Mehr" #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/el/files.po b/l10n/el/files.po index abadb91274..77eeadf487 100644 --- a/l10n/el/files.po +++ b/l10n/el/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 08:08+0000\n" -"Last-Translator: Marios Bekatoros <>\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" @@ -63,8 +63,12 @@ msgid "Delete" msgstr "Διαγραφή" #: js/filelist.js:186 -msgid "undo deletion" -msgstr "αναίρεση διαγραφής" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" +msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 70c2cce272..fa37219fcc 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,43 +8,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Esperanto (http://www.transifex.net/projects/p/owncloud/language/eo/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese" -#: ajax/upload.php:20 +#: ajax/upload.php:21 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:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas laregulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "La alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Neniu dosiero estas alŝutita" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Mankas tempa dosierujo" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" @@ -52,57 +52,69 @@ msgstr "Malsukcesis skribo al disko" msgid "Files" msgstr "Dosieroj" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Forigi" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo" #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Alŝuta eraro" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Traktotaj" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "La alŝuto nuliĝis." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Nevalida nomo, “/” ne estas permesata." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Grando" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Modifita" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "dosierujo" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "dosierujoj" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "dosiero" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "dosieroj" #: templates/admin.php:5 msgid "File handling" @@ -172,10 +184,6 @@ msgstr "Kunhavigi" msgid "Download" msgstr "Elŝuti" -#: templates/index.php:56 -msgid "Delete" -msgstr "Forigi" - #: templates/index.php:64 msgid "Upload too large" msgstr "Elŝuto tro larĝa" diff --git a/l10n/es/bookmarks.po b/l10n/es/bookmarks.po index 7cd3e5bf34..d00d8c372b 100644 --- a/l10n/es/bookmarks.po +++ b/l10n/es/bookmarks.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-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-29 04:30+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" @@ -19,42 +20,42 @@ msgstr "" #: appinfo/app.php:14 msgid "Bookmarks" -msgstr "" +msgstr "Marcadores" #: bookmarksHelper.php:99 msgid "unnamed" -msgstr "" +msgstr "sin nombre" #: templates/bookmarklet.php:5 msgid "" "Drag this to your browser bookmarks and click it, when you want to bookmark " "a webpage quickly:" -msgstr "" +msgstr "Arrastra desde aquí a los marcadores de tu navegador, y haz clic cuando quieras marcar una página web rápidamente:" #: templates/bookmarklet.php:7 msgid "Read later" -msgstr "" +msgstr "Leer después" #: templates/list.php:13 msgid "Address" -msgstr "" +msgstr "Dirección" #: templates/list.php:14 msgid "Title" -msgstr "" +msgstr "Título" #: templates/list.php:15 msgid "Tags" -msgstr "" +msgstr "Etiquetas" #: templates/list.php:16 msgid "Save bookmark" -msgstr "" +msgstr "Guardar marcador" #: templates/list.php:22 msgid "You have no bookmarks" -msgstr "" +msgstr "No tienes marcadores" #: templates/settings.php:11 msgid "Bookmarklet
" -msgstr "" +msgstr "Bookmarklet
" diff --git a/l10n/es/files.po b/l10n/es/files.po index ccd3fc76a0..6de4ca7f56 100644 --- a/l10n/es/files.po +++ b/l10n/es/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-07-26 02:01+0200\n" -"PO-Revision-Date: 2012-07-25 23:05+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" @@ -63,8 +63,12 @@ msgid "Delete" msgstr "Eliminado" #: js/filelist.js:186 -msgid "undo deletion" -msgstr "deshacer la eliminación" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" +msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 194013f4b0..e5e6215db3 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 00:02+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-30 02:03+0200\n" +"PO-Revision-Date: 2012-07-29 04:34+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" @@ -42,7 +42,7 @@ msgstr "Solicitud no válida" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Error de autenticación" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -210,7 +210,7 @@ msgstr "Otro" #: templates/users.php:80 msgid "SubAdmin" -msgstr "" +msgstr "SubAdmin" #: templates/users.php:82 msgid "Quota" @@ -218,7 +218,7 @@ msgstr "Cuota" #: templates/users.php:112 msgid "SubAdmin for ..." -msgstr "" +msgstr "SubAdmin para ..." #: templates/users.php:145 msgid "Delete" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 8e2e2f4090..99d68cbc01 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -8,43 +8,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/language/et_EE/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi viga pole, fail on üles laetud" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Üles laetud faili suurus ületab php.ini määratud upload_max_filesize suuruse" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" @@ -52,57 +52,69 @@ msgstr "Kettale kirjutamine ebaõnnestus" msgid "Files" msgstr "Failid" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Kustuta" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "ZIP-faili loomine, see võib veidi aega võtta." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Üleslaadimise viga" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Ootel" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Üleslaadimine tühistati." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Vigane nimi, '/' pole lubatud." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Suurus" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Muudetud" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "kaust" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "kausta" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "fail" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "faili" #: templates/admin.php:5 msgid "File handling" @@ -172,10 +184,6 @@ msgstr "Jaga" msgid "Download" msgstr "Lae alla" -#: templates/index.php:56 -msgid "Delete" -msgstr "Kustuta" - #: templates/index.php:64 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 28b55a998c..e4da710339 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Basque (http://www.transifex.net/projects/p/owncloud/language/eu/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Ez da arazorik izan, fitxategia ongi igo da" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Igotako fitxategiaren tamaina php.ini-ko upload_max_filesize direktiban adierazitakoa baino handiagoa da" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Aldi baterako karpeta falta da" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" @@ -53,57 +53,69 @@ msgstr "Errore bat izan da diskoan idazterakoan" msgid "Files" msgstr "Fitxategiak" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Ezabatu" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake" #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Igotzean errore bat suertatu da" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Zain" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Igoera ezeztatuta" #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Baliogabeko izena, '/' ezin da erabili. " -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Tamaina" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "karpeta" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "Karpetak" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "fitxategia" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "fitxategiak" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +185,6 @@ msgstr "Elkarbanatu" msgid "Download" msgstr "Deskargatu" -#: templates/index.php:56 -msgid "Delete" -msgstr "Ezabatu" - #: templates/index.php:64 msgid "Upload too large" msgstr "Igotakoa handiegia da" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index b58f617676..ba78e2c9ca 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,43 +8,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Persian (http://www.transifex.net/projects/p/owncloud/language/fa/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "حداکثر حجم تعیین شده برای بارگذاری در php.ini قابل ویرایش است" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "مقدار کمی از فایل بارگذاری شده" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "هیچ فایلی بارگذاری نشده" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده است" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" @@ -52,57 +52,69 @@ msgstr "نوشتن بر روی دیسک سخت ناموفق بود" msgid "Files" msgstr "فایل ها" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "پاک کردن" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد" #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "خطا در بار گذاری" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "در انتظار" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "بار گذاری لغو شد" #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "نام نامناسب '/' غیرفعال است" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "اندازه" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "پوشه" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "پوشه ها" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "پرونده" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "پرونده ها" #: templates/admin.php:5 msgid "File handling" @@ -172,10 +184,6 @@ msgstr "به اشتراک گذاری" msgid "Download" msgstr "بارگیری" -#: templates/index.php:56 -msgid "Delete" -msgstr "پاک کردن" - #: templates/index.php:64 msgid "Upload too large" msgstr "حجم بارگذاری بسیار زیاد است" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 6a784e5631..59576c1e40 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 10:42+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" @@ -64,8 +64,12 @@ msgid "Delete" msgstr "Poista" #: js/filelist.js:186 -msgid "undo deletion" -msgstr "kumoa poisto" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" +msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index cc037ee774..13258b290f 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 09:03+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" @@ -64,8 +64,12 @@ msgid "Delete" msgstr "Supprimer" #: js/filelist.js:186 -msgid "undo deletion" -msgstr "Annuler la suppression" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" +msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 971843534c..adf4d9a4f8 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Galician (http://www.transifex.net/projects/p/owncloud/language/gl/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Non hai erros, o ficheiro enviouse correctamente" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "O ficheiro enviado supera a directiva upload_max_filesize no php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado foi só parcialmente enviado" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Falta un cartafol temporal" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Erro ao escribir no disco" @@ -53,57 +53,69 @@ msgstr "Erro ao escribir no disco" msgid "Files" msgstr "Ficheiros" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Eliminar" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "xerando ficheiro ZIP, pode levar un anaco." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Erro na subida" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Pendentes" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Subida cancelada." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Nome non válido, '/' non está permitido." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Tamaño" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "cartafol" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "cartafoles" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "ficheiro" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "ficheiros" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +185,6 @@ msgstr "Compartir" msgid "Download" msgstr "Descargar" -#: templates/index.php:56 -msgid "Delete" -msgstr "Eliminar" - #: templates/index.php:64 msgid "Upload too large" msgstr "Envío demasiado grande" diff --git a/l10n/he/files.po b/l10n/he/files.po index 12ed075b22..a690a80bc3 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -3,49 +3,50 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2011. # Yaron Shahrabani , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Hebrew (http://www.transifex.net/projects/p/owncloud/language/he/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "לא אירעה תקלה, הקבצים הועלו בהצלחה" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "הקובץ שהועלה חרג מההנחיה upload_max_filesize בקובץ php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ שהועלה הועלה בצורה חלקית" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "לא הועלו קבצים" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "תיקייה זמנית חסרה" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" @@ -53,57 +54,69 @@ msgstr "הכתיבה לכונן נכשלה" msgid "Files" msgstr "קבצים" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "מחיקה" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "יוצר קובץ ZIP, אנא המתן." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "שגיאת העלאה" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "ממתין" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "ההעלאה בוטלה." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "שם לא חוקי, '/' אסור לשימוש." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "גודל" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "תקיה" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "תקיות" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "קובץ" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "קבצים" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +186,6 @@ msgstr "שיתוף" msgid "Download" msgstr "הורדה" -#: templates/index.php:56 -msgid "Delete" -msgstr "מחיקה" - #: templates/index.php:64 msgid "Upload too large" msgstr "העלאה גדולה מידי" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index e9ae4069b9..f94c9ee4bc 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -3,49 +3,49 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Davor Kustec , 2011. +# Davor Kustec , 2011, 2012. # Thomas Silađi , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Croatian (http://www.transifex.net/projects/p/owncloud/language/hr/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je poslana uspješno i bez pogrešaka" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Poslana datoteka izlazi iz okvira upload_max_size direktive postavljene u php.ini konfiguracijskoj datoteci" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je poslana samo djelomično" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Ni jedna datoteka nije poslana" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Nedostaje privremena mapa" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" @@ -53,57 +53,69 @@ msgstr "Neuspjelo pisanje na disk" msgid "Files" msgstr "Datoteke" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Briši" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "generiranje ZIP datoteke, ovo može potrajati." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Pogreška pri slanju" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "U tijeku" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Slanje poništeno." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Neispravan naziv, znak '/' nije dozvoljen." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Veličina" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "mapa" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "mape" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "datoteka" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "datoteke" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +185,6 @@ msgstr "podjeli" msgid "Download" msgstr "Preuzmi" -#: templates/index.php:56 -msgid "Delete" -msgstr "Briši" - #: templates/index.php:64 msgid "Upload too large" msgstr "Prijenos je preobiman" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 12a4d449b2..a7826f3be5 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -10,43 +10,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.net/projects/p/owncloud/language/hu_HU/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Nincs hiba, a fájl sikeresen feltöltve." -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "A feltöltött file meghaladja az upload_max_filesize direktívát a php.ini-ben." -#: ajax/upload.php:21 +#: ajax/upload.php:22 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." -#: ajax/upload.php:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájl csak részlegesen van feltöltve." -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Nem lett fájl feltöltve." -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Hiányzik az ideiglenes könyvtár" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Nem írható lemezre" @@ -54,57 +54,69 @@ msgstr "Nem írható lemezre" msgid "Files" msgstr "Fájlok" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Törlés" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "ZIP-fájl generálása, ez eltarthat egy ideig." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Feltöltési hiba" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Folyamatban" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Feltöltés megszakítva" #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Érvénytelen név, a '/' nem megengedett" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Méret" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Módosítva" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "mappa" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "mappák" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "fájl" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "fájlok" #: templates/admin.php:5 msgid "File handling" @@ -174,10 +186,6 @@ msgstr "Megosztás" msgid "Download" msgstr "Letöltés" -#: templates/index.php:56 -msgid "Delete" -msgstr "Törlés" - #: templates/index.php:64 msgid "Upload too large" msgstr "Feltöltés túl nagy" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index e0a959181a..a89c7b0efe 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,43 +7,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Armenian (http://www.transifex.net/projects/p/owncloud/language/hy/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "" @@ -51,8 +51,20 @@ msgstr "" msgid "Files" msgstr "" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -79,27 +91,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -171,10 +183,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:56 -msgid "Delete" -msgstr "" - #: templates/index.php:64 msgid "Upload too large" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 6d9a5ffc3f..ac35031953 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Interlingua (http://www.transifex.net/projects/p/owncloud/language/ia/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Nulle file esseva incargate" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "" @@ -53,8 +53,20 @@ msgstr "" msgid "Files" msgstr "Files" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Deler" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -81,27 +93,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Dimension" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Modificate" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -173,10 +185,6 @@ msgstr "" msgid "Download" msgstr "Discargar" -#: templates/index.php:56 -msgid "Delete" -msgstr "Deler" - #: templates/index.php:64 msgid "Upload too large" msgstr "Incargamento troppo longe" diff --git a/l10n/id/files.po b/l10n/id/files.po index 8e1f3da575..266e210ae2 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/language/id/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Kehilangan folder temporer" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" @@ -53,8 +53,20 @@ msgstr "Gagal menulis ke disk" msgid "Files" msgstr "Berkas" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Hapus" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -81,27 +93,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Ukuran" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -173,10 +185,6 @@ msgstr "Bagikan" msgid "Download" msgstr "Unduh" -#: templates/index.php:56 -msgid "Delete" -msgstr "Hapus" - #: templates/index.php:64 msgid "Upload too large" msgstr "Unggahan terlalu besar" diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po index 6fc758f596..80f24e91fe 100644 --- a/l10n/id_ID/files.po +++ b/l10n/id_ID/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-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" "Last-Translator: owncloud_robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,11 @@ msgid "Delete" msgstr "" #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 diff --git a/l10n/it/files.po b/l10n/it/files.po index 196985d5f8..ae00b01ac9 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-07-26 02:01+0200\n" -"PO-Revision-Date: 2012-07-25 20:35+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" @@ -64,8 +64,12 @@ msgid "Delete" msgstr "Elimina" #: js/filelist.js:186 -msgid "undo deletion" -msgstr "annulla l'eliminazione" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" +msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 6e34a2dc60..9be02066db 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -8,43 +8,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Japanese (Japan) (http://www.transifex.net/projects/p/owncloud/language/ja_JP/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "アップロードされたファイルはphp.iniのupload_max_filesizeに設定されたサイズを超えています" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "ファイルは一部分しかアップロードされませんでした" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "テンポラリフォルダが見つかりません" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" @@ -52,57 +52,69 @@ msgstr "ディスクへの書き込みに失敗しました" msgid "Files" msgstr "ファイル" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "削除" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "ZIPファイルを生成中です、しばらくお待ちください。" #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "アップロード使用としているファイルがディレクトリ、もしくはサイズが0バイトのため、アップロードできません。" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "アップロードエラー" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "保留" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "アップロードはキャンセルされました。" #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "無効な名前、'/' は使用できません。" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "サイズ" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "更新日時" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "フォルダ" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "フォルダ" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "ファイル" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "ファイル" #: templates/admin.php:5 msgid "File handling" @@ -172,10 +184,6 @@ msgstr "共有" msgid "Download" msgstr "ダウンロード" -#: templates/index.php:56 -msgid "Delete" -msgstr "削除" - #: templates/index.php:64 msgid "Upload too large" msgstr "ファイルサイズが大きすぎます" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 07ce95f06a..ff96bf8195 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Korean (http://www.transifex.net/projects/p/owncloud/language/ko/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "업로드에 성공하였습니다." -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "업로드한 파일이 php.ini에서 지정한 upload_max_filesize보다 더 큼" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "파일이 부분적으로 업로드됨" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "업로드된 파일 없음" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "임시 폴더가 사라짐" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" @@ -53,13 +53,25 @@ msgstr "디스크에 쓰지 못했습니다" msgid "Files" msgstr "파일" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "삭제" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "ZIP파일 생성에 시간이 걸릴 수 있습니다." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -67,43 +79,43 @@ msgstr "" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "업로드 에러" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "보류 중" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "업로드 취소." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "잘못된 이름, '/' 은 허용이 되지 않습니다." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "크기" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "수정됨" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "폴더" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "폴더" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "파일" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "파일" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +185,6 @@ msgstr "공유" msgid "Download" msgstr "다운로드" -#: templates/index.php:56 -msgid "Delete" -msgstr "삭제" - #: templates/index.php:64 msgid "Upload too large" msgstr "업로드 용량 초과" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 5936d91124..f2d9007576 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,43 +8,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/language/lb/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Déi ropgelueden Datei ass méi grouss wei d'upload_max_filesize Eegenschaft an der php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Et ass keng Datei ropgelueden ginn" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" @@ -52,8 +52,20 @@ msgstr "Konnt net op den Disk schreiwen" msgid "Files" msgstr "Dateien" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Läschen" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -80,27 +92,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Gréisst" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Geännert" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -172,10 +184,6 @@ msgstr "Share" msgid "Download" msgstr "Eroflueden" -#: templates/index.php:56 -msgid "Delete" -msgstr "Läschen" - #: templates/index.php:64 msgid "Upload too large" msgstr "Upload ze grouss" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index b1643eeead..a3f2ed1f7b 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -3,48 +3,49 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Denisas Kulumbegašvili <>, 2012. # Dr. ROX , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/owncloud/language/lt_LT/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Klaidų nėra, failas įkeltas sėkmingai" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Įkeliamo failo dydis viršija upload_max_filesize parametrą php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Nebuvo įkeltas nė vienas failas" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" @@ -52,21 +53,33 @@ msgstr "Nepavyko įrašyti į diską" msgid "Files" msgstr "Failai" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Ištrinti" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "kuriamas ZIP archyvas, tai gali užtrukti šiek tiek laiko." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Įkėlimo klaida" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" @@ -74,35 +87,35 @@ msgstr "" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Įkėlimas atšauktas." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Pavadinime negali būti naudojamas ženklas \"/\"." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Dydis" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Pakeista" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "katalogas" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "katalogai" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "failas" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "failai" #: templates/admin.php:5 msgid "File handling" @@ -122,15 +135,15 @@ msgstr "" #: templates/admin.php:9 msgid "Enable ZIP-download" -msgstr "" +msgstr "Įjungti atsisiuntimą ZIP archyvu" #: templates/admin.php:11 msgid "0 is unlimited" -msgstr "" +msgstr "0 yra neribotas" #: templates/admin.php:12 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Maksimalus ZIP archyvo failo dydis" #: templates/index.php:7 msgid "New" @@ -172,10 +185,6 @@ msgstr "Dalintis" msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:56 -msgid "Delete" -msgstr "Ištrinti" - #: templates/index.php:64 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" @@ -188,8 +197,8 @@ msgstr "Bandomų įkelti failų dydis viršija maksimalų leidžiamą šiame ser #: templates/index.php:71 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Skenuojami failai, prašome palaukti." #: templates/index.php:74 msgid "Current scanning" -msgstr "" +msgstr "Šiuo metu skenuojama" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index ebe4eba051..055364d0d7 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 12:41+0000\n" -"Last-Translator: CPDZ \n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,7 +61,11 @@ msgid "Delete" msgstr "Izdzēst" #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 diff --git a/l10n/mk/files.po b/l10n/mk/files.po index e4ad1541e9..010215ad8b 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -4,48 +4,49 @@ # # Translators: # Georgi Stanojevski , 2012. +# Miroslav Jovanovic , 2012. # Miroslav Jovanovic , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Macedonian (http://www.transifex.net/projects/p/owncloud/language/mk/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Нема грешка, датотеката беше подигната успешно" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Не беше подигната датотека" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Не постои привремена папка" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" @@ -53,57 +54,69 @@ msgstr "Неуспеав да запишам на диск" msgid "Files" msgstr "Датотеки" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Избриши" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Се генерира ZIP фајлот, ќе треба извесно време." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Грешка при преземање" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Чека" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Преземањето е прекинато." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "неисправно име, '/' не е дозволено." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Големина" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Променето" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "фолдер" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "фолдери" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "датотека" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "датотеки" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +186,6 @@ msgstr "Сподели" msgid "Download" msgstr "Преземи" -#: templates/index.php:56 -msgid "Delete" -msgstr "Избриши" - #: templates/index.php:64 msgid "Upload too large" msgstr "Датотеката е премногу голема" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 3720c95152..6220c70851 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -5,109 +5,123 @@ # Translators: # Ahmed Noor Kader Mustajir Md Eusoff , 2012. # , 2011, 2012. +# Hadri Hilmi , 2012. +# Zulhilmi Rosnin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/language/ms_MY/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat, fail berjaya dimuat naik." -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Fail yang dimuat naik melebihi penyata upload_max_filesize dalam php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Sebahagian daripada fail telah dimuat naik. " -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Tiada fail yang dimuat naik" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Folder sementara hilang" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" -msgstr "" +msgstr "Gagal untuk disimpan" #: appinfo/app.php:6 msgid "Files" msgstr "fail" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Padam" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "sedang menghasilkan fail ZIP, mungkin mengambil sedikit masa." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Muat naik ralat" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Dalam proses" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Muatnaik dibatalkan." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "penggunaa nama tidak sah, '/' tidak dibenarkan." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Saiz" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "direktori" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "direktori" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "fail" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "fail" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Pengendalian fail" #: templates/admin.php:7 msgid "Maximum upload size" @@ -115,23 +129,23 @@ msgstr "Saiz maksimum muat naik" #: templates/admin.php:7 msgid "max. possible: " -msgstr "" +msgstr "maksimum:" #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Diperlukan untuk muatturun fail pelbagai " #: templates/admin.php:9 msgid "Enable ZIP-download" -msgstr "" +msgstr "Aktifkan muatturun ZIP" #: templates/admin.php:11 msgid "0 is unlimited" -msgstr "" +msgstr "0 adalah tanpa had" #: templates/admin.php:12 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Saiz maksimum input untuk fail ZIP" #: templates/index.php:7 msgid "New" @@ -147,7 +161,7 @@ msgstr "Folder" #: templates/index.php:11 msgid "From url" -msgstr "" +msgstr "Dari url" #: templates/index.php:21 msgid "Upload" @@ -155,7 +169,7 @@ msgstr "Muat naik" #: templates/index.php:27 msgid "Cancel upload" -msgstr "" +msgstr "Batal muat naik" #: templates/index.php:39 msgid "Nothing in here. Upload something!" @@ -167,16 +181,12 @@ msgstr "Nama " #: templates/index.php:49 msgid "Share" -msgstr "" +msgstr "Kongsi" #: templates/index.php:51 msgid "Download" msgstr "Muat turun" -#: templates/index.php:56 -msgid "Delete" -msgstr "Padam" - #: templates/index.php:64 msgid "Upload too large" msgstr "Muat naik terlalu besar" @@ -189,8 +199,8 @@ msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" #: templates/index.php:71 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Fail sedang diimbas, harap bersabar." #: templates/index.php:74 msgid "Current scanning" -msgstr "" +msgstr "Imbasan semasa" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index ced2b12359..94f07c07b4 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -4,49 +4,50 @@ # # Translators: # , 2011, 2012. +# Arvid Nornes , 2012. # Christer Eriksson , 2012. # Daniel , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.net/projects/p/owncloud/language/nb_NO/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Det er ingen feil. Filen ble lastet opp." -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen." -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Filopplastningen ble bare delvis gjennomført" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Ingen fil ble lastet opp" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" @@ -54,13 +55,25 @@ msgstr "Klarte ikke å skrive til disk" msgid "Files" msgstr "Filer" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Slett" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "opprettet ZIP-fil, dette kan ta litt tid" #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -72,7 +85,7 @@ msgstr "" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Ventende" #: js/files.js:332 msgid "Upload cancelled." @@ -82,29 +95,29 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Størrelse" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Endret" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "mappe" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "mapper" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "fil" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "filer" #: templates/admin.php:5 msgid "File handling" @@ -174,10 +187,6 @@ msgstr "Del" msgid "Download" msgstr "Last ned" -#: templates/index.php:56 -msgid "Delete" -msgstr "Slett" - #: templates/index.php:64 msgid "Upload too large" msgstr "Opplasting for stor" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index d6e80473b0..f7f4ade327 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -7,49 +7,50 @@ # , 2011. # Erik Bent , 2012. # , 2011. +# , 2012. # , 2011. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/language/nl/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Geen fout opgetreden, bestand successvol geupload." -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Het geüploade bestand is groter dan de upload_max_filesize instelling in php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is slechts gedeeltelijk geupload" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Geen bestand geüpload" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Een tijdelijke map mist" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" @@ -57,57 +58,69 @@ msgstr "Schrijven naar schijf mislukt" msgid "Files" msgstr "Bestanden" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Verwijder" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "aanmaken ZIP-file, dit kan enige tijd duren." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Upload Fout" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Wachten" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Uploaden geannuleerd." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Ongeldige naam, '/' is niet toegestaan." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "map" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "mappen" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "bestand" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "bestanden" #: templates/admin.php:5 msgid "File handling" @@ -177,10 +190,6 @@ msgstr "Delen" msgid "Download" msgstr "Download" -#: templates/index.php:56 -msgid "Delete" -msgstr "Verwijder" - #: templates/index.php:64 msgid "Upload too large" msgstr "Bestanden te groot" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index c5cc1159e3..1bd790c788 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.net/projects/p/owncloud/language/nn_NO/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Den opplasta fila er større enn variabelen upload_max_filesize i php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "" @@ -53,8 +53,20 @@ msgstr "" msgid "Files" msgstr "Filer" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Slett" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -81,27 +93,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Storleik" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Endra" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -173,10 +185,6 @@ msgstr "" msgid "Download" msgstr "Last ned" -#: templates/index.php:56 -msgid "Delete" -msgstr "Slett" - #: templates/index.php:64 msgid "Upload too large" msgstr "For stor opplasting" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index b37c9903ee..89fc6e75af 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -11,43 +11,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/language/pl/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "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:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Przesłano plik" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Rozmiar przesłanego pliku przekracza maksymalną wartość dyrektywy upload_max_filesize, zawartą w pliku php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Plik przesłano tylko częściowo" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Nie przesłano żadnego pliku" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Brak katalogu tymczasowego" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" @@ -55,57 +55,69 @@ msgstr "Błąd zapisu na dysk" msgid "Files" msgstr "Pliki" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Usuwa element" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Generowanie pliku ZIP, może potrwać pewien czas." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Błąd wczytywania" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Oczekujące" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Wczytywanie anulowane." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Rozmiar" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "folder" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "foldery" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "plik" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "pliki" #: templates/admin.php:5 msgid "File handling" @@ -175,10 +187,6 @@ msgstr "Współdziel" msgid "Download" msgstr "Pobiera element" -#: templates/index.php:56 -msgid "Delete" -msgstr "Usuwa element" - #: templates/index.php:64 msgid "Upload too large" msgstr "Wysyłany plik ma za duży rozmiar" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index c929566d19..b2dc4fe1f6 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/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-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 00:02+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-30 02:03+0200\n" +"PO-Revision-Date: 2012-07-29 14:04+0000\n" +"Last-Translator: Piotr Sokół \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" @@ -42,7 +42,7 @@ msgstr "Nieprawidłowe żądanie" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Błąd uwierzytelniania" #: ajax/setlanguage.php:18 msgid "Language changed" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index ef9cf274d9..bb08e22da8 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -5,48 +5,49 @@ # Translators: # Guilherme Maluf Balzana , 2012. # Thiago Vicente , 2012. +# Unforgiving Fallout <>, 2012. # Van Der Fran , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.net/projects/p/owncloud/language/pt_BR/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 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:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "O tamanho do arquivo excede o limed especifiicado em upload_max_filesize no php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi transferido parcialmente" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Nenhum arquivo foi transferido" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" @@ -54,57 +55,69 @@ msgstr "Falha ao escrever no disco" msgid "Files" msgstr "Arquivos" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Excluir" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "gerando arquivo ZIP, isso pode levar um tempo." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Erro de envio" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Pendente" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Envio cancelado." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Nome inválido, '/' não é permitido." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Tamanho" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "pasta" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "pastas" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "arquivo" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "arquivos" #: templates/admin.php:5 msgid "File handling" @@ -174,10 +187,6 @@ msgstr "Compartilhar" msgid "Download" msgstr "Baixar" -#: templates/index.php:56 -msgid "Delete" -msgstr "Excluir" - #: templates/index.php:64 msgid "Upload too large" msgstr "Arquivo muito grande" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 8779bcac2b..c1eaa89957 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.net/projects/p/owncloud/language/pt_PT/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Sem erro, ficheiro enviado com sucesso" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "O ficheiro enviado escede o diretivo upload_max_filesize no php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado só foi enviado parcialmente" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Não foi enviado nenhum ficheiro" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Falta uma pasta temporária" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" @@ -53,57 +53,69 @@ msgstr "Falhou a escrita no disco" msgid "Files" msgstr "Ficheiros" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Apagar" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "a gerar o ficheiro ZIP, poderá demorar algum tempo." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou ter 0 bytes" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Erro no upload" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Pendente" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "O upload foi cancelado." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "nome inválido, '/' não permitido." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Tamanho" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "pasta" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "pastas" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "ficheiro" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "ficheiros" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +185,6 @@ msgstr "Partilhar" msgid "Download" msgstr "Transferir" -#: templates/index.php:56 -msgid "Delete" -msgstr "Apagar" - #: templates/index.php:64 msgid "Upload too large" msgstr "Envio muito grande" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 06c259c228..ef7d5e76b6 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,43 +10,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/language/ro/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "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:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Nicio eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Fișierul are o dimensiune mai mare decât cea specificată în variabila upload_max_filesize din php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Niciun fișier încărcat" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" @@ -54,8 +54,20 @@ msgstr "Eroare la scriere pe disc" msgid "Files" msgstr "Fișiere" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Șterge" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -82,27 +94,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Dimensiune" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Modificat" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -174,10 +186,6 @@ msgstr "Partajează" msgid "Download" msgstr "Descarcă" -#: templates/index.php:56 -msgid "Delete" -msgstr "Șterge" - #: templates/index.php:64 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index bda5204072..b1ef507162 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -7,47 +7,48 @@ # , 2012. # , 2012. # , 2011. +# Victor Bravo <>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Russian (http://www.transifex.net/projects/p/owncloud/language/ru/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "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:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Файл успешно загружен" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Файл превышает допустимые размеры (описаны как upload_max_filesize в php.ini)" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Файл был загружен не полностью" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Невозможно найти временную папку" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" @@ -55,57 +56,69 @@ msgstr "Ошибка записи на диск" msgid "Files" msgstr "Файлы" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Удалить" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "создание ZIP-файла, это может занять некоторое время." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Не удается загрузить файл размером 0 байт в каталог" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Ошибка загрузки" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Ожидание" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Загрузка отменена." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Неверное имя, '/' не допускается." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Размер" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Изменен" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "папка" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "папки" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "файл" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "файлы" #: templates/admin.php:5 msgid "File handling" @@ -175,10 +188,6 @@ msgstr "Поделиться" msgid "Download" msgstr "Скачать" -#: templates/index.php:56 -msgid "Delete" -msgstr "Удалить" - #: templates/index.php:64 msgid "Upload too large" msgstr "Файл слишком большой" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 4b6d83e8ca..7c4437b6a2 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/language/sk_SK/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Nahraný súbor presiahol direktívu upload_max_filesize v php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Nahrávaný súbor bol iba čiastočne nahraný" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Žiaden súbor nebol nahraný" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Chýbajúci dočasný priečinok" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" @@ -53,57 +53,69 @@ msgstr "Zápis na disk sa nepodaril" msgid "Files" msgstr "Súbory" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Odstrániť" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "generujem ZIP-súbor, môže to chvíľu trvať." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Chyba nahrávania" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Čaká sa" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Nahrávanie zrušené" #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Chybný názov, \"/\" nie je povolené" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Veľkosť" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Upravené" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "priečinok" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "priečinky" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "súbor" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "súbory" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +185,6 @@ msgstr "Zdielať" msgid "Download" msgstr "Stiahnuť" -#: templates/index.php:56 -msgid "Delete" -msgstr "Odstrániť" - #: templates/index.php:64 msgid "Upload too large" msgstr "Nahrávanie príliš veľké" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index fd263bc60e..49b3c8c317 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/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-07-29 02:03+0200\n" -"PO-Revision-Date: 2012-07-28 01:58+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" @@ -63,8 +63,12 @@ msgid "Delete" msgstr "Izbriši" #: js/filelist.js:186 -msgid "undo deletion" -msgstr "prekliči izbris" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" +msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." diff --git a/l10n/so/files.po b/l10n/so/files.po index d4b3a6c136..7b869f9830 100644 --- a/l10n/so/files.po +++ b/l10n/so/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-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" "Last-Translator: owncloud_robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,11 @@ msgid "Delete" msgstr "" #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 diff --git a/l10n/sr/files.po b/l10n/sr/files.po index af2fa73a8c..cc98fd8895 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -8,43 +8,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/language/sr/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "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:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Нема грешке, фајл је успешно послат" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Послати фајл превазилази директиву upload_max_filesize из " -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Послати фајл превазилази директиву MAX_FILE_SIZE која је наведена у ХТМЛ форми" -#: ajax/upload.php:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Послати фајл је само делимично отпремљен!" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Ниједан фајл није послат" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "" @@ -52,8 +52,20 @@ msgstr "" msgid "Files" msgstr "Фајлови" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Обриши" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -80,27 +92,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Величина" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Задња измена" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -172,10 +184,6 @@ msgstr "" msgid "Download" msgstr "Преузми" -#: templates/index.php:56 -msgid "Delete" -msgstr "Обриши" - #: templates/index.php:64 msgid "Upload too large" msgstr "Пошиљка је превелика" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 1f04e28190..035317f6ca 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,43 +8,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/language/sr@latin/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Poslati fajl prevazilazi direktivu upload_max_filesize iz " -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "" @@ -52,8 +52,20 @@ msgstr "" msgid "Files" msgstr "Fajlovi" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Obriši" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -80,27 +92,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Veličina" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -172,10 +184,6 @@ msgstr "" msgid "Download" msgstr "Preuzmi" -#: templates/index.php:56 -msgid "Delete" -msgstr "Obriši" - #: templates/index.php:64 msgid "Upload too large" msgstr "Pošiljka je prevelika" diff --git a/l10n/sv/bookmarks.po b/l10n/sv/bookmarks.po index f08502dd14..cd3fb598da 100644 --- a/l10n/sv/bookmarks.po +++ b/l10n/sv/bookmarks.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-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-29 20:39+0000\n" +"Last-Translator: maghog \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" @@ -19,42 +20,42 @@ msgstr "" #: appinfo/app.php:14 msgid "Bookmarks" -msgstr "" +msgstr "Bokmärken" #: bookmarksHelper.php:99 msgid "unnamed" -msgstr "" +msgstr "namnlös" #: templates/bookmarklet.php:5 msgid "" "Drag this to your browser bookmarks and click it, when you want to bookmark " "a webpage quickly:" -msgstr "" +msgstr "Dra till din webbläsares bokmärken och klicka på det när du vill bokmärka en webbsida snabbt:" #: templates/bookmarklet.php:7 msgid "Read later" -msgstr "" +msgstr "Läs senare" #: templates/list.php:13 msgid "Address" -msgstr "" +msgstr "Adress" #: templates/list.php:14 msgid "Title" -msgstr "" +msgstr "Titel" #: templates/list.php:15 msgid "Tags" -msgstr "" +msgstr "Taggar" #: templates/list.php:16 msgid "Save bookmark" -msgstr "" +msgstr "Spara bokmärke" #: templates/list.php:22 msgid "You have no bookmarks" -msgstr "" +msgstr "Du har inga bokmärken" #: templates/settings.php:11 msgid "Bookmarklet
" -msgstr "" +msgstr "Skriptbokmärke
" diff --git a/l10n/sv/calendar.po b/l10n/sv/calendar.po index f8c88e6587..b2bce445e1 100644 --- a/l10n/sv/calendar.po +++ b/l10n/sv/calendar.po @@ -5,26 +5,35 @@ # Translators: # Christer Eriksson , 2012. # Daniel Sandman , 2012. +# , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/language/sv/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-29 20:35+0000\n" +"Last-Translator: maghog \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" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/categories/rescan.php:28 +#: ajax/cache/status.php:19 +msgid "Not all calendars are completely cached" +msgstr "Alla kalendrar är inte fullständigt sparade i cache" + +#: ajax/cache/status.php:21 +msgid "Everything seems to be completely cached" +msgstr "Allt verkar vara fullständigt sparat i cache" + +#: ajax/categories/rescan.php:29 msgid "No calendars found." msgstr "Inga kalendrar funna" -#: ajax/categories/rescan.php:36 +#: ajax/categories/rescan.php:37 msgid "No events found." msgstr "Inga händelser funna." @@ -32,43 +41,57 @@ msgstr "Inga händelser funna." msgid "Wrong calendar" msgstr "Fel kalender" +#: ajax/import/dropimport.php:29 ajax/import/import.php:64 +msgid "" +"The file contained either no events or all events are already saved in your " +"calendar." +msgstr "Filen innehöll inga händelser eller så är alla händelser redan sparade i kalendern." + +#: ajax/import/dropimport.php:31 ajax/import/import.php:67 +msgid "events has been saved in the new calendar" +msgstr "händelser har sparats i den nya kalendern" + +#: ajax/import/import.php:56 +msgid "Import failed" +msgstr "Misslyckad import" + +#: ajax/import/import.php:69 +msgid "events has been saved in your calendar" +msgstr "händelse har sparats i din kalender" + #: ajax/settings/guesstimezone.php:25 msgid "New Timezone:" msgstr "Ny tidszon:" -#: ajax/settings/settimezone.php:22 +#: ajax/settings/settimezone.php:23 msgid "Timezone changed" msgstr "Tidszon ändrad" -#: ajax/settings/settimezone.php:24 +#: ajax/settings/settimezone.php:25 msgid "Invalid request" msgstr "Ogiltig begäran" -#: appinfo/app.php:19 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:31 +#: appinfo/app.php:35 templates/calendar.php:15 +#: templates/part.eventform.php:33 templates/part.showevent.php:33 #: templates/settings.php:12 msgid "Calendar" msgstr "Kalender" -#: js/calendar.js:93 -msgid "Deletion failed" -msgstr "" - #: js/calendar.js:828 msgid "ddd" -msgstr "" +msgstr "ddd" #: js/calendar.js:829 msgid "ddd M/d" -msgstr "" +msgstr "ddd M/d" #: js/calendar.js:830 msgid "dddd M/d" -msgstr "" +msgstr "dddd M/d" #: js/calendar.js:833 msgid "MMMM yyyy" -msgstr "" +msgstr "MMMM åååå" #: js/calendar.js:835 msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" @@ -76,256 +99,337 @@ msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" #: js/calendar.js:837 msgid "dddd, MMM d, yyyy" -msgstr "" +msgstr "ddd, MMM d, åååå" -#: lib/app.php:125 +#: lib/app.php:121 msgid "Birthday" msgstr "Födelsedag" -#: lib/app.php:126 +#: lib/app.php:122 msgid "Business" msgstr "Företag" -#: lib/app.php:127 +#: lib/app.php:123 msgid "Call" msgstr "Ringa" -#: lib/app.php:128 +#: lib/app.php:124 msgid "Clients" msgstr "Klienter" -#: lib/app.php:129 +#: lib/app.php:125 msgid "Deliverer" msgstr "Leverantör" -#: lib/app.php:130 +#: lib/app.php:126 msgid "Holidays" msgstr "Semester" -#: lib/app.php:131 +#: lib/app.php:127 msgid "Ideas" msgstr "Idéer" -#: lib/app.php:132 +#: lib/app.php:128 msgid "Journey" msgstr "Resa" -#: lib/app.php:133 +#: lib/app.php:129 msgid "Jubilee" msgstr "Jubileum" -#: lib/app.php:134 +#: lib/app.php:130 msgid "Meeting" msgstr "Möte" -#: lib/app.php:135 +#: lib/app.php:131 msgid "Other" msgstr "Annat" -#: lib/app.php:136 +#: lib/app.php:132 msgid "Personal" msgstr "Personlig" -#: lib/app.php:137 +#: lib/app.php:133 msgid "Projects" msgstr "Projekt" -#: lib/app.php:138 +#: lib/app.php:134 msgid "Questions" msgstr "Frågor" -#: lib/app.php:139 +#: lib/app.php:135 msgid "Work" msgstr "Arbetet" -#: lib/app.php:380 +#: lib/app.php:351 lib/app.php:361 +msgid "by" +msgstr "av" + +#: lib/app.php:359 lib/app.php:399 msgid "unnamed" msgstr "Namn saknas" -#: lib/object.php:330 +#: lib/import.php:184 templates/calendar.php:12 +#: templates/part.choosecalendar.php:22 +msgid "New Calendar" +msgstr "Ny kalender" + +#: lib/object.php:372 msgid "Does not repeat" msgstr "Upprepas inte" -#: lib/object.php:331 +#: lib/object.php:373 msgid "Daily" msgstr "Dagligen" -#: lib/object.php:332 +#: lib/object.php:374 msgid "Weekly" msgstr "Varje vecka" -#: lib/object.php:333 +#: lib/object.php:375 msgid "Every Weekday" msgstr "Varje vardag" -#: lib/object.php:334 +#: lib/object.php:376 msgid "Bi-Weekly" msgstr "Varannan vecka" -#: lib/object.php:335 +#: lib/object.php:377 msgid "Monthly" msgstr "Varje månad" -#: lib/object.php:336 +#: lib/object.php:378 msgid "Yearly" msgstr "Årligen" -#: lib/object.php:343 +#: lib/object.php:388 msgid "never" msgstr "aldrig" -#: lib/object.php:344 +#: lib/object.php:389 msgid "by occurrences" msgstr "efter händelser" -#: lib/object.php:345 +#: lib/object.php:390 msgid "by date" msgstr "efter datum" -#: lib/object.php:352 +#: lib/object.php:400 msgid "by monthday" msgstr "efter dag i månaden" -#: lib/object.php:353 +#: lib/object.php:401 msgid "by weekday" msgstr "efter veckodag" -#: lib/object.php:360 templates/settings.php:42 +#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 msgid "Monday" msgstr "Måndag" -#: lib/object.php:361 +#: lib/object.php:412 templates/calendar.php:5 msgid "Tuesday" msgstr "Tisdag" -#: lib/object.php:362 +#: lib/object.php:413 templates/calendar.php:5 msgid "Wednesday" msgstr "Onsdag" -#: lib/object.php:363 +#: lib/object.php:414 templates/calendar.php:5 msgid "Thursday" msgstr "Torsdag" -#: lib/object.php:364 +#: lib/object.php:415 templates/calendar.php:5 msgid "Friday" msgstr "Fredag" -#: lib/object.php:365 +#: lib/object.php:416 templates/calendar.php:5 msgid "Saturday" msgstr "Lördag" -#: lib/object.php:366 templates/settings.php:43 +#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 msgid "Sunday" msgstr "Söndag" -#: lib/object.php:373 +#: lib/object.php:427 msgid "events week of month" msgstr "händelse vecka av månad" -#: lib/object.php:374 +#: lib/object.php:428 msgid "first" msgstr "första" -#: lib/object.php:375 +#: lib/object.php:429 msgid "second" msgstr "andra" -#: lib/object.php:376 +#: lib/object.php:430 msgid "third" msgstr "tredje" -#: lib/object.php:377 +#: lib/object.php:431 msgid "fourth" msgstr "fjärde" -#: lib/object.php:378 +#: lib/object.php:432 msgid "fifth" msgstr "femte" -#: lib/object.php:379 +#: lib/object.php:433 msgid "last" msgstr "sist" -#: lib/object.php:401 +#: lib/object.php:467 templates/calendar.php:7 msgid "January" msgstr "Januari" -#: lib/object.php:402 +#: lib/object.php:468 templates/calendar.php:7 msgid "February" msgstr "Februari" -#: lib/object.php:403 +#: lib/object.php:469 templates/calendar.php:7 msgid "March" msgstr "Mars" -#: lib/object.php:404 +#: lib/object.php:470 templates/calendar.php:7 msgid "April" msgstr "April" -#: lib/object.php:405 +#: lib/object.php:471 templates/calendar.php:7 msgid "May" msgstr "Maj" -#: lib/object.php:406 +#: lib/object.php:472 templates/calendar.php:7 msgid "June" msgstr "Juni" -#: lib/object.php:407 +#: lib/object.php:473 templates/calendar.php:7 msgid "July" msgstr "Juli" -#: lib/object.php:408 +#: lib/object.php:474 templates/calendar.php:7 msgid "August" msgstr "Augusti" -#: lib/object.php:409 +#: lib/object.php:475 templates/calendar.php:7 msgid "September" msgstr "September" -#: lib/object.php:410 +#: lib/object.php:476 templates/calendar.php:7 msgid "October" msgstr "Oktober" -#: lib/object.php:411 +#: lib/object.php:477 templates/calendar.php:7 msgid "November" msgstr "November" -#: lib/object.php:412 +#: lib/object.php:478 templates/calendar.php:7 msgid "December" msgstr "December" -#: lib/object.php:418 +#: lib/object.php:488 msgid "by events date" msgstr "efter händelsedatum" -#: lib/object.php:419 +#: lib/object.php:489 msgid "by yearday(s)" msgstr "efter årsdag(ar)" -#: lib/object.php:420 +#: lib/object.php:490 msgid "by weeknumber(s)" msgstr "efter veckonummer" -#: lib/object.php:421 +#: lib/object.php:491 msgid "by day and month" msgstr "efter dag och månad" -#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +#: lib/search.php:35 lib/search.php:37 lib/search.php:40 msgid "Date" msgstr "Datum" -#: lib/search.php:40 +#: lib/search.php:43 msgid "Cal." msgstr "Kal." +#: templates/calendar.php:6 +msgid "Sun." +msgstr "Sön." + +#: templates/calendar.php:6 +msgid "Mon." +msgstr "Mån." + +#: templates/calendar.php:6 +msgid "Tue." +msgstr "Tis." + +#: templates/calendar.php:6 +msgid "Wed." +msgstr "Ons." + +#: templates/calendar.php:6 +msgid "Thu." +msgstr "Tor." + +#: templates/calendar.php:6 +msgid "Fri." +msgstr "Fre." + +#: templates/calendar.php:6 +msgid "Sat." +msgstr "Lör." + +#: templates/calendar.php:8 +msgid "Jan." +msgstr "Jan." + +#: templates/calendar.php:8 +msgid "Feb." +msgstr "Feb." + +#: templates/calendar.php:8 +msgid "Mar." +msgstr "Mar." + +#: templates/calendar.php:8 +msgid "Apr." +msgstr "Apr." + +#: templates/calendar.php:8 +msgid "May." +msgstr "Maj." + +#: templates/calendar.php:8 +msgid "Jun." +msgstr "Jun." + +#: templates/calendar.php:8 +msgid "Jul." +msgstr "Jul." + +#: templates/calendar.php:8 +msgid "Aug." +msgstr "Aug." + +#: templates/calendar.php:8 +msgid "Sep." +msgstr "Sep." + +#: templates/calendar.php:8 +msgid "Oct." +msgstr "Okt." + +#: templates/calendar.php:8 +msgid "Nov." +msgstr "Nov." + +#: templates/calendar.php:8 +msgid "Dec." +msgstr "Dec." + #: templates/calendar.php:11 msgid "All day" msgstr "Hela dagen" -#: templates/calendar.php:12 templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Ny kalender" - #: templates/calendar.php:13 msgid "Missing fields" msgstr "Saknade fält" @@ -359,27 +463,27 @@ msgstr "Händelsen slutar innan den börjar" msgid "There was a database fail" msgstr "Det blev ett databasfel" -#: templates/calendar.php:40 +#: templates/calendar.php:38 msgid "Week" msgstr "Vecka" -#: templates/calendar.php:41 +#: templates/calendar.php:39 msgid "Month" msgstr "Månad" -#: templates/calendar.php:42 +#: templates/calendar.php:40 msgid "List" msgstr "Lista" -#: templates/calendar.php:48 +#: templates/calendar.php:44 msgid "Today" msgstr "Idag" -#: templates/calendar.php:49 +#: templates/calendar.php:45 msgid "Calendars" msgstr "Kalendrar" -#: templates/calendar.php:67 +#: templates/calendar.php:59 msgid "There was a fail, while parsing the file." msgstr "Det blev ett fel medan filen analyserades." @@ -392,7 +496,7 @@ msgid "Your calendars" msgstr "Dina kalendrar" #: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:5 +#: templates/part.choosecalendar.rowfields.php:11 msgid "CalDav Link" msgstr "CalDAV-länk" @@ -404,19 +508,19 @@ msgstr "Delade kalendrar" msgid "No shared calendars" msgstr "Inga delade kalendrar" -#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.choosecalendar.rowfields.php:8 msgid "Share Calendar" msgstr "Dela kalender" -#: templates/part.choosecalendar.rowfields.php:6 +#: templates/part.choosecalendar.rowfields.php:14 msgid "Download" msgstr "Ladda ner" -#: templates/part.choosecalendar.rowfields.php:7 +#: templates/part.choosecalendar.rowfields.php:17 msgid "Edit" msgstr "Redigera" -#: templates/part.choosecalendar.rowfields.php:8 +#: templates/part.choosecalendar.rowfields.php:20 #: templates/part.editevent.php:9 msgid "Delete" msgstr "Radera" @@ -502,23 +606,23 @@ msgstr "Separera kategorier med komman" msgid "Edit categories" msgstr "Redigera kategorier" -#: templates/part.eventform.php:56 templates/part.showevent.php:55 +#: templates/part.eventform.php:56 templates/part.showevent.php:52 msgid "All Day Event" msgstr "Hela dagen" -#: templates/part.eventform.php:60 templates/part.showevent.php:59 +#: templates/part.eventform.php:60 templates/part.showevent.php:56 msgid "From" msgstr "Från" -#: templates/part.eventform.php:68 templates/part.showevent.php:67 +#: templates/part.eventform.php:68 templates/part.showevent.php:64 msgid "To" msgstr "Till" -#: templates/part.eventform.php:76 templates/part.showevent.php:75 +#: templates/part.eventform.php:76 templates/part.showevent.php:72 msgid "Advanced options" msgstr "Avancerade alternativ" -#: templates/part.eventform.php:81 templates/part.showevent.php:80 +#: templates/part.eventform.php:81 templates/part.showevent.php:77 msgid "Location" msgstr "Plats" @@ -526,7 +630,7 @@ msgstr "Plats" msgid "Location of the Event" msgstr "Platsen för händelsen" -#: templates/part.eventform.php:89 templates/part.showevent.php:88 +#: templates/part.eventform.php:89 templates/part.showevent.php:85 msgid "Description" msgstr "Beskrivning" @@ -534,84 +638,86 @@ msgstr "Beskrivning" msgid "Description of the Event" msgstr "Beskrivning av händelse" -#: templates/part.eventform.php:100 templates/part.showevent.php:98 +#: templates/part.eventform.php:100 templates/part.showevent.php:95 msgid "Repeat" msgstr "Upprepa" -#: templates/part.eventform.php:107 templates/part.showevent.php:105 +#: templates/part.eventform.php:107 templates/part.showevent.php:102 msgid "Advanced" msgstr "Avancerad" -#: templates/part.eventform.php:151 templates/part.showevent.php:149 +#: templates/part.eventform.php:151 templates/part.showevent.php:146 msgid "Select weekdays" msgstr "Välj veckodagar" #: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:162 templates/part.showevent.php:175 +#: templates/part.showevent.php:159 templates/part.showevent.php:172 msgid "Select days" msgstr "Välj dagar" -#: templates/part.eventform.php:169 templates/part.showevent.php:167 +#: templates/part.eventform.php:169 templates/part.showevent.php:164 msgid "and the events day of year." msgstr "och händelsedagen för året." -#: templates/part.eventform.php:182 templates/part.showevent.php:180 +#: templates/part.eventform.php:182 templates/part.showevent.php:177 msgid "and the events day of month." msgstr "och händelsedagen för månaden." -#: templates/part.eventform.php:190 templates/part.showevent.php:188 +#: templates/part.eventform.php:190 templates/part.showevent.php:185 msgid "Select months" msgstr "Välj månader" -#: templates/part.eventform.php:203 templates/part.showevent.php:201 +#: templates/part.eventform.php:203 templates/part.showevent.php:198 msgid "Select weeks" msgstr "Välj veckor" -#: templates/part.eventform.php:208 templates/part.showevent.php:206 +#: templates/part.eventform.php:208 templates/part.showevent.php:203 msgid "and the events week of year." msgstr "och händelsevecka för året." -#: templates/part.eventform.php:214 templates/part.showevent.php:212 +#: templates/part.eventform.php:214 templates/part.showevent.php:209 msgid "Interval" msgstr "Hur ofta" -#: templates/part.eventform.php:220 templates/part.showevent.php:218 +#: templates/part.eventform.php:220 templates/part.showevent.php:215 msgid "End" msgstr "Slut" -#: templates/part.eventform.php:233 templates/part.showevent.php:231 +#: templates/part.eventform.php:233 templates/part.showevent.php:228 msgid "occurrences" msgstr "Händelser" -#: templates/part.import.php:1 -msgid "Import a calendar file" -msgstr "Importera en kalenderfil" - -#: templates/part.import.php:6 -msgid "Please choose the calendar" -msgstr "Välj kalender" - -#: templates/part.import.php:10 +#: templates/part.import.php:14 msgid "create a new calendar" msgstr "skapa en ny kalender" -#: templates/part.import.php:15 +#: templates/part.import.php:17 +msgid "Import a calendar file" +msgstr "Importera en kalenderfil" + +#: templates/part.import.php:24 +msgid "Please choose a calendar" +msgstr "Välj en kalender" + +#: templates/part.import.php:36 msgid "Name of new calendar" msgstr "Namn på ny kalender" -#: templates/part.import.php:17 +#: templates/part.import.php:44 +msgid "Take an available name!" +msgstr "Ta ett ledigt namn!" + +#: templates/part.import.php:45 +msgid "" +"A Calendar with this name already exists. If you continue anyhow, these " +"calendars will be merged." +msgstr "En kalender med detta namn finns redan. Om du fortsätter ändå så kommer dessa kalendrar att slås samman." + +#: templates/part.import.php:47 msgid "Import" msgstr "Importera" -#: templates/part.import.php:20 -msgid "Importing calendar" -msgstr "Importerar kalender" - -#: templates/part.import.php:23 -msgid "Calendar imported successfully" -msgstr "Kalender importerades utan problem" - -#: templates/part.import.php:24 +#: templates/part.import.php:56 msgid "Close Dialog" msgstr "Stäng " @@ -627,15 +733,11 @@ msgstr "Visa en händelse" msgid "No categories selected" msgstr "Inga kategorier valda" -#: templates/part.showevent.php:25 -msgid "Select category" -msgstr "Välj kategori" - #: templates/part.showevent.php:37 msgid "of" msgstr "av" -#: templates/part.showevent.php:62 templates/part.showevent.php:70 +#: templates/part.showevent.php:59 templates/part.showevent.php:67 msgid "at" msgstr "på" @@ -663,9 +765,33 @@ msgstr "12h" msgid "First day of the week" msgstr "Första dagen av veckan" -#: templates/settings.php:49 -msgid "Calendar CalDAV syncing address:" -msgstr "Synkroniseringsadress för CalDAV kalender:" +#: templates/settings.php:47 +msgid "Cache" +msgstr "Cache" + +#: templates/settings.php:48 +msgid "Clear cache for repeating events" +msgstr "Töm cache för upprepade händelser" + +#: templates/settings.php:53 +msgid "Calendar CalDAV syncing addresses" +msgstr "Kalender CalDAV synkroniserar adresser" + +#: templates/settings.php:53 +msgid "more info" +msgstr "mer info" + +#: templates/settings.php:55 +msgid "Primary address (Kontact et al)" +msgstr "Primary address (Kontact et al)" + +#: templates/settings.php:57 +msgid "iOS/OS X" +msgstr "iOS/OS X" + +#: templates/settings.php:59 +msgid "Read only iCalendar link(s)" +msgstr "Read only iCalendar link(s)" #: templates/share.dropdown.php:20 msgid "Users" diff --git a/l10n/sv/contacts.po b/l10n/sv/contacts.po index 0de8591cea..1d2a7f6b0a 100644 --- a/l10n/sv/contacts.po +++ b/l10n/sv/contacts.po @@ -5,107 +5,104 @@ # Translators: # Christer Eriksson , 2012. # Daniel Sandman , 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-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/language/sv/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-29 21:01+0000\n" +"Last-Translator: maghog \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" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/activation.php:19 ajax/updateaddressbook.php:32 +#: ajax/activation.php:24 ajax/updateaddressbook.php:29 msgid "Error (de)activating addressbook." msgstr "Fel när (av)aktivera adressbok" -#: ajax/addcontact.php:59 +#: ajax/addcontact.php:47 msgid "There was an error adding the contact." msgstr "Det uppstod ett fel när kontakt skulle läggas till" -#: ajax/addproperty.php:40 +#: ajax/addproperty.php:39 ajax/saveproperty.php:34 +msgid "element name is not set." +msgstr "" + +#: ajax/addproperty.php:42 ajax/deletecard.php:30 ajax/saveproperty.php:37 +msgid "id is not set." +msgstr "ID är inte satt." + +#: ajax/addproperty.php:46 +msgid "Could not parse contact: " +msgstr "Kunde inte läsa kontakt:" + +#: ajax/addproperty.php:56 msgid "Cannot add empty property." msgstr "Kan inte lägga till en tom egenskap" -#: ajax/addproperty.php:52 +#: ajax/addproperty.php:67 msgid "At least one of the address fields has to be filled out." msgstr "Minst ett fält måste fyllas i" -#: ajax/addproperty.php:62 +#: ajax/addproperty.php:76 msgid "Trying to add duplicate property: " msgstr "" -#: ajax/addproperty.php:120 -msgid "Error adding contact property." -msgstr "Fel när kontaktegenskap skulle läggas till" +#: ajax/addproperty.php:144 +msgid "Error adding contact property: " +msgstr "Kunde inte lägga till egenskap för kontakt:" -#: ajax/categories/categoriesfor.php:15 +#: ajax/categories/categoriesfor.php:17 msgid "No ID provided" msgstr "Inget ID angett" -#: ajax/categories/categoriesfor.php:27 +#: ajax/categories/categoriesfor.php:34 msgid "Error setting checksum." msgstr "Fel uppstod när kontrollsumma skulle sättas." -#: ajax/categories/delete.php:29 +#: ajax/categories/delete.php:19 msgid "No categories selected for deletion." msgstr "Inga kategorier valda för borttaging" -#: ajax/categories/delete.php:36 ajax/categories/rescan.php:28 +#: ajax/categories/delete.php:26 msgid "No address books found." msgstr "Ingen adressbok funnen." -#: ajax/categories/delete.php:44 ajax/categories/rescan.php:36 +#: ajax/categories/delete.php:34 msgid "No contacts found." msgstr "Inga kontakter funna." -#: ajax/contactdetails.php:37 +#: ajax/contactdetails.php:31 msgid "Missing ID" msgstr "ID saknas" -#: ajax/contactdetails.php:41 +#: ajax/contactdetails.php:36 msgid "Error parsing VCard for ID: \"" msgstr "" -#: ajax/createaddressbook.php:18 -msgid "Cannot add addressbook with an empty name." -msgstr "Kan inte lägga till adressbok med ett tomt namn." - -#: ajax/createaddressbook.php:24 -msgid "Error adding addressbook." -msgstr "Fel när adressbok skulle läggas till" - -#: ajax/createaddressbook.php:30 -msgid "Error activating addressbook." -msgstr "Fel uppstod när adressbok skulle aktiveras" - -#: ajax/currentphoto.php:34 ajax/oc_photo.php:37 ajax/uploadphoto.php:41 +#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 #: ajax/uploadphoto.php:68 msgid "No contact ID was submitted." msgstr "Inget kontakt-ID angavs." -#: ajax/currentphoto.php:40 +#: ajax/currentphoto.php:36 msgid "Error reading contact photo." msgstr "Fel uppstod när " -#: ajax/currentphoto.php:52 +#: ajax/currentphoto.php:48 msgid "Error saving temporary file." msgstr "Fel uppstod när temporär fil skulle sparas." -#: ajax/currentphoto.php:55 +#: ajax/currentphoto.php:51 msgid "The loading photo is not valid." msgstr "Det laddade fotot är inte giltigt." -#: ajax/deletecard.php:37 ajax/saveproperty.php:58 -msgid "id is not set." -msgstr "ID är inte satt." - #: ajax/deleteproperty.php:36 msgid "Information about vCard is incorrect. Please reload the page." msgstr "Information om vCard är felaktigt. Vänligen ladda om sidan." @@ -114,328 +111,387 @@ msgstr "Information om vCard är felaktigt. Vänligen ladda om sidan." msgid "Error deleting contact property." msgstr "Fel uppstod när kontaktegenskap skulle tas bort" -#: ajax/editname.php:37 +#: ajax/editname.php:31 msgid "Contact ID is missing." msgstr "Kontakt-ID saknas." -#: ajax/loadphoto.php:44 -msgid "Missing contact id." -msgstr "Saknar kontakt-ID." - -#: ajax/oc_photo.php:41 +#: ajax/oc_photo.php:32 msgid "No photo path was submitted." msgstr "Ingen sökväg till foto angavs." -#: ajax/oc_photo.php:48 +#: ajax/oc_photo.php:39 msgid "File doesn't exist:" msgstr "Filen existerar inte." -#: ajax/oc_photo.php:54 ajax/oc_photo.php:57 +#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 msgid "Error loading image." msgstr "Fel uppstod när bild laddades." -#: ajax/savecrop.php:68 +#: ajax/savecrop.php:67 msgid "Error getting contact object." msgstr "" -#: ajax/savecrop.php:75 +#: ajax/savecrop.php:76 msgid "Error getting PHOTO property." msgstr "" -#: ajax/savecrop.php:88 +#: ajax/savecrop.php:93 msgid "Error saving contact." -msgstr "" +msgstr "Fel vid sparande av kontakt." -#: ajax/savecrop.php:98 +#: ajax/savecrop.php:103 msgid "Error resizing image" -msgstr "" +msgstr "Fel vid storleksförändring av bilden" -#: ajax/savecrop.php:101 +#: ajax/savecrop.php:106 msgid "Error cropping image" -msgstr "" +msgstr "Fel vid beskärning av bilden" -#: ajax/savecrop.php:104 +#: ajax/savecrop.php:109 msgid "Error creating temporary image" -msgstr "" +msgstr "Fel vid skapande av tillfällig bild" -#: ajax/savecrop.php:107 +#: ajax/savecrop.php:112 msgid "Error finding image: " -msgstr "" +msgstr "Kunde inte hitta bild" -#: ajax/saveproperty.php:55 -msgid "element name is not set." -msgstr "" - -#: ajax/saveproperty.php:61 +#: ajax/saveproperty.php:40 msgid "checksum is not set." msgstr "kontrollsumma är inte satt." -#: ajax/saveproperty.php:78 +#: ajax/saveproperty.php:59 msgid "Information about vCard is incorrect. Please reload the page: " msgstr "Informationen om vCard är fel. Ladda om sidan:" -#: ajax/saveproperty.php:83 +#: ajax/saveproperty.php:64 msgid "Something went FUBAR. " msgstr "" -#: ajax/saveproperty.php:150 +#: ajax/saveproperty.php:133 msgid "Error updating contact property." msgstr "Fel uppstod när kontaktegenskap skulle uppdateras" -#: ajax/updateaddressbook.php:20 +#: ajax/updateaddressbook.php:21 msgid "Cannot update addressbook with an empty name." msgstr "Kan inte uppdatera adressboken med ett tomt namn." -#: ajax/updateaddressbook.php:26 +#: ajax/updateaddressbook.php:25 msgid "Error updating addressbook." msgstr "Fel uppstod när adressbok skulle uppdateras" -#: ajax/uploadimport.php:46 ajax/uploadimport.php:76 +#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 msgid "Error uploading contacts to storage." msgstr "Fel uppstod när kontakt skulle lagras." -#: ajax/uploadimport.php:59 ajax/uploadphoto.php:77 +#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem." -#: ajax/uploadimport.php:60 ajax/uploadphoto.php:78 +#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet i php.ini" -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:79 +#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överskrider MAX_FILE_SIZE direktivet som har angetts i HTML formuläret" -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:80 +#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var bara delvist uppladdad" -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:81 +#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 msgid "No file was uploaded" msgstr "Ingen fil laddades upp" -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:82 +#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 msgid "Missing a temporary folder" msgstr "En temporär mapp saknas" -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:102 +#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 msgid "Couldn't save temporary image: " -msgstr "" +msgstr "Kunde inte spara tillfällig bild:" -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:105 +#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 msgid "Couldn't load temporary image: " -msgstr "" +msgstr "Kunde inte ladda tillfällig bild:" #: ajax/uploadphoto.php:71 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ingen fil uppladdad. Okänt fel" -#: appinfo/app.php:17 templates/settings.php:3 +#: appinfo/app.php:19 templates/settings.php:3 msgid "Contacts" msgstr "Kontakter" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Sorry, this functionality has not been implemented yet" -msgstr "" +msgstr "Tyvärr är denna funktion inte införd än" -#: js/contacts.js:24 +#: js/contacts.js:53 msgid "Not implemented" -msgstr "" +msgstr "Inte införd" -#: js/contacts.js:29 +#: js/contacts.js:58 msgid "Couldn't get a valid address." -msgstr "" +msgstr "Kunde inte hitta en giltig adress." -#: js/contacts.js:29 js/contacts.js:334 js/contacts.js:341 js/contacts.js:355 -#: js/contacts.js:393 js/contacts.js:399 js/contacts.js:565 js/contacts.js:605 -#: js/contacts.js:631 js/contacts.js:668 js/contacts.js:747 js/contacts.js:753 -#: js/contacts.js:765 js/contacts.js:799 js/contacts.js:1056 -#: js/contacts.js:1064 js/contacts.js:1073 js/contacts.js:1130 -#: js/contacts.js:1146 js/contacts.js:1161 js/contacts.js:1173 -#: js/contacts.js:1196 js/contacts.js:1449 js/contacts.js:1457 -#: js/contacts.js:1483 js/contacts.js:1494 js/contacts.js:1509 -#: js/contacts.js:1526 js/contacts.js:1596 js/contacts.js:1644 -#: js/contacts.js:1654 js/contacts.js:1657 +#: js/contacts.js:58 js/contacts.js:347 js/contacts.js:363 js/contacts.js:376 +#: js/contacts.js:651 js/contacts.js:691 js/contacts.js:717 js/contacts.js:754 +#: js/contacts.js:826 js/contacts.js:832 js/contacts.js:844 js/contacts.js:878 +#: js/contacts.js:1141 js/contacts.js:1149 js/contacts.js:1158 +#: js/contacts.js:1193 js/contacts.js:1225 js/contacts.js:1237 +#: js/contacts.js:1260 js/contacts.js:1522 msgid "Error" -msgstr "" +msgstr "Fel" -#: js/contacts.js:364 -msgid "Are you sure you want to delete this contact?" -msgstr "" - -#: js/contacts.js:364 -msgid "Warning" -msgstr "" - -#: js/contacts.js:605 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:631 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:747 js/contacts.js:765 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:781 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1056 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1064 js/contacts.js:1449 js/contacts.js:1634 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1119 -msgid "Select photo" -msgstr "" - -#: js/contacts.js:1257 js/contacts.js:1290 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1305 templates/part.importaddressbook.php:25 -msgid "Drop a VCF file to import contacts." -msgstr "Släpp en VCF-fil för att importera kontakter." - -#: js/contacts.js:1475 -msgid "Import done. Success/Failure: " -msgstr "" - -#: js/contacts.js:1476 -msgid "OK" -msgstr "" - -#: js/contacts.js:1494 -msgid "Displayname cannot be empty." -msgstr "" - -#: js/contacts.js:1634 -msgid "Upload too large" -msgstr "" - -#: js/contacts.js:1638 -msgid "Only image files can be used as profile picture." -msgstr "" - -#: js/contacts.js:1638 -msgid "Wrong file type" -msgstr "" - -#: js/contacts.js:1644 -msgid "" -"Your browser doesn't support AJAX upload. Please click on the profile " -"picture to select a photo to upload." -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: lib/app.php:30 -msgid "Addressbook not found." -msgstr "Hittade inte adressboken" - -#: lib/app.php:34 -msgid "This is not your addressbook." -msgstr "Det här är inte din adressbok." - -#: lib/app.php:45 -msgid "Contact could not be found." -msgstr "Kontakt kunde inte hittas." - -#: lib/app.php:101 templates/part.contact.php:109 -msgid "Address" -msgstr "Adress" - -#: lib/app.php:102 -msgid "Telephone" -msgstr "Telefon" - -#: lib/app.php:103 templates/part.contact.php:108 -msgid "Email" -msgstr "E-post" - -#: lib/app.php:104 templates/part.contact.php:33 templates/part.contact.php:34 -#: templates/part.contact.php:104 -msgid "Organization" -msgstr "Organisation" - -#: lib/app.php:116 lib/app.php:123 lib/app.php:133 -msgid "Work" -msgstr "Arbete" - -#: lib/app.php:117 lib/app.php:121 lib/app.php:134 -msgid "Home" -msgstr "Hem" - -#: lib/app.php:122 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:124 -msgid "Text" -msgstr "Text" - -#: lib/app.php:125 -msgid "Voice" -msgstr "Röst" - -#: lib/app.php:126 -msgid "Message" -msgstr "Meddelande" - -#: lib/app.php:127 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:128 -msgid "Video" -msgstr "Video" - -#: lib/app.php:129 -msgid "Pager" -msgstr "Personsökare" - -#: lib/app.php:135 -msgid "Internet" -msgstr "Internet" - -#: lib/hooks.php:79 -msgid "{name}'s Birthday" -msgstr "{name}'s födelsedag" - -#: lib/search.php:22 +#: js/contacts.js:389 lib/search.php:15 msgid "Contact" msgstr "Kontakt" -#: templates/index.php:13 +#: js/contacts.js:389 +msgid "New" +msgstr "Ny" + +#: js/contacts.js:389 +msgid "New Contact" +msgstr "Ny kontakt" + +#: js/contacts.js:691 +msgid "This property has to be non-empty." +msgstr "Denna egenskap får inte vara tom." + +#: js/contacts.js:717 +msgid "Couldn't serialize elements." +msgstr "Kunde inte serialisera element." + +#: js/contacts.js:826 js/contacts.js:844 +msgid "" +"'deleteProperty' called without type argument. Please report at " +"bugs.owncloud.org" +msgstr "\"deleteProperty\" anropades utan typargument. Vänligen rapportera till bugs.owncloud.org" + +#: js/contacts.js:860 +msgid "Edit name" +msgstr "Ändra namn" + +#: js/contacts.js:1141 +msgid "No files selected for upload." +msgstr "Inga filer valda för uppladdning" + +#: js/contacts.js:1149 +msgid "" +"The file you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "Filen du försöker ladda upp är större än den maximala storleken för filuppladdning på denna server." + +#: js/contacts.js:1314 js/contacts.js:1348 +msgid "Select type" +msgstr "Välj typ" + +#: js/loader.js:49 +msgid "Result: " +msgstr "Resultat:" + +#: js/loader.js:49 +msgid " imported, " +msgstr "importerad," + +#: js/loader.js:49 +msgid " failed." +msgstr "misslyckades." + +#: lib/app.php:29 +msgid "Addressbook not found." +msgstr "Hittade inte adressboken" + +#: lib/app.php:33 +msgid "This is not your addressbook." +msgstr "Det här är inte din adressbok." + +#: lib/app.php:44 +msgid "Contact could not be found." +msgstr "Kontakt kunde inte hittas." + +#: lib/app.php:100 templates/part.contact.php:116 +msgid "Address" +msgstr "Adress" + +#: lib/app.php:101 +msgid "Telephone" +msgstr "Telefon" + +#: lib/app.php:102 templates/part.contact.php:115 +msgid "Email" +msgstr "E-post" + +#: lib/app.php:103 templates/part.contact.php:38 templates/part.contact.php:39 +#: templates/part.contact.php:111 +msgid "Organization" +msgstr "Organisation" + +#: lib/app.php:115 lib/app.php:122 lib/app.php:132 lib/app.php:183 +msgid "Work" +msgstr "Arbete" + +#: lib/app.php:116 lib/app.php:120 lib/app.php:133 +msgid "Home" +msgstr "Hem" + +#: lib/app.php:121 +msgid "Mobile" +msgstr "Mobil" + +#: lib/app.php:123 +msgid "Text" +msgstr "Text" + +#: lib/app.php:124 +msgid "Voice" +msgstr "Röst" + +#: lib/app.php:125 +msgid "Message" +msgstr "Meddelande" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Personsökare" + +#: lib/app.php:134 +msgid "Internet" +msgstr "Internet" + +#: lib/app.php:169 templates/part.contact.php:44 +#: templates/part.contact.php:113 +msgid "Birthday" +msgstr "Födelsedag" + +#: lib/app.php:170 +msgid "Business" +msgstr "Företag" + +#: lib/app.php:171 +msgid "Call" +msgstr "Ring" + +#: lib/app.php:172 +msgid "Clients" +msgstr "Kunder" + +#: lib/app.php:173 +msgid "Deliverer" +msgstr "Leverera" + +#: lib/app.php:174 +msgid "Holidays" +msgstr "Helgdagar" + +#: lib/app.php:175 +msgid "Ideas" +msgstr "Idéer" + +#: lib/app.php:176 +msgid "Journey" +msgstr "" + +#: lib/app.php:177 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:178 +msgid "Meeting" +msgstr "" + +#: lib/app.php:179 +msgid "Other" +msgstr "" + +#: lib/app.php:180 +msgid "Personal" +msgstr "" + +#: lib/app.php:181 +msgid "Projects" +msgstr "" + +#: lib/app.php:182 +msgid "Questions" +msgstr "" + +#: lib/hooks.php:102 +msgid "{name}'s Birthday" +msgstr "{name}'s födelsedag" + +#: templates/index.php:15 msgid "Add Contact" msgstr "Lägg till kontakt" -#: templates/index.php:14 +#: templates/index.php:16 templates/index.php:18 templates/part.import.php:17 +msgid "Import" +msgstr "Importera" + +#: templates/index.php:20 msgid "Addressbooks" msgstr "Adressböcker" +#: templates/index.php:37 templates/part.import.php:24 +msgid "Close" +msgstr "Stäng" + +#: templates/index.php:39 +msgid "Keyboard shortcuts" +msgstr "" + +#: templates/index.php:41 +msgid "Navigation" +msgstr "" + +#: templates/index.php:44 +msgid "Next contact in list" +msgstr "" + +#: templates/index.php:46 +msgid "Previous contact in list" +msgstr "" + +#: templates/index.php:48 +msgid "Expand/collapse current addressbook" +msgstr "" + +#: templates/index.php:50 +msgid "Next/previous addressbook" +msgstr "" + +#: templates/index.php:54 +msgid "Actions" +msgstr "" + +#: templates/index.php:57 +msgid "Refresh contacts list" +msgstr "" + +#: templates/index.php:59 +msgid "Add new contact" +msgstr "" + +#: templates/index.php:61 +msgid "Add new addressbook" +msgstr "" + +#: templates/index.php:63 +msgid "Delete current contact" +msgstr "" + #: templates/part.chooseaddressbook.php:1 msgid "Configure Address Books" msgstr "Konfigurera adressböcker" @@ -444,11 +500,7 @@ msgstr "Konfigurera adressböcker" msgid "New Address Book" msgstr "Ny adressbok" -#: templates/part.chooseaddressbook.php:17 -msgid "Import from VCF" -msgstr "Importera från VCF" - -#: templates/part.chooseaddressbook.php:22 +#: templates/part.chooseaddressbook.php:21 #: templates/part.chooseaddressbook.rowfields.php:8 msgid "CardDav Link" msgstr "CardDAV länk" @@ -462,186 +514,195 @@ msgid "Edit" msgstr "Redigera" #: templates/part.chooseaddressbook.rowfields.php:17 -#: templates/part.contact.php:34 templates/part.contact.php:36 -#: templates/part.contact.php:38 templates/part.contact.php:42 +#: templates/part.contact.php:39 templates/part.contact.php:41 +#: templates/part.contact.php:43 templates/part.contact.php:45 +#: templates/part.contact.php:49 msgid "Delete" msgstr "Radera" -#: templates/part.contact.php:12 -msgid "Download contact" -msgstr "Ladda ner kontakt" - -#: templates/part.contact.php:13 -msgid "Delete contact" -msgstr "Radera kontakt" - -#: templates/part.contact.php:19 +#: templates/part.contact.php:16 msgid "Drop photo to upload" msgstr "Släpp foto för att ladda upp" -#: templates/part.contact.php:29 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr " anpassad, korta namn, hela namn, bakåt eller bakåt med komma" - -#: templates/part.contact.php:30 -msgid "Edit name details" -msgstr "Redigera detaljer för namn" - -#: templates/part.contact.php:35 templates/part.contact.php:105 -msgid "Nickname" -msgstr "Smeknamn" - -#: templates/part.contact.php:36 -msgid "Enter nickname" -msgstr "Ange smeknamn" - -#: templates/part.contact.php:37 templates/part.contact.php:106 -msgid "Birthday" -msgstr "Födelsedag" - -#: templates/part.contact.php:38 -msgid "dd-mm-yyyy" -msgstr "dd-mm-åååå" - -#: templates/part.contact.php:39 templates/part.contact.php:111 -msgid "Groups" -msgstr "Grupper" - -#: templates/part.contact.php:41 -msgid "Separate groups with commas" -msgstr "Separera grupperna med kommatecken" - -#: templates/part.contact.php:42 -msgid "Edit groups" -msgstr "Editera grupper" - -#: templates/part.contact.php:55 templates/part.contact.php:69 -msgid "Preferred" -msgstr "Föredragen" - -#: templates/part.contact.php:56 -msgid "Please specify a valid email address." -msgstr "Vänligen ange en giltig e-postadress" - -#: templates/part.contact.php:56 -msgid "Enter email address" -msgstr "Ange e-postadress" - -#: templates/part.contact.php:60 -msgid "Mail to address" -msgstr "Posta till adress." - -#: templates/part.contact.php:61 -msgid "Delete email address" -msgstr "Ta bort e-postadress" - -#: templates/part.contact.php:70 -msgid "Enter phone number" -msgstr "Ange ett telefonnummer" - -#: templates/part.contact.php:74 -msgid "Delete phone number" -msgstr "Ta bort telefonnummer" - -#: templates/part.contact.php:84 -msgid "View on map" -msgstr "Visa på karta" - -#: templates/part.contact.php:84 -msgid "Edit address details" -msgstr "Redigera detaljer för adress" - -#: templates/part.contact.php:95 -msgid "Add notes here." -msgstr "Lägg till noteringar här." - -#: templates/part.contact.php:101 -msgid "Add field" -msgstr "Lägg till fält" - -#: templates/part.contact.php:103 -msgid "Profile picture" -msgstr "Profilbild" - -#: templates/part.contact.php:107 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:110 -msgid "Note" -msgstr "Notering" - -#: templates/part.contactphoto.php:8 +#: templates/part.contact.php:18 msgid "Delete current photo" msgstr "Ta bort aktuellt foto" -#: templates/part.contactphoto.php:9 +#: templates/part.contact.php:19 msgid "Edit current photo" msgstr "Redigera aktuellt foto" -#: templates/part.contactphoto.php:10 +#: templates/part.contact.php:20 msgid "Upload new photo" msgstr "Ladda upp ett nytt foto" -#: templates/part.contactphoto.php:11 +#: templates/part.contact.php:21 msgid "Select photo from ownCloud" msgstr "Välj foto från ownCloud" -#: templates/part.cropphoto.php:64 -msgid "The temporary image has been removed from cache." +#: templates/part.contact.php:34 +msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" +msgstr " anpassad, korta namn, hela namn, bakåt eller bakåt med komma" + +#: templates/part.contact.php:35 +msgid "Edit name details" +msgstr "Redigera detaljer för namn" + +#: templates/part.contact.php:40 templates/part.contact.php:112 +msgid "Nickname" +msgstr "Smeknamn" + +#: templates/part.contact.php:41 +msgid "Enter nickname" +msgstr "Ange smeknamn" + +#: templates/part.contact.php:42 templates/part.contact.php:118 +msgid "Web site" msgstr "" -#: templates/part.edit_address_dialog.php:9 +#: templates/part.contact.php:43 +msgid "http://www.somesite.com" +msgstr "" + +#: templates/part.contact.php:43 +msgid "Go to web site" +msgstr "" + +#: templates/part.contact.php:45 +msgid "dd-mm-yyyy" +msgstr "dd-mm-åååå" + +#: templates/part.contact.php:46 templates/part.contact.php:119 +msgid "Groups" +msgstr "Grupper" + +#: templates/part.contact.php:48 +msgid "Separate groups with commas" +msgstr "Separera grupperna med kommatecken" + +#: templates/part.contact.php:49 +msgid "Edit groups" +msgstr "Editera grupper" + +#: templates/part.contact.php:62 templates/part.contact.php:76 +msgid "Preferred" +msgstr "Föredragen" + +#: templates/part.contact.php:63 +msgid "Please specify a valid email address." +msgstr "Vänligen ange en giltig e-postadress" + +#: templates/part.contact.php:63 +msgid "Enter email address" +msgstr "Ange e-postadress" + +#: templates/part.contact.php:67 +msgid "Mail to address" +msgstr "Posta till adress." + +#: templates/part.contact.php:68 +msgid "Delete email address" +msgstr "Ta bort e-postadress" + +#: templates/part.contact.php:77 +msgid "Enter phone number" +msgstr "Ange ett telefonnummer" + +#: templates/part.contact.php:81 +msgid "Delete phone number" +msgstr "Ta bort telefonnummer" + +#: templates/part.contact.php:91 +msgid "View on map" +msgstr "Visa på karta" + +#: templates/part.contact.php:91 +msgid "Edit address details" +msgstr "Redigera detaljer för adress" + +#: templates/part.contact.php:102 +msgid "Add notes here." +msgstr "Lägg till noteringar här." + +#: templates/part.contact.php:109 +msgid "Add field" +msgstr "Lägg till fält" + +#: templates/part.contact.php:114 +msgid "Phone" +msgstr "Telefon" + +#: templates/part.contact.php:117 +msgid "Note" +msgstr "Notering" + +#: templates/part.contact.php:122 +msgid "Download contact" +msgstr "Ladda ner kontakt" + +#: templates/part.contact.php:123 +msgid "Delete contact" +msgstr "Radera kontakt" + +#: templates/part.cropphoto.php:65 +msgid "The temporary image has been removed from cache." +msgstr "Den tillfälliga bilden har raderats från cache." + +#: templates/part.edit_address_dialog.php:6 msgid "Edit address" msgstr "Editera adress" -#: templates/part.edit_address_dialog.php:14 +#: templates/part.edit_address_dialog.php:10 msgid "Type" msgstr "Typ" -#: templates/part.edit_address_dialog.php:22 -#: templates/part.edit_address_dialog.php:25 +#: templates/part.edit_address_dialog.php:18 +#: templates/part.edit_address_dialog.php:21 msgid "PO Box" msgstr "Postbox" -#: templates/part.edit_address_dialog.php:29 -#: templates/part.edit_address_dialog.php:32 +#: templates/part.edit_address_dialog.php:24 +msgid "Street address" +msgstr "" + +#: templates/part.edit_address_dialog.php:27 +msgid "Street and number" +msgstr "" + +#: templates/part.edit_address_dialog.php:30 msgid "Extended" msgstr "Utökad" -#: templates/part.edit_address_dialog.php:35 -#: templates/part.edit_address_dialog.php:38 -msgid "Street" -msgstr "Gata" +#: templates/part.edit_address_dialog.php:33 +msgid "Apartment number etc." +msgstr "" -#: templates/part.edit_address_dialog.php:41 -#: templates/part.edit_address_dialog.php:44 +#: templates/part.edit_address_dialog.php:36 +#: templates/part.edit_address_dialog.php:39 msgid "City" msgstr "Stad" -#: templates/part.edit_address_dialog.php:47 -#: templates/part.edit_address_dialog.php:50 +#: templates/part.edit_address_dialog.php:42 msgid "Region" msgstr "Län" -#: templates/part.edit_address_dialog.php:53 -#: templates/part.edit_address_dialog.php:56 +#: templates/part.edit_address_dialog.php:45 +msgid "E.g. state or province" +msgstr "" + +#: templates/part.edit_address_dialog.php:48 msgid "Zipcode" msgstr "Postnummer" -#: templates/part.edit_address_dialog.php:59 -#: templates/part.edit_address_dialog.php:62 +#: templates/part.edit_address_dialog.php:51 +msgid "Postal code" +msgstr "" + +#: templates/part.edit_address_dialog.php:54 +#: templates/part.edit_address_dialog.php:57 msgid "Country" msgstr "Land" -#: templates/part.edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Editera kategorier" - -#: templates/part.edit_categories_dialog.php:14 -msgid "Add" -msgstr "Ny" - #: templates/part.edit_name_dialog.php:16 msgid "Addressbook" msgstr "Adressbok" @@ -747,7 +808,6 @@ msgid "Submit" msgstr "Skicka in" #: templates/part.editaddressbook.php:30 -#: templates/part.importaddressbook.php:34 msgid "Cancel" msgstr "Avbryt" @@ -767,33 +827,10 @@ msgstr "skapa en ny adressbok" msgid "Name of new addressbook" msgstr "Namn för ny adressbok" -#: templates/part.import.php:17 -msgid "Import" -msgstr "Importera" - #: templates/part.import.php:20 msgid "Importing contacts" msgstr "Importerar kontakter" -#: templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/part.importaddressbook.php:12 -msgid "" -"Currently this import function doesn't work while encryption is enabled.
Please upload your VCF file with the file manager and click on it to " -"import." -msgstr "" - -#: templates/part.importaddressbook.php:16 -msgid "Select address book to import to:" -msgstr "Importera till adressbok:" - -#: templates/part.importaddressbook.php:26 -msgid "Select from HD" -msgstr "Välj från hårddisk" - #: templates/part.no_contacts.php:2 msgid "You have no contacts in your addressbook." msgstr "Du har inga kontakter i din adressbok." @@ -806,6 +843,18 @@ msgstr "Lägg till en kontakt" msgid "Configure addressbooks" msgstr "Konfigurera adressböcker" +#: templates/part.selectaddressbook.php:1 +msgid "Select Address Books" +msgstr "" + +#: templates/part.selectaddressbook.php:20 +msgid "Enter name" +msgstr "" + +#: templates/part.selectaddressbook.php:22 +msgid "Enter description" +msgstr "" + #: templates/settings.php:4 msgid "CardDAV syncing addresses" msgstr "CardDAV synkningsadresser" @@ -821,3 +870,7 @@ msgstr "Primär adress (Kontakt o.a.)" #: templates/settings.php:8 msgid "iOS/OS X" msgstr "iOS/OS X" + +#: templates/settings.php:10 +msgid "Read only vCard directory link(s)" +msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 2dc7248b2f..cc20278cfd 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -6,15 +6,16 @@ # Christer Eriksson , 2012. # Daniel Sandman , 2012. # , 2011. +# , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:14+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/language/sv/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-29 20:37+0000\n" +"Last-Translator: maghog \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" "Content-Transfer-Encoding: 8bit\n" @@ -35,85 +36,81 @@ msgstr "Denna kategori finns redan:" #: js/jquery-ui-1.8.16.custom.min.js:511 msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" +msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:520 +#: js/js.js:519 msgid "January" -msgstr "" +msgstr "Januari" -#: js/js.js:520 +#: js/js.js:519 msgid "February" -msgstr "" +msgstr "Februari" -#: js/js.js:520 +#: js/js.js:519 msgid "March" -msgstr "" +msgstr "Mars" -#: js/js.js:520 +#: js/js.js:519 msgid "April" -msgstr "" +msgstr "April" -#: js/js.js:520 +#: js/js.js:519 msgid "May" -msgstr "" +msgstr "Maj" + +#: js/js.js:519 +msgid "June" +msgstr "Juni" #: js/js.js:520 -msgid "June" -msgstr "" - -#: js/js.js:521 msgid "July" -msgstr "" +msgstr "Juli" -#: js/js.js:521 +#: js/js.js:520 msgid "August" -msgstr "" +msgstr "Augusti" -#: js/js.js:521 +#: js/js.js:520 msgid "September" -msgstr "" +msgstr "September" -#: js/js.js:521 +#: js/js.js:520 msgid "October" -msgstr "" +msgstr "Oktober" -#: js/js.js:521 +#: js/js.js:520 msgid "November" -msgstr "" +msgstr "November" -#: js/js.js:521 +#: js/js.js:520 msgid "December" -msgstr "" +msgstr "December" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Avbryt" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Nej" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Ja" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "Ok" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Inga kategorier valda för radering." #: js/oc-vcategories.js:68 msgid "Error" -msgstr "" +msgstr "Fel" #: lostpassword/index.php:26 -msgid "Owncloud password reset" -msgstr "Owncloud lösenordsåterställning" - -#: lostpassword/index.php:27 msgid "ownCloud password reset" msgstr "ownCloud lösenordsåterställning" @@ -243,11 +240,11 @@ msgstr "Avsluta installation" msgid "web services under your control" msgstr "webbtjänster under din kontroll" -#: templates/layout.user.php:41 +#: templates/layout.user.php:49 msgid "Log out" msgstr "Logga ut" -#: templates/layout.user.php:53 templates/layout.user.php:54 +#: templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Inställningar" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 60c136d611..799224c381 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -5,49 +5,50 @@ # Translators: # Christer Eriksson , 2012. # Daniel Sandman , 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-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/language/sv/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvist uppladdad" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Ingen fil blev uppladdad" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Saknar en tillfällig mapp" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" @@ -55,57 +56,69 @@ msgstr "Misslyckades spara till disk" msgid "Files" msgstr "Filer" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "Sluta dela" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Ta bort" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Gererar ZIP-fil. Det kan ta lite tid." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes." #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Uppladdningsfel" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Väntar" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Uppladdning avbruten." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Storlek" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Ändrad" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "mapp" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "mappar" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "fil" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "filer" #: templates/admin.php:5 msgid "File handling" @@ -175,10 +188,6 @@ msgstr "Dela" msgid "Download" msgstr "Ladda ned" -#: templates/index.php:56 -msgid "Delete" -msgstr "Ta bort" - #: templates/index.php:64 msgid "Upload too large" msgstr "För stor uppladdning" diff --git a/l10n/sv/gallery.po b/l10n/sv/gallery.po index 8af72bc519..3bb99841a7 100644 --- a/l10n/sv/gallery.po +++ b/l10n/sv/gallery.po @@ -4,77 +4,42 @@ # # Translators: # Christer Eriksson , 2012. +# , 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/language/sv/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-29 07:37+0000\n" +"Last-Translator: maghog \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" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:37 +#: appinfo/app.php:39 msgid "Pictures" msgstr "Bilder" -#: js/album_cover.js:44 +#: js/pictures.js:12 msgid "Share gallery" -msgstr "" +msgstr "Dela galleri" -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 +#: js/pictures.js:32 msgid "Error: " -msgstr "" +msgstr "Fel:" -#: js/album_cover.js:64 js/album_cover.js:100 +#: js/pictures.js:32 msgid "Internal error" -msgstr "" +msgstr "Internt fel" -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Inställningar" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Sök igen" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Stoppa" - -#: templates/index.php:18 -msgid "Share" -msgstr "Dela" +#: templates/index.php:27 +msgid "Slideshow" +msgstr "Bildspel" #: templates/view_album.php:19 msgid "Back" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 7078e2cdb0..eda07bdbe0 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/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-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-07-30 02:03+0200\n" +"PO-Revision-Date: 2012-07-29 07:56+0000\n" +"Last-Translator: maghog \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" @@ -19,94 +20,94 @@ msgstr "" #: app.php:287 msgid "Help" -msgstr "" +msgstr "Hjälp" #: app.php:294 msgid "Personal" -msgstr "" +msgstr "Personligt" #: app.php:299 msgid "Settings" -msgstr "" +msgstr "Inställningar" #: app.php:304 msgid "Users" -msgstr "" +msgstr "Användare" #: app.php:311 msgid "Apps" -msgstr "" +msgstr "Program" #: app.php:313 msgid "Admin" -msgstr "" +msgstr "Admin" #: files.php:245 msgid "ZIP download is turned off." -msgstr "" +msgstr "Nedladdning av ZIP är avstängd." #: files.php:246 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Filer laddas ner en åt gången." #: files.php:246 files.php:271 msgid "Back to Files" -msgstr "" +msgstr "Tillbaka till Filer" #: files.php:270 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Valda filer är för stora för att skapa zip-fil." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Applikationen är inte aktiverad" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Fel vid autentisering" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Ogiltig token. Ladda om sidan." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "sekunder sedan" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1 minut sedan" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d minuter sedan" #: template.php:91 msgid "today" -msgstr "" +msgstr "idag" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "igår" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d dagar sedan" #: template.php:94 msgid "last month" -msgstr "" +msgstr "förra månaden" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "månader sedan" #: template.php:96 msgid "last year" -msgstr "" +msgstr "förra året" #: template.php:97 msgid "years ago" -msgstr "" +msgstr "år sedan" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 0c533799d1..a1a94b378f 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -6,15 +6,16 @@ # Christer Eriksson , 2012. # Daniel Sandman , 2012. # , 2011. +# , 2012. # , 2011, 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 00:02+0000\n" -"Last-Translator: owncloud_robot \n" +"POT-Creation-Date: 2012-07-30 02:03+0200\n" +"PO-Revision-Date: 2012-07-29 20:26+0000\n" +"Last-Translator: maghog \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +41,7 @@ msgstr "Ogiltig begäran" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Autentiseringsfel" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -64,7 +65,7 @@ msgstr "__language_name__" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "Säkerhetsvarning" #: templates/admin.php:28 msgid "Log" @@ -208,7 +209,7 @@ msgstr "Annat" #: templates/users.php:80 msgid "SubAdmin" -msgstr "" +msgstr "Underadministratör" #: templates/users.php:82 msgid "Quota" @@ -216,7 +217,7 @@ msgstr "Kvot" #: templates/users.php:112 msgid "SubAdmin for ..." -msgstr "" +msgstr "Underadministratör för ..." #: templates/users.php:145 msgid "Delete" diff --git a/l10n/templates/bookmarks.pot b/l10n/templates/bookmarks.pot index 0cc6b48719..5ba1e16f7d 100644 --- a/l10n/templates/bookmarks.pot +++ b/l10n/templates/bookmarks.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/calendar.pot b/l10n/templates/calendar.pot index feb2ff4bd9..a3cbc60da6 100644 --- a/l10n/templates/calendar.pot +++ b/l10n/templates/calendar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/contacts.pot b/l10n/templates/contacts.pot index 696c3b7b1c..2be8f276fc 100644 --- a/l10n/templates/contacts.pot +++ b/l10n/templates/contacts.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 522d4104cd..a92c4d850a 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-07-29 02:03+0200\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" "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 5f5750d16a..e334f679d9 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-07-29 02:03+0200\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -60,7 +60,11 @@ msgid "Delete" msgstr "" #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 diff --git a/l10n/templates/gallery.pot b/l10n/templates/gallery.pot index 1969f7b410..1971a7d641 100644 --- a/l10n/templates/gallery.pot +++ b/l10n/templates/gallery.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" "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 0fe46e895a..5c59b13647 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-07-29 02:04+0200\n" +"POT-Creation-Date: 2012-07-30 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/media.pot b/l10n/templates/media.pot index 68f2dd0d3f..adf07f571b 100644 --- a/l10n/templates/media.pot +++ b/l10n/templates/media.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-29 02:03+0200\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" "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 52b7bbdb0b..e3e49ed11a 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-07-29 02:04+0200\n" +"POT-Creation-Date: 2012-07-30 02:03+0200\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 5e8c76459a..6425a4d7c6 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Thai (Thailand) (http://www.transifex.net/projects/p/owncloud/language/th_TH/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง upload_max_filesize ที่ระบุเอาไว้ในไฟล์ php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ที่อัพโหลดยังไม่ได้ถูกอัพโหลดอย่างสมบูรณ์" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "ยังไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "แฟ้มเอกสารชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" @@ -53,57 +53,69 @@ msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้ msgid "Files" msgstr "ไฟล์" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "ลบ" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่" #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "เกิดข้อผิดพลาดในการอัพโหลด" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "อยู่ระหว่างดำเนินการ" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "การอัพโหลดถูกยกเลิก" #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "ขนาด" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "โฟลเดอร์" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "โฟลเดอร์" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "ไฟล์" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "ไฟล์" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +185,6 @@ msgstr "แชร์" msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:56 -msgid "Delete" -msgstr "ลบ" - #: templates/index.php:64 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 94f7c3d109..6d792546a4 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Turkish (http://www.transifex.net/projects/p/owncloud/language/tr/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Bir hata yok, dosya başarıyla yüklendi" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Yüklenen dosya php.ini de belirtilen upload_max_filesize sınırını aşıyor" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Yüklenen dosyanın sadece bir kısmı yüklendi" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Hiç dosya yüklenmedi" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Geçici bir klasör eksik" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "Diske yazılamadı" @@ -53,57 +53,69 @@ msgstr "Diske yazılamadı" msgid "Files" msgstr "Dosyalar" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Sil" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "ZIP dosyası oluşturuluyor, biraz sürebilir." #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "Yükleme hatası" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "Bekliyor" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "Yükleme iptal edildi." #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Geçersiz isim, '/' işaretine izin verilmiyor." -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Boyut" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "dizin" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "dizinler" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "dosya" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "dosyalar" #: templates/admin.php:5 msgid "File handling" @@ -173,10 +185,6 @@ msgstr "Paylaş" msgid "Download" msgstr "İndir" -#: templates/index.php:56 -msgid "Delete" -msgstr "Sil" - #: templates/index.php:64 msgid "Upload too large" msgstr "Yüklemeniz çok büyük" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 4019b885f5..dd7bbef902 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Ukrainian (http://www.transifex.net/projects/p/owncloud/language/uk/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "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:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно відвантажено без помилок." -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "Розмір відвантаженого файлу перевищує директиву upload_max_filesize в php.ini" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "" @@ -53,8 +53,20 @@ msgstr "" msgid "Files" msgstr "Файли" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "Видалити" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -81,27 +93,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "Розмір" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "Змінено" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -173,10 +185,6 @@ msgstr "" msgid "Download" msgstr "Завантажити" -#: templates/index.php:56 -msgid "Delete" -msgstr "Видалити" - #: templates/index.php:64 msgid "Upload too large" msgstr "Файл занадто великий" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index c7b868c5bc..65038a686e 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:29+0000\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" "Last-Translator: owncloud_robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -61,7 +61,11 @@ msgid "Delete" msgstr "Xóa" #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 7410d7462d..1433f41f26 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -8,43 +8,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Chinese (China) (http://www.transifex.net/projects/p/owncloud/language/zh_CN/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_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" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "没有发生错误,文件上传成功。" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "上传的文件大小超过了php.ini 中指定的upload_max_filesize" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "只上传了文件的一部分" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "文件没有上传" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "写入磁盘失败" @@ -52,57 +52,69 @@ msgstr "写入磁盘失败" msgid "Files" msgstr "文件" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "删除" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "正在生成 ZIP 文件,可能需要一些时间" #: js/files.js:199 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" #: js/files.js:199 msgid "Upload Error" -msgstr "" +msgstr "上传错误" #: js/files.js:227 js/files.js:318 js/files.js:347 msgid "Pending" -msgstr "" +msgstr "操作等待中" #: js/files.js:332 msgid "Upload cancelled." -msgstr "" +msgstr "上传已取消" #: js/files.js:456 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "修改日期" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" -msgstr "" +msgstr "文件夹" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" -msgstr "" +msgstr "文件夹" -#: js/files.js:664 +#: js/files.js:669 msgid "file" -msgstr "" +msgstr "文件" -#: js/files.js:666 +#: js/files.js:671 msgid "files" -msgstr "" +msgstr "文件" #: templates/admin.php:5 msgid "File handling" @@ -172,10 +184,6 @@ msgstr "共享" msgid "Download" msgstr "下载" -#: templates/index.php:56 -msgid "Delete" -msgstr "删除" - #: templates/index.php:64 msgid "Upload too large" msgstr "上传文件过大" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 4af073269d..f868758276 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,43 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.net/projects/p/owncloud/language/zh_TW/)\n" +"POT-Creation-Date: 2012-07-30 02:02+0200\n" +"PO-Revision-Date: 2012-07-30 00:03+0000\n" +"Last-Translator: owncloud_robot \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" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:19 +#: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" msgstr "無錯誤,檔案上傳成功" -#: ajax/upload.php:20 +#: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "上傳的檔案超過了 php.ini 中的 upload_max_filesize 設定" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:22 +#: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" msgstr "只有部分檔案被上傳" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "No file was uploaded" msgstr "無已上傳檔案" -#: ajax/upload.php:24 +#: ajax/upload.php:25 msgid "Missing a temporary folder" msgstr "遺失暫存資料夾" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" @@ -53,8 +53,20 @@ msgstr "寫入硬碟失敗" msgid "Files" msgstr "檔案" +#: js/fileactions.js:95 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:97 templates/index.php:56 +msgid "Delete" +msgstr "刪除" + #: js/filelist.js:186 -msgid "undo deletion" +msgid "deleted" +msgstr "" + +#: js/filelist.js:186 +msgid "undo" msgstr "" #: js/files.js:170 @@ -81,27 +93,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:626 templates/index.php:55 +#: js/files.js:631 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:627 templates/index.php:56 +#: js/files.js:632 templates/index.php:56 msgid "Modified" msgstr "修改" -#: js/files.js:654 +#: js/files.js:659 msgid "folder" msgstr "" -#: js/files.js:656 +#: js/files.js:661 msgid "folders" msgstr "" -#: js/files.js:664 +#: js/files.js:669 msgid "file" msgstr "" -#: js/files.js:666 +#: js/files.js:671 msgid "files" msgstr "" @@ -173,10 +185,6 @@ msgstr "分享" msgid "Download" msgstr "下載" -#: templates/index.php:56 -msgid "Delete" -msgstr "刪除" - #: templates/index.php:64 msgid "Upload too large" msgstr "上傳過大" diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 19746ba028..d3548c7a13 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -3,5 +3,23 @@ "Personal" => "Persönlich", "Settings" => "Einstellungen", "Users" => "Benutzer", -"Apps" => "Apps" +"Apps" => "Apps", +"Admin" => "Administrator", +"ZIP download is turned off." => "ZIP-Download ist deaktiviert.", +"Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", +"Back to Files" => "Zurück zu \"Dateien\"", +"Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine zip-Datei zu generieren.", +"Application is not enabled" => "Anwendung ist nicht aktiviert", +"Authentication error" => "Authentifizierungs-Fehler", +"Token expired. Please reload page." => "Token abgelaufen. Bitte Seite neuladen.", +"seconds ago" => "vor wenigen Sekunden", +"1 minute ago" => "Vor einer Minute", +"%d minutes ago" => "Vor %d Minuten", +"today" => "Heute", +"yesterday" => "Gestern", +"%d days ago" => "Vor %d Tagen", +"last month" => "Letzten Monat", +"months ago" => "Vor Monaten", +"last year" => "Letztes Jahr", +"years ago" => "Vor Jahren" ); diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php new file mode 100644 index 0000000000..4d9a63c34b --- /dev/null +++ b/lib/l10n/sv.php @@ -0,0 +1,25 @@ + "Hjälp", +"Personal" => "Personligt", +"Settings" => "Inställningar", +"Users" => "Användare", +"Apps" => "Program", +"Admin" => "Admin", +"ZIP download is turned off." => "Nedladdning av ZIP är avstängd.", +"Files need to be downloaded one by one." => "Filer laddas ner en åt gången.", +"Back to Files" => "Tillbaka till Filer", +"Selected files too large to generate zip file." => "Valda filer är för stora för att skapa zip-fil.", +"Application is not enabled" => "Applikationen är inte aktiverad", +"Authentication error" => "Fel vid autentisering", +"Token expired. Please reload page." => "Ogiltig token. Ladda om sidan.", +"seconds ago" => "sekunder sedan", +"1 minute ago" => "1 minut sedan", +"%d minutes ago" => "%d minuter sedan", +"today" => "idag", +"yesterday" => "igår", +"%d days ago" => "%d dagar sedan", +"last month" => "förra månaden", +"months ago" => "månader sedan", +"last year" => "förra året", +"years ago" => "år sedan" +); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index fbaab6d6c9..010146283f 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -11,7 +11,7 @@ "__language_name__" => "Deutsch", "Security Warning" => "Sicherheitshinweis", "Log" => "Log", -"More" => "mehr", +"More" => "Mehr", "Add your App" => "Füge deine App hinzu", "Select an App" => "Wähle eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen auf apps.owncloud.com", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 305728d3dc..ad599402d3 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -3,6 +3,7 @@ "Invalid email" => "Correo Incorrecto", "OpenID Changed" => "OpenID cambiado", "Invalid request" => "Solicitud no válida", +"Authentication error" => "Error de autenticación", "Language changed" => "Idioma cambiado", "Disable" => "Desactivar", "Enable" => "Activar", @@ -44,6 +45,8 @@ "Create" => "Crear", "Default Quota" => "Cuota predeterminada", "Other" => "Otro", +"SubAdmin" => "SubAdmin", "Quota" => "Cuota", +"SubAdmin for ..." => "SubAdmin para ...", "Delete" => "Eliminar" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 575b01432e..59185d68e3 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -3,6 +3,7 @@ "Invalid email" => "Niepoprawny email", "OpenID Changed" => "Zmieniono OpenID", "Invalid request" => "Nieprawidłowe żądanie", +"Authentication error" => "Błąd uwierzytelniania", "Language changed" => "Język zmieniony", "Disable" => "Wyłączone", "Enable" => "Włączone", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 05d64302ea..b942b86ed2 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -3,11 +3,13 @@ "Invalid email" => "Ogiltig e-post", "OpenID Changed" => "OpenID ändrat", "Invalid request" => "Ogiltig begäran", +"Authentication error" => "Autentiseringsfel", "Language changed" => "Språk ändrades", "Disable" => "Avaktivera", "Enable" => "Aktivera", "Saving..." => "Sparar...", "__language_name__" => "__language_name__", +"Security Warning" => "Säkerhetsvarning", "Log" => "Logg", "More" => "Mera", "Add your App" => "Lägg till din applikation", @@ -43,6 +45,8 @@ "Create" => "Skapa", "Default Quota" => "Förvald datakvot", "Other" => "Annat", +"SubAdmin" => "Underadministratör", "Quota" => "Kvot", +"SubAdmin for ..." => "Underadministratör för ...", "Delete" => "Ta bort" ); From fa6d26b53c020940e38f632940f73dbbb56f6847 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Fri, 27 Jul 2012 04:29:15 +0200 Subject: [PATCH 62/68] Removed text/plain header. --- apps/contacts/ajax/currentphoto.php | 2 -- apps/contacts/ajax/savecrop.php | 3 --- apps/contacts/ajax/uploadphoto.php | 2 -- 3 files changed, 7 deletions(-) diff --git a/apps/contacts/ajax/currentphoto.php b/apps/contacts/ajax/currentphoto.php index 96080e661e..c8cccf83a6 100644 --- a/apps/contacts/ajax/currentphoto.php +++ b/apps/contacts/ajax/currentphoto.php @@ -20,8 +20,6 @@ * */ -// Firefox and Konqueror tries to download application/json for me. --Arthur -OCP\JSON::setContentTypeHeader('text/plain'); OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('contacts'); require_once 'loghandler.php'; diff --git a/apps/contacts/ajax/savecrop.php b/apps/contacts/ajax/savecrop.php index 8ee2e46bf0..07de138757 100644 --- a/apps/contacts/ajax/savecrop.php +++ b/apps/contacts/ajax/savecrop.php @@ -24,9 +24,6 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('contacts'); OCP\JSON::callCheck(); -// Firefox and Konqueror tries to download application/json for me. --Arthur -OCP\JSON::setContentTypeHeader('text/plain'); - require_once 'loghandler.php'; $image = null; diff --git a/apps/contacts/ajax/uploadphoto.php b/apps/contacts/ajax/uploadphoto.php index 4cd38db8c7..63abeb1fee 100644 --- a/apps/contacts/ajax/uploadphoto.php +++ b/apps/contacts/ajax/uploadphoto.php @@ -25,8 +25,6 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('contacts'); OCP\JSON::callCheck(); -// Firefox and Konqueror tries to download application/json for me. --Arthur -OCP\JSON::setContentTypeHeader('text/plain'); require_once 'loghandler.php'; $l10n = OC_Contacts_App::$l10n; // If it is a Drag'n'Drop transfer it's handled here. From b25b73b5b41618247e8a239a332a148b45d7f75b Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 30 Jul 2012 01:20:33 +0200 Subject: [PATCH 63/68] Fixed potential error in logging. --- apps/contacts/lib/vcard.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/contacts/lib/vcard.php b/apps/contacts/lib/vcard.php index ca171e792f..990e790c03 100644 --- a/apps/contacts/lib/vcard.php +++ b/apps/contacts/lib/vcard.php @@ -79,7 +79,7 @@ class OC_Contacts_VCard{ return false; } } else { - OCP\Util::writeLog('contacts', __CLASS__.'::'.__METHOD__.'. Addressbook id(s) argument is empty: '. $id, OCP\Util::DEBUG); + OCP\Util::writeLog('contacts', __CLASS__.'::'.__METHOD__.'. Addressbook id(s) argument is empty: '. print_r($id, true), OCP\Util::DEBUG); return false; } $cards = array(); @@ -129,7 +129,7 @@ class OC_Contacts_VCard{ return $result->fetchRow(); } - /** + /** * @brief Format property TYPE parameters for upgrading from v. 2.1 * @param $property Reference to a Sabre_VObject_Property. * In version 2.1 e.g. a phone can be formatted like: TEL;HOME;CELL:123456789 @@ -145,7 +145,7 @@ class OC_Contacts_VCard{ } } - /** + /** * @brief Decode properties for upgrading from v. 2.1 * @param $property Reference to a Sabre_VObject_Property. * The only encoding allowed in version 3.0 is 'b' for binary. All encoded strings From 118d9e17b6afe5c3c763737226a90307f67a03b9 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 30 Jul 2012 04:56:20 +0200 Subject: [PATCH 64/68] Check if the are contacts marked as deleted and warn if so. --- apps/contacts/js/contacts.js | 60 +++++++++++++++++++++++++++++++++--- 1 file changed, 55 insertions(+), 5 deletions(-) diff --git a/apps/contacts/js/contacts.js b/apps/contacts/js/contacts.js index 4c6c8bf3d9..34961360ee 100644 --- a/apps/contacts/js/contacts.js +++ b/apps/contacts/js/contacts.js @@ -14,17 +14,28 @@ Contacts={ UI:{ /** * Arguments: - * message: The text message to show. The only mandatory parameter. + * message: The text message to show. * timeout: The timeout in seconds before the notification disappears. Default 10. * timeouthandler: A function to run on timeout. * clickhandler: A function to run on click. If a timeouthandler is given it will be cancelled. * data: An object that will be passed as argument to the timeouthandler and clickhandler functions. + * cancel: If set cancel all ongoing timer events and hide the notification. */ notify:function(params) { self = this; if(!self.notifier) { self.notifier = $('#notification'); } + if(params.cancel) { + self.notifier.off('click'); + for(var id in self.notifier.data()) { + if($.isNumeric(id)) { + clearTimeout(parseInt(id)); + } + } + self.notifier.text('').fadeOut().removeData(); + return; + } self.notifier.text(params.message); self.notifier.fadeIn(); self.notifier.on('click', function() { $(this).fadeOut();}); @@ -460,6 +471,11 @@ Contacts={ } $('#rightcontent').data('id', newid); + Contacts.UI.Contacts.deletionQueue.push(this.id); + if(!window.onbeforeunload) { + window.onbeforeunload = Contacts.UI.Contacts.warnNotDeleted; + } + with(this) { delete id; delete fn; delete fullname; delete shortname; delete famname; delete givname; delete addname; delete honpre; delete honsuf; delete data; @@ -483,7 +499,7 @@ Contacts={ data:curlistitem, message:t('contacts','Click to undo deletion of "') + curlistitem.find('a').text() + '"', timeouthandler:function(contact) { - Contacts.UI.Card.doDelete(contact.data('id')); + Contacts.UI.Card.doDelete(contact.data('id'), true); delete contact; }, clickhandler:function(contact) { @@ -492,13 +508,21 @@ Contacts={ } }); }, - doDelete:function(id) { + doDelete:function(id, removeFromQueue) { + if(Contacts.UI.Contacts.deletionQueue.indexOf(id) == -1 && removeFromQueue) { + return; + } $.post(OC.filePath('contacts', 'ajax', 'deletecard.php'),{'id':id},function(jsondata) { if(jsondata.status == 'error'){ OC.dialogs.alert(jsondata.data.message, t('contacts', 'Error')); } + if(removeFromQueue) { + Contacts.UI.Contacts.deletionQueue.splice(Contacts.UI.Contacts.deletionQueue.indexOf(id), 1); + } + if(Contacts.UI.Contacts.deletionQueue.length == 0) { + window.onbeforeunload = null; + } }); - return false; }, loadContact:function(jsondata, bookid){ this.data = jsondata; @@ -1477,7 +1501,31 @@ Contacts={ }, Contacts:{ contacts:{}, + deletionQueue:[], batchnum:50, + warnNotDeleted:function(e) { + e = e || window.event; + var warn = t('contacts', 'Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted.'); + if (e) { + e.returnValue = String(warn); + } + if(Contacts.UI.Contacts.deletionQueue.length > 0) { + setTimeout(Contacts.UI.Contacts.deleteFilesInQueue, 1); + } + return warn; + }, + deleteFilesInQueue:function() { + var queue = Contacts.UI.Contacts.deletionQueue; + if(queue.length > 0) { + Contacts.UI.notify({cancel:true}); + while(queue.length > 0) { + var id = queue.pop(); + if(id) { + Contacts.UI.Card.doDelete(id, false); + } + } + } + }, getContact:function(id) { if(!this.contacts[id]) { this.contacts[id] = $('#contacts li[data-id="'+id+'"]'); @@ -1774,7 +1822,9 @@ $(document).ready(function(){ }); - // Load a contact. + //$(window).on('beforeunload', Contacts.UI.Contacts.deleteFilesInQueue); + + // Load a contact. $('.contacts').keydown(function(event) { if(event.which == 13 || event.which == 32) { $('.contacts').click(); From d614c3b1d5be7e05ce7248dc4a7b67f04a64a3d8 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 30 Jul 2012 05:31:06 +0200 Subject: [PATCH 65/68] Code style. --- apps/contacts/lib/app.php | 105 +++++++++++++++++++++++++------------- 1 file changed, 69 insertions(+), 36 deletions(-) diff --git a/apps/contacts/lib/app.php b/apps/contacts/lib/app.php index 689149367f..46e03240dc 100644 --- a/apps/contacts/lib/app.php +++ b/apps/contacts/lib/app.php @@ -23,14 +23,30 @@ class OC_Contacts_App { public static function getAddressbook($id) { $addressbook = OC_Contacts_Addressbook::find( $id ); - if( $addressbook === false || $addressbook['userid'] != OCP\USER::getUser()) { + if($addressbook === false || $addressbook['userid'] != OCP\USER::getUser()) { if ($addressbook === false) { - OCP\Util::writeLog('contacts', 'Addressbook not found: '. $id, OCP\Util::ERROR); - OCP\JSON::error(array('data' => array( 'message' => self::$l10n->t('Addressbook not found.')))); + OCP\Util::writeLog('contacts', + 'Addressbook not found: '. $id, + OCP\Util::ERROR); + OCP\JSON::error( + array( + 'data' => array( + 'message' => self::$l10n->t('Addressbook not found.') + ) + ) + ); } else { - OCP\Util::writeLog('contacts', 'Addressbook('.$id.') is not from '.OCP\USER::getUser(), OCP\Util::ERROR); - OCP\JSON::error(array('data' => array( 'message' => self::$l10n->t('This is not your addressbook.')))); + OCP\Util::writeLog('contacts', + 'Addressbook('.$id.') is not from '.OCP\USER::getUser(), + OCP\Util::ERROR); + OCP\JSON::error( + array( + 'data' => array( + 'message' => self::$l10n->t('This is not your addressbook.') + ) + ) + ); } exit(); } @@ -40,8 +56,17 @@ class OC_Contacts_App { public static function getContactObject($id) { $card = OC_Contacts_VCard::find( $id ); if( $card === false ) { - OCP\Util::writeLog('contacts', 'Contact could not be found: '.$id, OCP\Util::ERROR); - OCP\JSON::error(array('data' => array( 'message' => self::$l10n->t('Contact could not be found.').' '.print_r($id, true)))); + OCP\Util::writeLog('contacts', + 'Contact could not be found: '.$id, + OCP\Util::ERROR); + OCP\JSON::error( + array( + 'data' => array( + 'message' => self::$l10n->t('Contact could not be found.') + .' '.print_r($id, true) + ) + ) + ); exit(); } @@ -110,29 +135,29 @@ class OC_Contacts_App { public static function getTypesOfProperty($prop) { $l = self::$l10n; switch($prop) { - case 'ADR': - return array( - 'WORK' => $l->t('Work'), - 'HOME' => $l->t('Home'), - ); - case 'TEL': - return array( - 'HOME' => $l->t('Home'), - 'CELL' => $l->t('Mobile'), - 'WORK' => $l->t('Work'), - 'TEXT' => $l->t('Text'), - 'VOICE' => $l->t('Voice'), - 'MSG' => $l->t('Message'), - 'FAX' => $l->t('Fax'), - 'VIDEO' => $l->t('Video'), - 'PAGER' => $l->t('Pager'), - ); - case 'EMAIL': - return array( - 'WORK' => $l->t('Work'), - 'HOME' => $l->t('Home'), - 'INTERNET' => $l->t('Internet'), - ); + case 'ADR': + return array( + 'WORK' => $l->t('Work'), + 'HOME' => $l->t('Home'), + ); + case 'TEL': + return array( + 'HOME' => $l->t('Home'), + 'CELL' => $l->t('Mobile'), + 'WORK' => $l->t('Work'), + 'TEXT' => $l->t('Text'), + 'VOICE' => $l->t('Voice'), + 'MSG' => $l->t('Message'), + 'FAX' => $l->t('Fax'), + 'VIDEO' => $l->t('Video'), + 'PAGER' => $l->t('Pager'), + ); + case 'EMAIL': + return array( + 'WORK' => $l->t('Work'), + 'HOME' => $l->t('Home'), + 'INTERNET' => $l->t('Internet'), + ); } } @@ -142,11 +167,13 @@ class OC_Contacts_App { */ protected static function getVCategories() { if (is_null(self::$categories)) { - self::$categories = new OC_VCategories('contacts', null, self::getDefaultCategories()); + self::$categories = new OC_VCategories('contacts', + null, + self::getDefaultCategories()); } return self::$categories; } - + /** * @brief returns the categories for the user * @return (Array) $categories @@ -183,7 +210,7 @@ class OC_Contacts_App { (string)self::$l10n->t('Work'), ); } - + /** * scan vcards for categories. * @param $vccontacts VCards to scan. null to check all vcards for the current user. @@ -198,14 +225,20 @@ class OC_Contacts_App { } $start = 0; $batchsize = 10; - while($vccontacts = OC_Contacts_VCard::all($vcaddressbookids, $start, $batchsize)){ + while($vccontacts = + OC_Contacts_VCard::all($vcaddressbookids, $start, $batchsize)) { $cards = array(); foreach($vccontacts as $vccontact) { $cards[] = $vccontact['carddata']; } - OCP\Util::writeLog('contacts', __CLASS__.'::'.__METHOD__.', scanning: '.$batchsize.' starting from '.$start, OCP\Util::DEBUG); + OCP\Util::writeLog('contacts', + __CLASS__.'::'.__METHOD__ + .', scanning: '.$batchsize.' starting from '.$start, + OCP\Util::DEBUG); // only reset on first batch. - self::getVCategories()->rescan($cards, true, ($start == 0 ? true : false)); + self::getVCategories()->rescan($cards, + true, + ($start == 0 ? true : false)); $start += $batchsize; } } From fa62ff62d2e48bee72aaf5b7d306abe77d90308b Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 30 Jul 2012 05:31:48 +0200 Subject: [PATCH 66/68] Remove deprecated code. --- apps/contacts/lib/app.php | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/apps/contacts/lib/app.php b/apps/contacts/lib/app.php index 46e03240dc..67dfe8f640 100644 --- a/apps/contacts/lib/app.php +++ b/apps/contacts/lib/app.php @@ -82,22 +82,6 @@ class OC_Contacts_App { $card = self::getContactObject( $id ); $vcard = OC_VObject::parse($card['carddata']); - // Try to fix cards with missing 'N' field from pre ownCloud 4. Hot damn, this is ugly... - if(!is_null($vcard) && !$vcard->__isset('N')) { - $version = OCP\App::getAppVersion('contacts'); - if($version >= 5) { - OCP\Util::writeLog('contacts', 'OC_Contacts_App::getContactVCard. Deprecated check for missing N field', OCP\Util::DEBUG); - } - OCP\Util::writeLog('contacts', 'getContactVCard, Missing N field', OCP\Util::DEBUG); - if($vcard->__isset('FN')) { - OCP\Util::writeLog('contacts', 'getContactVCard, found FN field: '.$vcard->__get('FN'), OCP\Util::DEBUG); - $n = implode(';', array_reverse(array_slice(explode(' ', $vcard->__get('FN')), 0, 2))).';;;'; - $vcard->setString('N', $n); - OC_Contacts_VCard::edit( $id, $vcard); - } else { // Else just add an empty 'N' field :-P - $vcard->setString('N', 'Unknown;Name;;;'); - } - } if (!is_null($vcard) && !isset($vcard->REV)) { $rev = new DateTime('@'.$card['lastmodified']); $vcard->setString('REV', $rev->format(DateTime::W3C)); From b465fc84ae9fd1f678ce8cf1bd0c5a91d3665a05 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 30 Jul 2012 17:42:33 +0200 Subject: [PATCH 67/68] LDAP: don't die on unexpected collisions, handle empty display-name attributes properly --- apps/user_ldap/lib/access.php | 24 ++++++++++++++++-------- apps/user_ldap/user_ldap.php | 17 ++++++++++++----- 2 files changed, 28 insertions(+), 13 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 19122b34c7..a50afd0d60 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -178,7 +178,7 @@ abstract class Access { * @param $ldapname optional, the display name of the object * @returns string with with the name to use in ownCloud, false on DN outside of search DN * - * returns the internal ownCloud name for the given LDAP DN of the group + * returns the internal ownCloud name for the given LDAP DN of the group, false on DN outside of search DN or failure */ public function dn2groupname($dn, $ldapname = null) { if(mb_strripos($dn, $this->connection->ldapBaseGroups, 0, 'UTF-8') !== (mb_strlen($dn, 'UTF-8')-mb_strlen($this->connection->ldapBaseGroups, 'UTF-8'))) { @@ -193,7 +193,7 @@ abstract class Access { * @param $ldapname optional, the display name of the object * @returns string with with the name to use in ownCloud * - * returns the internal ownCloud name for the given LDAP DN of the user, false on DN outside of search DN + * returns the internal ownCloud name for the given LDAP DN of the user, false on DN outside of search DN or failure */ public function dn2username($dn, $ldapname = null) { if(mb_strripos($dn, $this->connection->ldapBaseUsers, 0, 'UTF-8') !== (mb_strlen($dn, 'UTF-8')-mb_strlen($this->connection->ldapBaseUsers, 'UTF-8'))) { @@ -233,6 +233,10 @@ abstract class Access { if(is_null($ldapname)) { $ldapname = $this->readAttribute($dn, $nameAttribute); + if(!isset($ldapname[0]) && empty($ldapname[0])) { + \OCP\Util::writeLog('user_ldap', 'No or empty name for '.$dn.'.', \OCP\Util::INFO); + return false; + } $ldapname = $ldapname[0]; } $ldapname = $this->sanitizeUsername($ldapname); @@ -248,9 +252,8 @@ abstract class Access { return $oc_name; } - //TODO: do not simple die away! - //and this of course should never been thrown :) - throw new Exception('LDAP backend: unexpected collision of DN and ownCloud Name.'); + //if everything else did not help.. + OCP\Util::writeLog('user_ldap', 'Could not create unique ownCloud name for '.$dn.'.', \OCP\Util::INFO); } /** @@ -294,6 +297,12 @@ abstract class Access { continue; } + //we do not take empty usernames + if(!isset($ldapObject[$nameAttribute]) || empty($ldapObject[$nameAttribute])) { + \OCP\Util::writeLog('user_ldap', 'No or empty name for '.$ldapObject['dn'].', skipping.', \OCP\Util::INFO); + continue; + } + //a new group! Then let's try to add it. We're shooting into the blue with the group name, assuming that in most cases there will not be a conflict. But first make sure, that the display name contains only allowed characters. $ocname = $this->sanitizeUsername($ldapObject[$nameAttribute]); if($this->mapComponent($ldapObject['dn'], $ocname, $isUsers)) { @@ -308,9 +317,8 @@ abstract class Access { continue; } - //TODO: do not simple die away - //and this of course should never been thrown :) - throw new Exception('LDAP backend: unexpected collision of DN and ownCloud Name.'); + //if everything else did not help.. + \OCP\Util::writeLog('user_ldap', 'Could not create unique ownCloud name for '.$ldapObject['dn'].', skipping.', \OCP\Util::INFO); } return $ownCloudNames; } diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index 57b2ef489b..2059d5b0c6 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -79,12 +79,19 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { return false; } - //update some settings, if necessary - $this->updateQuota($dn); - $this->updateEmail($dn); + //do we have a username for him/her? + $ocname = $this->dn2username($dn); - //give back the display name - return $this->dn2username($dn); + if($ocname){ + //update some settings, if necessary + $this->updateQuota($dn); + $this->updateEmail($dn); + + //give back the display name + return $ocname; + } + + return false; } /** From dfae77dec1650f171d09d4bde88ab74029f6e8c7 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Mon, 30 Jul 2012 12:21:58 -0400 Subject: [PATCH 68/68] Add notifications and undo support for replacing files when renaming --- apps/files/css/files.css | 2 +- apps/files/js/filelist.js | 122 ++++++++++++++++++++++++++++++++------ 2 files changed, 104 insertions(+), 20 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index e08d69f08d..317c0b8a1e 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -89,4 +89,4 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } #navigation>ul>li:first-child+li { padding-top:2.9em; } #scanning-message{ top:40%; left:40%; position:absolute; display:none; } -#notification .undo { cursor:pointer; font-weight:bold; margin-left:1em; } \ No newline at end of file +#notification span { cursor:pointer; font-weight:bold; margin-left:1em; } \ No newline at end of file diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index aaf2e681ab..a414c5f830 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -136,24 +136,39 @@ FileList={ event.stopPropagation(); event.preventDefault(); var newname=input.val(); - tr.attr('data-file',newname); - td.children('a.name').empty(); + if (newname != name) { + if ($('tr').filterAttr('data-file', newname).length > 0) { + $('#notification').html(newname+' '+t('files', 'already exists')+''+t('files', 'replace')+''+t('files', 'cancel')+''); + $('#notification').data('oldName', name); + $('#notification').data('newName', newname); + $('#notification').fadeIn(); + newname = name; + } else { + $.get(OC.filePath('files','ajax','rename.php'), { dir : $('#dir').val(), newname: newname, file: name },function(result) { + if (!result || result.status == 'error') { + OC.dialogs.alert(result.data.message, 'Error moving file'); + newname = name; + } + }); + } + + } + tr.attr('data-file', newname); var path = td.children('a.name').attr('href'); td.children('a.name').attr('href', path.replace(encodeURIComponent(name), encodeURIComponent(newname))); - if(newname.indexOf('.')>0){ - basename=newname.substr(0,newname.lastIndexOf('.')); - }else{ - basename=newname; + if (newname.indexOf('.') > 0) { + var basename=newname.substr(0,newname.lastIndexOf('.')); + } else { + var basename=newname; } + td.children('a.name').empty(); var span=$(''); span.text(basename); td.children('a.name').append(span); - if(newname.indexOf('.')>0){ + if (newname.indexOf('.') > 0) { span.append($(''+newname.substr(newname.lastIndexOf('.'))+'')); } - $.get(OC.filePath('files','ajax','rename.php'), { dir : $('#dir').val(), newname: newname, file: name },function(){ - tr.data('renaming',false); - }); + tr.data('renaming',false); return false; }); input.click(function(event){ @@ -164,12 +179,64 @@ FileList={ form.trigger('submit'); }); }, + replace:function(oldName, newName) { + // Finish any existing actions + if (FileList.lastAction || !FileList.useUndo) { + FileList.lastAction(); + } + var tr = $('tr').filterAttr('data-file', oldName); + tr.hide(); + FileList.replaceCanceled = false; + FileList.replaceOldName = oldName; + FileList.replaceNewName = newName; + FileList.lastAction = function() { + FileList.finishReplace(); + }; + $('#notification').html(t('files', 'replaced')+' '+newName+' '+t('files', 'with')+' '+oldName+''+t('files', 'undo')+''); + $('#notification').fadeIn(); + }, + finishReplace:function() { + if (!FileList.replaceCanceled && FileList.replaceOldName && FileList.replaceNewName) { + // Delete the file being replaced and rename the replacement + FileList.deleteCanceled = false; + FileList.deleteFiles = [FileList.replaceNewName]; + FileList.finishDelete(function() { + $.ajax({url: OC.filePath('files', 'ajax', 'rename.php'), async: false, data: { dir: $('#dir').val(), newname: FileList.replaceNewName, file: FileList.replaceOldName }, success: function(result) { + if (result && result.status == 'success') { + var tr = $('tr').filterAttr('data-file', FileList.replaceOldName); + tr.attr('data-file', FileList.replaceNewName); + var td = tr.children('td.filename'); + td.children('a.name .span').text(FileList.replaceNewName); + var path = td.children('a.name').attr('href'); + td.children('a.name').attr('href', path.replace(encodeURIComponent(FileList.replaceOldName), encodeURIComponent(FileList.replaceNewName))); + if (FileList.replaceNewName.indexOf('.') > 0) { + var basename = FileList.replaceNewName.substr(0, FileList.replaceNewName.lastIndexOf('.')); + } else { + var basename = FileList.replaceNewName; + } + td.children('a.name').empty(); + var span = $(''); + span.text(basename); + td.children('a.name').append(span); + if (FileList.replaceNewName.indexOf('.') > 0) { + span.append($(''+FileList.replaceNewName.substr(FileList.replaceNewName.lastIndexOf('.'))+'')); + } + tr.show(); + } else { + OC.dialogs.alert(result.data.message, 'Error moving file'); + } + FileList.replaceCanceled = true; + FileList.replaceOldName = null; + FileList.replaceNewName = null; + FileList.lastAction = null; + }}); + }, true); + } + }, do_delete:function(files){ - if(FileList.deleteFiles || !FileList.useUndo){//finish any ongoing deletes first - FileList.finishDelete(function(){ - FileList.do_delete(files); - }); - return; + // Finish any existing actions + if (FileList.lastAction || !FileList.useUndo) { + FileList.lastAction(); } if(files.substr){ files=[files]; @@ -183,8 +250,10 @@ FileList={ procesSelection(); FileList.deleteCanceled=false; FileList.deleteFiles=files; + FileList.lastAction = function() { + FileList.finishDelete(null, true); + }; $('#notification').html(t('files', 'deleted')+' '+files+''+t('files', 'undo')+''); - $('#notification').data('deletefile',true); $('#notification').fadeIn(); }, finishDelete:function(ready,sync){ @@ -202,6 +271,7 @@ FileList={ }); FileList.deleteCanceled=true; FileList.deleteFiles=null; + FileList.lastAction = null; if(ready){ ready(); } @@ -215,18 +285,32 @@ FileList={ $(document).ready(function(){ $('#notification').hide(); $('#notification .undo').live('click', function(){ - if($('#notification').data('deletefile')) - { + if (FileList.deleteFiles) { $.each(FileList.deleteFiles,function(index,file){ $('tr').filterAttr('data-file',file).show(); }); FileList.deleteCanceled=true; FileList.deleteFiles=null; + } else if (FileList.replaceOldName && FileList.replaceNewName) { + $('tr').filterAttr('data-file', FileList.replaceOldName).show(); + FileList.replaceCanceled = true; + FileList.replaceOldName = null; + FileList.replaceNewName = null; } $('#notification').fadeOut(); }); + $('#notification .replace').live('click', function() { + $('#notification').fadeOut('400', function() { + FileList.replace($('#notification').data('oldName'), $('#notification').data('newName')); + }); + }); + $('#notification .cancel').live('click', function() { + $('#notification').fadeOut(); + }); FileList.useUndo=('onbeforeunload' in window) $(window).bind('beforeunload', function (){ - FileList.finishDelete(null,true); + if (FileList.lastAction) { + FileList.lastAction(); + } }); });