From 3dfb1628ce6e394a80c03a96da7c837209767e5b Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 19 Feb 2013 20:42:48 -0500 Subject: [PATCH 01/61] Include etags for the root of the shared folder --- apps/files_sharing/lib/cache.php | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 9655e44787..910c268f01 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -28,10 +28,11 @@ namespace OC\Files\Cache; */ class Shared_Cache extends Cache { + private $storage; private $files = array(); public function __construct($storage) { - + $this->storage = $storage; } /** @@ -64,7 +65,14 @@ class Shared_Cache extends Cache { */ public function get($file) { if ($file == '') { - return \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT); + $data = \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT); + $etag = \OCP\Config::getUserValue(\OCP\User::getUser(), 'files_sharing', 'etag'); + if (!isset($etag)) { + $etag = $this->storage->getETag(''); + \OCP\Config::setUserValue(\OCP\User::getUser(), 'files_sharing', 'etag', $etag); + } + $data['etag'] = $etag; + return $data; } else if (is_string($file)) { if ($cache = $this->getSourceCache($file)) { return $cache->get($this->files[$file]); @@ -117,7 +125,9 @@ class Shared_Cache extends Cache { * @return int file id */ public function put($file, array $data) { - if ($cache = $this->getSourceCache($file)) { + if ($file == '' && isset($data['etag'])) { + \OCP\Config::setUserValue(\OCP\User::getUser(), 'files_sharing', 'etag', $etag); + } else if ($cache = $this->getSourceCache($file)) { return $cache->put($this->files[$file], $data); } return false; From 09a2730f571c08945bfb90342c6cab9f7941e856 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 23 Feb 2013 15:22:34 -0500 Subject: [PATCH 02/61] Include etag field for folder contents --- apps/files_sharing/lib/share/file.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index 6d3c55a008..ceabc7d548 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -87,6 +87,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { $file['size'] = $item['size']; $file['mtime'] = $item['mtime']; $file['encrypted'] = $item['encrypted']; + $file['etag'] = $item['etag']; $files[] = $file; } return $files; From b6a21cc4b5f060863e1dbfa9d090b8baeed02b59 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 23 Feb 2013 15:32:59 -0500 Subject: [PATCH 03/61] Fix WebDAV uploading of partial shared files --- apps/files_sharing/lib/sharedstorage.php | 73 +++++++++++++++--------- 1 file changed, 46 insertions(+), 27 deletions(-) diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 65812b7e2f..d0ee371c0b 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -45,9 +45,19 @@ class Shared extends \OC\Files\Storage\Common { */ private function getFile($target) { if (!isset($this->files[$target])) { - $source = \OC_Share_Backend_File::getSource($target); - if ($source) { - $source['path'] = '/'.$source['uid_owner'].'/'.$source['path']; + // Check for partial files + if (pathinfo($target, PATHINFO_EXTENSION) === 'part') { + $source = \OC_Share_Backend_File::getSource(substr($target, 0, -5)); + if ($source) { + $source['path'] = '/'.$source['uid_owner'].'/'.$source['path'].'.part'; + // All partial files have delete permission + $source['permissions'] |= \OCP\PERMISSION_DELETE; + } + } else { + $source = \OC_Share_Backend_File::getSource($target); + if ($source) { + $source['path'] = '/'.$source['uid_owner'].'/'.$source['path']; + } } $this->files[$target] = $source; } @@ -275,34 +285,43 @@ class Shared extends \OC\Files\Storage\Common { } public function rename($path1, $path2) { - // Renaming/moving is only allowed within shared folders - $pos1 = strpos($path1, '/', 1); - $pos2 = strpos($path2, '/', 1); - if ($pos1 !== false && $pos2 !== false && ($oldSource = $this->getSourcePath($path1))) { - $newSource = $this->getSourcePath(dirname($path2)).'/'.basename($path2); - if (dirname($path1) == dirname($path2)) { - // Rename the file if UPDATE permission is granted - if ($this->isUpdatable($path1)) { - list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource); - list( , $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource); - return $storage->rename($oldInternalPath, $newInternalPath); - } - } else { - // Move the file if DELETE and CREATE permissions are granted - if ($this->isDeletable($path1) && $this->isCreatable(dirname($path2))) { - // Get the root shared folder - $folder1 = substr($path1, 0, $pos1); - $folder2 = substr($path2, 0, $pos2); - // Copy and unlink the file if it exists in a different shared folder - if ($folder1 != $folder2) { - if ($this->copy($path1, $path2)) { - return $this->unlink($path1); - } - } else { + // Check for partial files + if (pathinfo($path1, PATHINFO_EXTENSION) === 'part') { + if ($oldSource = $this->getSourcePath($path1)) { + list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource); + $newInternalPath = substr($oldInternalPath, 0, -5); + return $storage->rename($oldInternalPath, $newInternalPath); + } + } else { + // Renaming/moving is only allowed within shared folders + $pos1 = strpos($path1, '/', 1); + $pos2 = strpos($path2, '/', 1); + if ($pos1 !== false && $pos2 !== false && ($oldSource = $this->getSourcePath($path1))) { + $newSource = $this->getSourcePath(dirname($path2)).'/'.basename($path2); + if (dirname($path1) == dirname($path2)) { + // Rename the file if UPDATE permission is granted + if ($this->isUpdatable($path1)) { list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource); list( , $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource); return $storage->rename($oldInternalPath, $newInternalPath); } + } else { + // Move the file if DELETE and CREATE permissions are granted + if ($this->isDeletable($path1) && $this->isCreatable(dirname($path2))) { + // Get the root shared folder + $folder1 = substr($path1, 0, $pos1); + $folder2 = substr($path2, 0, $pos2); + // Copy and unlink the file if it exists in a different shared folder + if ($folder1 != $folder2) { + if ($this->copy($path1, $path2)) { + return $this->unlink($path1); + } + } else { + list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource); + list( , $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource); + return $storage->rename($oldInternalPath, $newInternalPath); + } + } } } } From 00e28cf15641cccffd39ce2b41ddb0a2dca5cd48 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 23 Feb 2013 15:42:01 -0500 Subject: [PATCH 04/61] Return unknown free space for shared root folder so we can still upload partial files --- apps/files_sharing/lib/sharedstorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index d0ee371c0b..1e82d04ec2 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -384,7 +384,7 @@ class Shared extends \OC\Files\Storage\Common { public function free_space($path) { if ($path == '') { - return -1; + return \OC\Files\FREE_SPACE_UNKNOWN; } $source = $this->getSourcePath($path); if ($source) { From 36827d15498f443819b3aceb503d6cc1b071e041 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 23 Feb 2013 16:09:56 -0500 Subject: [PATCH 05/61] Fix variable --- apps/files_sharing/lib/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 910c268f01..5309ec7896 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -126,7 +126,7 @@ class Shared_Cache extends Cache { */ public function put($file, array $data) { if ($file == '' && isset($data['etag'])) { - \OCP\Config::setUserValue(\OCP\User::getUser(), 'files_sharing', 'etag', $etag); + \OCP\Config::setUserValue(\OCP\User::getUser(), 'files_sharing', 'etag', $data['etag']); } else if ($cache = $this->getSourceCache($file)) { return $cache->put($this->files[$file], $data); } From 8983465210c9dcd91cc178a072775efbcda85ca8 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 26 Feb 2013 01:21:48 -0500 Subject: [PATCH 06/61] Correct parent folders' ETags for all users with access to a shared file --- apps/files_sharing/appinfo/app.php | 1 + apps/files_sharing/lib/cache.php | 4 +- apps/files_sharing/lib/sharedstorage.php | 3 + apps/files_sharing/lib/updater.php | 77 ++++++++++++++++++++++++ lib/public/share.php | 23 +++++++ 5 files changed, 106 insertions(+), 2 deletions(-) create mode 100644 apps/files_sharing/lib/updater.php diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index d3e05cc62d..f8326db45b 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -5,6 +5,7 @@ OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'apps/files_sharing/lib/share/folder OC::$CLASSPATH['OC\Files\Storage\Shared'] = "apps/files_sharing/lib/sharedstorage.php"; OC::$CLASSPATH['OC\Files\Cache\Shared_Cache'] = 'apps/files_sharing/lib/cache.php'; OC::$CLASSPATH['OC\Files\Cache\Shared_Permissions'] = 'apps/files_sharing/lib/permissions.php'; +OC::$CLASSPATH['OC\Files\Cache\Shared_Updater'] = 'apps/files_sharing/lib/updater.php'; OC::$CLASSPATH['OC\Files\Cache\Shared_Watcher'] = 'apps/files_sharing/lib/watcher.php'; OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup'); OCP\Share::registerBackend('file', 'OC_Share_Backend_File'); diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 5309ec7896..851e958f68 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -125,8 +125,8 @@ class Shared_Cache extends Cache { * @return int file id */ public function put($file, array $data) { - if ($file == '' && isset($data['etag'])) { - \OCP\Config::setUserValue(\OCP\User::getUser(), 'files_sharing', 'etag', $data['etag']); + if ($file === '' && isset($data['etag'])) { + return \OCP\Config::setUserValue(\OCP\User::getUser(), 'files_sharing', 'etag', $data['etag']); } else if ($cache = $this->getSourceCache($file)) { return $cache->put($this->files[$file], $data); } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 1e82d04ec2..0163f2e00b 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -412,6 +412,9 @@ class Shared extends \OC\Files\Storage\Common { if (!\OCP\User::isLoggedIn() || \OCP\User::getUser() != $options['user'] || \OCP\Share::getItemsSharedWith('file')) { $user_dir = $options['user_dir']; \OC\Files\Filesystem::mount('\OC\Files\Storage\Shared', array('sharedFolder' => '/Shared'), $user_dir.'/Shared/'); + \OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Shared_Updater', 'writeHook'); + \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Shared_Updater', 'deleteHook'); + \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Shared_Updater', 'renameHook'); } } diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php new file mode 100644 index 0000000000..af6f921559 --- /dev/null +++ b/apps/files_sharing/lib/updater.php @@ -0,0 +1,77 @@ +. + */ + +namespace OC\Files\Cache; + +class Shared_Updater { + + /** + * Correct the parent folders' ETags for all users shared the file at $target + * + * @param string $target + */ + static public function correctFolders($target) { + $uid = \OCP\User::getUser(); + $uidOwner = \OC\Files\Filesystem::getOwner($target); + $info = \OC\Files\Filesystem::getFileInfo($target); + // Correct Shared folders of other users shared with + $users = \OCP\Share::getUsersItemShared('file', $info['fileid'], $uidOwner, true); + if (!empty($users)) { + foreach ($users as $user) { + // The ETag of the logged in user should already be updated + if ($user !== $uid) { + $etag = \OC\Files\Filesystem::getETag(''); + \OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag); + } + } + // Correct folders of shared file owner + if ($uidOwner !== $uid && $source = \OC_Share_Backend_File::getSource($target)) { + \OC\Files\Filesystem::initMountPoints($source['uid_owner']); + $source = '/'.$source['uid_owner'].'/'.$source['path']; + $mtime = \OC\Files\Filesystem::filemtime($target); + \OC\Files\Cache\Updater::correctFolder($source, $mtime); + } + } + } + + /** + * @param array $params + */ + static public function writeHook($params) { + self::correctFolders($params['path']); + } + + /** + * @param array $params + */ + static public function renameHook($params) { + self::correctFolders($params['oldpath']); + self::correctFolders($params['newpath']); + } + + /** + * @param array $params + */ + static public function deleteHook($params) { + self::correctFolders($params['path']); + } + +} \ No newline at end of file diff --git a/lib/public/share.php b/lib/public/share.php index c0f35333e8..3d157b1a5f 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -197,6 +197,29 @@ class Share { $parameters, -1, $includeCollections); } + /** + * Get all users an item is shared with + * @param string Item type + * @param string Item source + * @param string Owner + * @param bool Include collections + * @return Return array of users + */ + public static function getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections = false) { + $users = array(); + $items = self::getItems($itemType, $itemSource, null, null, $uidOwner, self::FORMAT_NONE, null, -1, $includeCollections); + if ($items) { + foreach ($items as $item) { + if ((int)$item['share_type'] === self::SHARE_TYPE_USER) { + $users[] = $item['share_with']; + } else if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { + $users = array_merge($users, \OC_Group::usersInGroup($item['share_with'])); + } + } + } + return $users; + } + /** * @brief Share an item with a user, group, or via private link * @param string Item type From ea83acedebbcf70b19643efe82b72fb139cf8ad2 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 26 Feb 2013 01:43:04 -0500 Subject: [PATCH 07/61] Fix target path and reuse mtime --- apps/files_sharing/lib/updater.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index af6f921559..a41ce76f93 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -43,11 +43,11 @@ class Shared_Updater { } } // Correct folders of shared file owner + $target = substr($target, 8); if ($uidOwner !== $uid && $source = \OC_Share_Backend_File::getSource($target)) { - \OC\Files\Filesystem::initMountPoints($source['uid_owner']); - $source = '/'.$source['uid_owner'].'/'.$source['path']; - $mtime = \OC\Files\Filesystem::filemtime($target); - \OC\Files\Cache\Updater::correctFolder($source, $mtime); + \OC\Files\Filesystem::initMountPoints($uidOwner); + $source = '/'.$uidOwner.'/'.$source['path']; + \OC\Files\Cache\Updater::correctFolder($source, $info['mtime']); } } } From 9b4d7d99253885fadeed61b988c3c7528ca6d43a Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 2 Mar 2013 12:57:29 -0500 Subject: [PATCH 08/61] Update ETag when file is shared --- apps/files_sharing/lib/sharedstorage.php | 1 + apps/files_sharing/lib/updater.php | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 19abc83825..f61a47c190 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -420,6 +420,7 @@ class Shared extends \OC\Files\Storage\Common { \OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Shared_Updater', 'writeHook'); \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Shared_Updater', 'deleteHook'); \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Shared_Updater', 'renameHook'); + \OC_Hook::connect('OCP\Share', 'post_shared', '\OC\Files\Cache\Shared_Updater', 'shareHook'); } } diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index a41ce76f93..8d00d44c3b 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -74,4 +74,14 @@ class Shared_Updater { self::correctFolders($params['path']); } + /** + * @param array $params + */ + static public function shareHook($params) { + if ($params['itemType'] === 'file' || $param['itemType'] === 'folder') { + $id = \OC\Files\Filesystem::getPath($params['itemSource']); + self::correctFolders($id); + } + } + } \ No newline at end of file From e466d680fea1738bfa5eeb12a13b6e8fa858a986 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 2 Mar 2013 13:11:57 -0500 Subject: [PATCH 09/61] Fix variable name in Shared_Updater --- apps/files_sharing/lib/updater.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index 8d00d44c3b..cc04835b7d 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -78,7 +78,7 @@ class Shared_Updater { * @param array $params */ static public function shareHook($params) { - if ($params['itemType'] === 'file' || $param['itemType'] === 'folder') { + if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') { $id = \OC\Files\Filesystem::getPath($params['itemSource']); self::correctFolders($id); } From ee0c38bb5112af4aa491b526ca390de52dd3ab7e Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Mon, 4 Mar 2013 19:43:56 -0500 Subject: [PATCH 10/61] Fix group post_shared hook --- lib/public/share.php | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/public/share.php b/lib/public/share.php index f3c1da7476..eadf24b14e 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -1103,20 +1103,6 @@ class Share { } else { $fileTarget = null; } - \OC_Hook::emit('OCP\Share', 'post_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $itemTarget, - 'parent' => $parent, - 'shareType' => self::$shareTypeGroupUserUnique, - 'shareWith' => $uid, - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'fileTarget' => $fileTarget, - 'id' => $parent, - 'token' => $token - )); // Insert an extra row for the group share if the item or file target is unique for this user if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { $query->execute(array($itemType, $itemSource, $itemTarget, $parent, @@ -1125,6 +1111,20 @@ class Share { $id = \OC_DB::insertid('*PREFIX*share'); } } + \OC_Hook::emit('OCP\Share', 'post_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $groupItemTarget, + 'parent' => $parent, + 'shareType' => $shareType, + 'shareWith' => $uid, + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'fileTarget' => $groupFileTarget, + 'id' => $parent, + 'token' => $token + )); if ($parentFolder === true) { // Return parent folders to preserve file target paths for potential children return $parentFolders; From 771e01af35157f99539134ceae68a672e4cb36f9 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 5 Mar 2013 21:57:32 -0500 Subject: [PATCH 11/61] Move hook connectors from shared storage to app.php, add post_unshare hook --- apps/files_sharing/appinfo/app.php | 5 +++++ apps/files_sharing/lib/sharedstorage.php | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index c9237a4b3a..8f9234c822 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -11,3 +11,8 @@ OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'set OCP\Share::registerBackend('file', 'OC_Share_Backend_File'); OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file'); OCP\Util::addScript('files_sharing', 'share'); +\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Shared_Updater', 'writeHook'); +\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Shared_Updater', 'deleteHook'); +\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Shared_Updater', 'renameHook'); +\OC_Hook::connect('OCP\Share', 'post_shared', '\OC\Files\Cache\Shared_Updater', 'shareHook'); +\OC_Hook::connect('OCP\Share', 'post_unshare', '\OC\Files\Cache\Shared_Updater', 'shareHook'); \ No newline at end of file diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index f61a47c190..f1a371b123 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -417,10 +417,6 @@ class Shared extends \OC\Files\Storage\Common { \OC\Files\Filesystem::mount('\OC\Files\Storage\Shared', array('sharedFolder' => '/Shared'), $user_dir.'/Shared/'); - \OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Shared_Updater', 'writeHook'); - \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Shared_Updater', 'deleteHook'); - \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Shared_Updater', 'renameHook'); - \OC_Hook::connect('OCP\Share', 'post_shared', '\OC\Files\Cache\Shared_Updater', 'shareHook'); } } From a68cbb00e0006d1bf82fd6c520c092ac799d7f0f Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Wed, 6 Mar 2013 21:05:13 +0100 Subject: [PATCH 12/61] Preserve Debug flag accross config writes --- lib/config.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/config.php b/lib/config.php index 0bd497b8e5..c94eb27815 100644 --- a/lib/config.php +++ b/lib/config.php @@ -155,7 +155,11 @@ class OC_Config{ */ public static function writeData() { // Create a php file ... - $content = " Date: Wed, 6 Mar 2013 17:33:27 -0500 Subject: [PATCH 13/61] Update Shared folders ETags of users with reshares --- apps/files_sharing/lib/updater.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index cc04835b7d..030180543c 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -35,12 +35,18 @@ class Shared_Updater { // Correct Shared folders of other users shared with $users = \OCP\Share::getUsersItemShared('file', $info['fileid'], $uidOwner, true); if (!empty($users)) { - foreach ($users as $user) { - // The ETag of the logged in user should already be updated - if ($user !== $uid) { - $etag = \OC\Files\Filesystem::getETag(''); - \OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag); + while (!empty($users)) { + $reshareUsers = array(); + foreach ($users as $user) { + // The ETag of the logged in user should already be updated + if ($user !== $uid) { + $etag = \OC\Files\Filesystem::getETag(''); + \OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag); + // Look for reshares + $reshareUsers = array_merge($reshareUsers, \OCP\Share::getUsersItemShared('file', $info['fileid'], $user, true)); + } } + $users = $reshareUsers; } // Correct folders of shared file owner $target = substr($target, 8); From 4cb5cb9693a2b5d13905079f2ba7c6300c26d9b2 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 7 Mar 2013 10:00:03 -0500 Subject: [PATCH 14/61] itemSource parameter should be fileSource --- apps/files_sharing/lib/updater.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index 030180543c..66f0d30c77 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -85,9 +85,9 @@ class Shared_Updater { */ static public function shareHook($params) { if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') { - $id = \OC\Files\Filesystem::getPath($params['itemSource']); + $id = \OC\Files\Filesystem::getPath($params['fileSource']); self::correctFolders($id); } } -} \ No newline at end of file +} From 6e5e8c6b46f24027ee86284844f43e744a3f5f4c Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 7 Mar 2013 22:30:12 -0500 Subject: [PATCH 15/61] Fix #2080 and fix #2141 --- core/js/share.js | 88 ++++++++++++++++++-------------------------- lib/public/share.php | 25 ++++++++----- 2 files changed, 51 insertions(+), 62 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 34f24da4df..0b6afda59c 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -10,8 +10,9 @@ OC.Share={ // Load all share icons $.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getItemsSharedStatuses', itemType: itemType }, function(result) { if (result && result.status === 'success') { - $.each(result.data, function(item, hasLink) { - OC.Share.statuses[item] = hasLink; + $.each(result.data, function(item, data) { + OC.Share.statuses[item] = data; + var hasLink = data['link']; // Links override shared in terms of icon display if (hasLink) { var image = OC.imagePath('core', 'actions/public'); @@ -21,30 +22,33 @@ OC.Share={ if (itemType != 'file' && itemType != 'folder') { $('a.share[data-item="'+item+'"]').css('background', 'url('+image+') no-repeat center'); } else { - var file = $('tr').filterAttr('data-file', OC.basename(item)); + var file = $('tr').filterAttr('data-id', item); if (file.length > 0) { var action = $(file).find('.fileactions .action').filterAttr('data-action', 'Share'); var img = action.find('img').attr('src', image); action.addClass('permanent'); action.html(' '+t('core', 'Shared')).prepend(img); - } - var dir = $('#dir').val(); - if (dir.length > 1) { - var last = ''; - var path = dir; - // Search for possible parent folders that are shared - while (path != last) { - if (path == item) { - var action = $('.fileactions .action').filterAttr('data-action', 'Share'); - var img = action.find('img'); - if (img.attr('src') != OC.imagePath('core', 'actions/public')) { - img.attr('src', image); - action.addClass('permanent'); - action.html(' '+t('core', 'Shared')).prepend(img); + } else { + var dir = $('#dir').val(); + if (dir.length > 1) { + var last = ''; + var path = dir; + // Search for possible parent folders that are shared + while (path != last) { + if (path == data['path']) { + var actions = $('.fileactions .action').filterAttr('data-action', 'Share'); + $.each(actions, function(index, action) { + var img = $(action).find('img'); + if (img.attr('src') != OC.imagePath('core', 'actions/public')) { + img.attr('src', image); + $(action).addClass('permanent'); + $(action).html(' '+t('core', 'Shared')).prepend(img); + } + }); } + last = path; + path = OC.Share.dirname(path); } - last = path; - path = OC.Share.dirname(path); } } } @@ -53,15 +57,6 @@ OC.Share={ }); }, updateIcon:function(itemType, itemSource) { - if (itemType == 'file' || itemType == 'folder') { - var file = $('tr').filterAttr('data-id', String(itemSource)); - var filename = file.data('file'); - if ($('#dir').val() == '/') { - itemSource = $('#dir').val() + filename; - } else { - itemSource = $('#dir').val() + '/' + filename; - } - } var shares = false; var link = false; var image = OC.imagePath('core', 'actions/share'); @@ -83,18 +78,21 @@ OC.Share={ if (itemType != 'file' && itemType != 'folder') { $('a.share[data-item="'+itemSource+'"]').css('background', 'url('+image+') no-repeat center'); } else { - var action = $(file).find('.fileactions .action').filterAttr('data-action', 'Share'); - var img = action.find('img').attr('src', image); - if (shares) { - action.addClass('permanent'); - action.html(' '+t('core', 'Shared')).prepend(img); - } else { - action.removeClass('permanent'); - action.html(' '+t('core', 'Share')).prepend(img); + var file = $('tr').filterAttr('data-id', String(itemSource)); + if (file.length > 0) { + var action = $(file).find('.fileactions .action').filterAttr('data-action', 'Share'); + var img = action.find('img').attr('src', image); + if (shares) { + action.addClass('permanent'); + action.html(' '+t('core', 'Shared')).prepend(img); + } else { + action.removeClass('permanent'); + action.html(' '+t('core', 'Share')).prepend(img); + } } } if (shares) { - OC.Share.statuses[itemSource] = link; + OC.Share.statuses[itemSource]['link'] = link; } else { delete OC.Share.statuses[itemSource]; } @@ -102,21 +100,7 @@ OC.Share={ loadItem:function(itemType, itemSource) { var data = ''; var checkReshare = true; - // Switch file sources to path to check if status is set - if (itemType == 'file' || itemType == 'folder') { - var filename = $('tr').filterAttr('data-id', String(itemSource)).data('file'); - if ($('#dir').val() == '/') { - var item = $('#dir').val() + filename; - } else { - var item = $('#dir').val() + '/' + filename; - } - if (item.substring(0, 8) != '/Shared/') { - checkReshare = false; - } - } else { - var item = itemSource; - } - if (typeof OC.Share.statuses[item] === 'undefined') { + if (typeof OC.Share.statuses[itemSource] === 'undefined') { // NOTE: Check does not always work and misses some shares, fix later checkShares = true; } else { diff --git a/lib/public/share.php b/lib/public/share.php index 59f41a9bfd..d1ae0312bf 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -759,7 +759,7 @@ class Share { if ($format == self::FORMAT_STATUSES) { if ($itemType == 'file' || $itemType == 'folder') { $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`,' - .' `share_type`, `file_source`, `path`, `expiration`'; + .' `share_type`, `file_source`, `path`, `expiration`, `storage`'; } else { $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `expiration`'; } @@ -768,7 +768,7 @@ class Share { if ($itemType == 'file' || $itemType == 'folder') { $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`,' .' `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`,' - .' `expiration`, `token`'; + .' `expiration`, `token`, `storage`'; } else { $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' .' `stime`, `file_source`, `expiration`, `token`'; @@ -804,6 +804,7 @@ class Share { $items = array(); $targets = array(); $switchedItems = array(); + $mounts = array(); while ($row = $result->fetchRow()) { // Filter out duplicate group shares for users with unique targets if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { @@ -848,8 +849,13 @@ class Share { if (isset($row['parent'])) { $row['path'] = '/Shared/'.basename($row['path']); } else { - // Strip 'files' from path - $row['path'] = substr($row['path'], 5); + if (!isset($mounts[$row['storage']])) { + $mounts[$row['storage']] = \OC\Files\Mount::findByNumericId($row['storage']); + } + if ($mounts[$row['storage']]) { + $path = $mounts[$row['storage']]->getMountPoint().$row['path']; + $row['path'] = substr($path, $root); + } } } if (isset($row['expiration'])) { @@ -957,15 +963,14 @@ class Share { return $items; } else if ($format == self::FORMAT_STATUSES) { $statuses = array(); - // Switch column to path for files and folders, used for determining statuses inside of folders - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'path'; - } foreach ($items as $item) { if ($item['share_type'] == self::SHARE_TYPE_LINK) { - $statuses[$item[$column]] = true; + $statuses[$item[$column]]['link'] = true; } else if (!isset($statuses[$item[$column]])) { - $statuses[$item[$column]] = false; + $statuses[$item[$column]]['link'] = false; + } + if ($itemType == 'file' || $itemType == 'folder') { + $statuses[$item[$column]]['path'] = $item['path']; } } return $statuses; From ef2e84026e4c388fb1c91b59079354caa36ad865 Mon Sep 17 00:00:00 2001 From: Myles McNamara Date: Thu, 7 Mar 2013 23:30:56 -0500 Subject: [PATCH 16/61] remove php_value MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit php_value can only be used with mod_php, using it with FCGI will cause 500 Internal Server errors.  This needs to be set in php.ini manually or set using ini_set(). --- .htaccess | 1 - 1 file changed, 1 deletion(-) diff --git a/.htaccess b/.htaccess index 616118b2ce..463b49993e 100755 --- a/.htaccess +++ b/.htaccess @@ -1,5 +1,4 @@ -php_value cgi.fix_pathinfo 1 SetEnvIfNoCase ^Authorization$ "(.+)" XAUTHORIZATION=$1 From 2d00d13a5d8f8607897455befb15c81b651c4db3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 8 Mar 2013 15:13:00 +0100 Subject: [PATCH 17/61] use pre_unshare hook, otherwise the share is already removed. Which means that we have no chance to determine which folder has to be updated --- apps/files_sharing/appinfo/app.php | 2 +- lib/public/share.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index 8f9234c822..5711669815 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -15,4 +15,4 @@ OCP\Util::addScript('files_sharing', 'share'); \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Shared_Updater', 'deleteHook'); \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Shared_Updater', 'renameHook'); \OC_Hook::connect('OCP\Share', 'post_shared', '\OC\Files\Cache\Shared_Updater', 'shareHook'); -\OC_Hook::connect('OCP\Share', 'post_unshare', '\OC\Files\Cache\Shared_Updater', 'shareHook'); \ No newline at end of file +\OC_Hook::connect('OCP\Share', 'pre_unshare', '\OC\Files\Cache\Shared_Updater', 'shareHook'); \ No newline at end of file diff --git a/lib/public/share.php b/lib/public/share.php index 3e5af467d6..bc404e2963 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -406,6 +406,7 @@ class Share { \OC_Hook::emit('OCP\Share', 'pre_unshare', array( 'itemType' => $itemType, 'itemSource' => $itemSource, + 'fileSource' => $item['file_source'], 'shareType' => $shareType, 'shareWith' => $shareWith, )); From 20828488bc99ceb22516367f8c6be02cb300a882 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 8 Mar 2013 10:59:22 -0500 Subject: [PATCH 18/61] Fix share hook for updater --- apps/files_sharing/lib/updater.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index 66f0d30c77..69219db8cb 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -85,8 +85,20 @@ class Shared_Updater { */ static public function shareHook($params) { if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') { - $id = \OC\Files\Filesystem::getPath($params['fileSource']); - self::correctFolders($id); + $uidOwner = \OCP\User::getUser(); + $users = \OCP\Share::getUsersItemShared('file', $params['fileSource'], $uidOwner, true); + if (!empty($users)) { + while (!empty($users)) { + $reshareUsers = array(); + foreach ($users as $user) { + $etag = \OC\Files\Filesystem::getETag(''); + \OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag); + // Look for reshares + $reshareUsers = array_merge($reshareUsers, \OCP\Share::getUsersItemShared('file', $params['fileSource'], $user, true)); + } + $users = $reshareUsers; + } + } } } From 9ad03b61a357fa1edb322ffd1aab4d62daa856e5 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Fri, 8 Mar 2013 17:29:05 +0100 Subject: [PATCH 19/61] Update share.js Added HTML escaping --- core/js/share.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 0b6afda59c..8e767663f1 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -84,10 +84,10 @@ OC.Share={ var img = action.find('img').attr('src', image); if (shares) { action.addClass('permanent'); - action.html(' '+t('core', 'Shared')).prepend(img); + action.html(' '+ escapeHTML(t('core', 'Shared'))).prepend(img); } else { action.removeClass('permanent'); - action.html(' '+t('core', 'Share')).prepend(img); + action.html(' '+ escapeHTML(t('core', 'Share'))).prepend(img); } } } From 02e2f7384eca440ce38cec98808cbd8aeb04e9c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 8 Mar 2013 17:32:04 +0100 Subject: [PATCH 20/61] not only files can be reshared but also folders --- apps/files_sharing/lib/updater.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index 69219db8cb..861025c593 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -86,7 +86,7 @@ class Shared_Updater { static public function shareHook($params) { if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') { $uidOwner = \OCP\User::getUser(); - $users = \OCP\Share::getUsersItemShared('file', $params['fileSource'], $uidOwner, true); + $users = \OCP\Share::getUsersItemShared($params['itemType'], $params['fileSource'], $uidOwner, true); if (!empty($users)) { while (!empty($users)) { $reshareUsers = array(); From 1d3beffacf70519d5d9c49b3a7af18faae99a6c4 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 8 Mar 2013 19:08:07 +0100 Subject: [PATCH 21/61] Cache: better rename hook for cache updater --- lib/files/cache/updater.php | 43 ++++++++++++++++++++++++------- tests/lib/files/cache/updater.php | 5 ++-- 2 files changed, 36 insertions(+), 12 deletions(-) diff --git a/lib/files/cache/updater.php b/lib/files/cache/updater.php index d04541c219..e760ba71bc 100644 --- a/lib/files/cache/updater.php +++ b/lib/files/cache/updater.php @@ -53,12 +53,36 @@ class Updater { } } + static public function renameUpdate($from, $to) { + /** + * @var \OC\Files\Storage\Storage $storageFrom + * @var \OC\Files\Storage\Storage $storageTo + * @var string $internalFrom + * @var string $internalTo + */ + list($storageFrom, $internalFrom) = self::resolvePath($from); + list($storageTo, $internalTo) = self::resolvePath($to); + if ($storageFrom && $storageTo) { + if ($storageFrom === $storageTo) { + $cache = $storageFrom->getCache($internalFrom); + $cache->move($internalFrom, $internalTo); + $cache->correctFolderSize($internalFrom); + $cache->correctFolderSize($internalTo); + self::correctFolder($from, time()); + self::correctFolder($to, time()); + } else { + self::deleteUpdate($from); + self::writeUpdate($to); + } + } + } + /** - * Update the mtime and ETag of all parent folders - * - * @param string $path - * @param string $time - */ + * Update the mtime and ETag of all parent folders + * + * @param string $path + * @param string $time + */ static public function correctFolder($path, $time) { if ($path !== '' && $path !== '/') { $parent = dirname($path); @@ -66,9 +90,9 @@ class Updater { $parent = ''; } /** - * @var \OC\Files\Storage\Storage $storage - * @var string $internalPath - */ + * @var \OC\Files\Storage\Storage $storage + * @var string $internalPath + */ list($storage, $internalPath) = self::resolvePath($parent); if ($storage) { $cache = $storage->getCache(); @@ -92,8 +116,7 @@ class Updater { * @param array $params */ static public function renameHook($params) { - self::deleteUpdate($params['oldpath']); - self::writeUpdate($params['newpath']); + self::renameUpdate($params['oldpath'], $params['newpath']); } /** diff --git a/tests/lib/files/cache/updater.php b/tests/lib/files/cache/updater.php index 7a79f45a20..aaf932c97f 100644 --- a/tests/lib/files/cache/updater.php +++ b/tests/lib/files/cache/updater.php @@ -54,6 +54,8 @@ class Updater extends \PHPUnit_Framework_TestCase { Filesystem::clearMounts(); Filesystem::mount($this->storage, array(), '/' . self::$user . '/files'); + \OC_Hook::clear('OC_Filesystem'); + \OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); @@ -137,11 +139,10 @@ class Updater extends \PHPUnit_Framework_TestCase { $this->assertFalse($this->cache->inCache('foo.txt')); $this->assertTrue($this->cache->inCache('bar.txt')); $cachedData = $this->cache->get('bar.txt'); - $this->assertNotEquals($fooCachedData['etag'], $cachedData['etag']); + $this->assertEquals($fooCachedData['fileid'], $cachedData['fileid']); $mtime = $cachedData['mtime']; $cachedData = $this->cache->get(''); $this->assertEquals(3 * $textSize + $imageSize, $cachedData['size']); $this->assertNotEquals($rootCachedData['etag'], $cachedData['etag']); - $this->assertEquals($mtime, $cachedData['mtime']); } } From e743386acffe6cb7de4b8d2dac5aeac70f1a74e0 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 8 Mar 2013 14:27:30 -0500 Subject: [PATCH 22/61] Fix correctFolders and retrieve the correct storage cache --- apps/files_sharing/lib/cache.php | 23 +++++++++++++---------- apps/files_sharing/lib/updater.php | 11 ++++------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 6f834e0899..9fccd0b46f 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -42,16 +42,19 @@ class Shared_Cache extends Cache { */ private function getSourceCache($target) { $source = \OC_Share_Backend_File::getSource($target); - if (isset($source['path'])) { - $source['path'] = '/' . $source['uid_owner'] . '/' . $source['path']; - \OC\Files\Filesystem::initMountPoints($source['uid_owner']); - list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source['path']); - if ($storage) { - $this->files[$target] = $internalPath; - $cache = $storage->getCache(); - $this->storageId = $storage->getId(); - $this->numericId = $cache->getNumericStorageId(); - return $cache; + if (isset($source['path']) && isset($source['fileOwner'])) { + \OC\Files\Filesystem::initMountPoints($source['fileOwner']); + $mount = \OC\Files\Mount::findByNumericId($source['storage']); + if ($mount) { + $fullPath = $mount->getMountPoint().$source['path']; + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($fullPath); + if ($storage) { + $this->files[$target] = $internalPath; + $cache = $storage->getCache(); + $this->storageId = $storage->getId(); + $this->numericId = $cache->getNumericStorageId(); + return $cache; + } } } return false; diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index 861025c593..73e7808f24 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -38,13 +38,10 @@ class Shared_Updater { while (!empty($users)) { $reshareUsers = array(); foreach ($users as $user) { - // The ETag of the logged in user should already be updated - if ($user !== $uid) { - $etag = \OC\Files\Filesystem::getETag(''); - \OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag); - // Look for reshares - $reshareUsers = array_merge($reshareUsers, \OCP\Share::getUsersItemShared('file', $info['fileid'], $user, true)); - } + $etag = \OC\Files\Filesystem::getETag(''); + \OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag); + // Look for reshares + $reshareUsers = array_merge($reshareUsers, \OCP\Share::getUsersItemShared('file', $info['fileid'], $user, true)); } $users = $reshareUsers; } From 3ae70ab162c005a8931e757f29536e10d2d5fe7a Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 11 Mar 2013 16:21:26 +0100 Subject: [PATCH 23/61] Check if username is valid and remove slashes from filename --- lib/migrate.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/migrate.php b/lib/migrate.php index a0a329705a..0b31917740 100644 --- a/lib/migrate.php +++ b/lib/migrate.php @@ -246,11 +246,20 @@ class OC_Migrate{ OC_Log::write( 'migration', 'User doesn\'t exist', OC_Log::ERROR ); return json_encode( array( 'success' => false ) ); } + + // Check if the username is valid + if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $json->exporteduser )) { + OC_Log::write( 'migration', 'Username is not valid', OC_Log::ERROR ); + return json_encode( array( 'success' => false ) ); + } + // Copy data $userfolder = $extractpath . $json->exporteduser; $newuserfolder = $datadir . '/' . self::$uid; foreach(scandir($userfolder) as $file){ if($file !== '.' && $file !== '..' && is_dir($file)) { + $file = str_replace(array('/', '\\'), '', $file); + // Then copy the folder over OC_Helper::copyr($userfolder.'/'.$file, $newuserfolder.'/'.$file); } From 256595e7b2e06de630ca5a9983accadabc309281 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sat, 9 Mar 2013 18:51:02 +0100 Subject: [PATCH 24/61] 5.0.0 --- lib/util.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/util.php b/lib/util.php index d8adfd99a4..6d641bc472 100755 --- a/lib/util.php +++ b/lib/util.php @@ -75,7 +75,7 @@ class OC_Util { public static function getVersion() { // hint: We only can count up. Reset minor/patchlevel when // updating major/minor version number. - return array(4, 97, 10); + return array(5, 00, 00); } /** @@ -83,7 +83,7 @@ class OC_Util { * @return string */ public static function getVersionString() { - return '5.0 RC 3'; + return '5.0'; } /** From e6c2a91781830f869c3d1ea0331987eb262e8232 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sat, 9 Mar 2013 20:19:34 +0100 Subject: [PATCH 25/61] this is now 6.0 pre alpha --- lib/util.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/util.php b/lib/util.php index 6d641bc472..e79daae8a0 100755 --- a/lib/util.php +++ b/lib/util.php @@ -75,7 +75,7 @@ class OC_Util { public static function getVersion() { // hint: We only can count up. Reset minor/patchlevel when // updating major/minor version number. - return array(5, 00, 00); + return array(5, 80, 00); } /** @@ -83,7 +83,7 @@ class OC_Util { * @return string */ public static function getVersionString() { - return '5.0'; + return '6.0 pre alpha'; } /** From 8a5946fadc12b7327263eb1ec6bdb70a9718dd3e Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 9 Mar 2013 21:09:31 -0500 Subject: [PATCH 26/61] Fix variable for mounting for all users, fix #357 --- lib/files/filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index 0bbd7550d7..d7cbb70032 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -249,7 +249,7 @@ class Filesystem { } if (isset($mountConfig['user'])) { foreach ($mountConfig['user'] as $mountUser => $mounts) { - if ($user === 'all' or strtolower($mountUser) === strtolower($user)) { + if ($mountUser === 'all' or strtolower($mountUser) === strtolower($user)) { foreach ($mounts as $mountPoint => $options) { $mountPoint = self::setUserVars($user, $mountPoint); foreach ($options as &$option) { From 07f88424c8ea8db1bee3cc2d96743364a24e8274 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Sun, 10 Mar 2013 18:34:56 +0100 Subject: [PATCH 27/61] LDAP: fancy version for release, no code change --- apps/user_ldap/appinfo/version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/appinfo/version b/apps/user_ldap/appinfo/version index e619108dd6..60a2d3e96c 100644 --- a/apps/user_ldap/appinfo/version +++ b/apps/user_ldap/appinfo/version @@ -1 +1 @@ -0.3.9.5 \ No newline at end of file +0.4.0 \ No newline at end of file From 1e07801c95b367f9e4c0d8f58c3796a116084310 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 11 Mar 2013 13:30:06 +0100 Subject: [PATCH 28/61] LDAP: compatibility with Novell eDirectory UUID --- apps/user_ldap/lib/access.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index a8cfd45bf4..90d026962d 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -84,7 +84,7 @@ abstract class Access { for($i=0;$i<$result[$attr]['count'];$i++) { if($this->resemblesDN($attr)) { $values[] = $this->sanitizeDN($result[$attr][$i]); - } elseif(strtolower($attr) == 'objectguid') { + } elseif(strtolower($attr) == 'objectguid' || strtolower($attr) == 'guid') { $values[] = $this->convertObjectGUID2Str($result[$attr][$i]); } else { $values[] = $result[$attr][$i]; @@ -895,7 +895,7 @@ abstract class Access { } //for now, supported (known) attributes are entryUUID, nsuniqueid, objectGUID - $testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid'); + $testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid'); foreach($testAttributes as $attribute) { \OCP\Util::writeLog('user_ldap', 'Testing '.$attribute.' as UUID attr', \OCP\Util::DEBUG); From 569c7ab1384c9d01255ae7bc2075edf11508d4a6 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 12 Mar 2013 00:14:05 +0100 Subject: [PATCH 29/61] [tx-robot] updated from transifex --- apps/files/l10n/sl.php | 16 ++-- apps/files_external/l10n/sl.php | 10 ++- apps/files_trashbin/l10n/hu_HU.php | 3 +- apps/user_ldap/l10n/de.php | 6 ++ apps/user_ldap/l10n/sl.php | 20 +++++ core/l10n/sl.php | 44 ++++----- l10n/de/user_ldap.po | 134 ++++++++++++++-------------- l10n/hu_HU/files_trashbin.po | 9 +- l10n/sl/core.po | 114 +++++++++++------------ l10n/sl/files.po | 22 ++--- l10n/sl/files_external.po | 23 ++--- l10n/sl/files_sharing.po | 4 +- l10n/sl/lib.po | 8 +- l10n/sl/settings.po | 20 ++--- l10n/sl/user_ldap.po | 44 ++++----- l10n/templates/core.pot | 68 +++++++------- l10n/templates/files.pot | 4 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 6 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/sl.php | 4 +- settings/l10n/sl.php | 13 +-- 28 files changed, 311 insertions(+), 277 deletions(-) diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 9c86ffcfef..01405530ff 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -2,9 +2,9 @@ "Could not move %s - File with this name already exists" => "Ni mogoče premakniti %s - datoteka s tem imenom že obstaja", "Could not move %s" => "Ni mogoče premakniti %s", "Unable to rename file" => "Ni mogoče preimenovati datoteke", -"No file was uploaded. Unknown error" => "Nobena datoteka ni naložena. Neznana napaka.", +"No file was uploaded. Unknown error" => "Ni poslane nobene datoteke. Neznana napaka.", "There is no error, the file uploaded with success" => "Datoteka je uspešno poslana.", -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti v obrazcu HTML.", "The uploaded file was only partially uploaded" => "Datoteka je le delno naložena", "No file was uploaded" => "Nobena datoteka ni bila naložena", @@ -21,24 +21,24 @@ "replace" => "zamenjaj", "suggest name" => "predlagaj ime", "cancel" => "prekliči", -"replaced {new_name} with {old_name}" => "zamenjano ime {new_name} z imenom {old_name}", +"replaced {new_name} with {old_name}" => "preimenovano ime {new_name} z imenom {old_name}", "undo" => "razveljavi", "perform delete operation" => "izvedi opravilo brisanja", "'.' is an invalid file name." => "'.' je neveljavno ime datoteke.", -"File name cannot be empty." => "Ime datoteke ne sme biti prazno.", +"File name cannot be empty." => "Ime datoteke ne sme biti prazno polje.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni.", "Your storage is full, files can not be updated or synced anymore!" => "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in usklajevati!", "Your storage is almost full ({usedSpacePercent}%)" => "Mesto za shranjevanje je skoraj polno ({usedSpacePercent}%)", -"Your download is being prepared. This might take some time if the files are big." => "Postopek priprave datoteke za prejem je lahko dolgotrajen.", +"Your download is being prepared. This might take some time if the files are big." => "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika.", "Unable to upload your file as it is a directory or has 0 bytes" => "Pošiljanje ni mogoče, saj gre za mapo, ali pa je datoteka velikosti 0 bajtov.", "Upload Error" => "Napaka med pošiljanjem", "Close" => "Zapri", "1 file uploading" => "Pošiljanje 1 datoteke", -"{count} files uploading" => "nalagam {count} datotek", +"{count} files uploading" => "pošiljanje {count} datotek", "Upload cancelled." => "Pošiljanje je preklicano.", "File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", -"URL cannot be empty." => "Naslov URL ne sme biti prazen.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud", +"URL cannot be empty." => "Naslov URL ne sme biti prazna vrednost.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud.", "Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index 5614c93585..4ff2eed3bf 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -2,21 +2,23 @@ "Access granted" => "Dostop je odobren", "Error configuring Dropbox storage" => "Napaka nastavljanja shrambe Dropbox", "Grant access" => "Odobri dostop", -"Please provide a valid Dropbox app key and secret." => "Vpišite veljaven ključ programa in kodo za Dropbox", +"Please provide a valid Dropbox app key and secret." => "Vpisati je treba veljaven ključ programa in kodo za Dropbox", "Error configuring Google Drive storage" => "Napaka nastavljanja shrambe Google Drive", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Opozorilo: \"smbclient\" ni nameščen. Priklapljanje CIFS/SMB pogonov ni mogoče. Prosimo, prosite vašega skrbnika, če ga namesti.", -"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Opozorilo: FTP podpora v PHP ni omogočena ali nameščena. Priklapljanje FTP pogonov ni mogoče. Prosimo, prosite vašega skrbnika, če jo namesti ali omogoči.", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče.", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ni mogoče.", "External Storage" => "Zunanja podatkovna shramba", "Folder name" => "Ime mape", +"External storage" => "Zunanja shramba", "Configuration" => "Nastavitve", "Options" => "Možnosti", "Applicable" => "Se uporablja", +"Add storage" => "Dodaj shrambo", "None set" => "Ni nastavljeno", "All Users" => "Vsi uporabniki", "Groups" => "Skupine", "Users" => "Uporabniki", "Delete" => "Izbriši", -"Enable User External Storage" => "Omogoči uporabo zunanje podatkovne shrambe za uporabnike", +"Enable User External Storage" => "Omogoči uporabniško zunanjo podatkovno shrambo", "Allow users to mount their own external storage" => "Dovoli uporabnikom priklop lastne zunanje podatkovne shrambe", "SSL root certificates" => "Korenska potrdila SSL", "Import Root Certificate" => "Uvozi korensko potrdilo" diff --git a/apps/files_trashbin/l10n/hu_HU.php b/apps/files_trashbin/l10n/hu_HU.php index 9c158c2b9e..1d86190daa 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -12,5 +12,6 @@ "{count} files" => "{count} fájl", "Nothing in here. Your trash bin is empty!" => "Itt nincs semmi. Az Ön szemetes mappája üres!", "Restore" => "Visszaállítás", -"Delete" => "Törlés" +"Delete" => "Törlés", +"Deleted Files" => "Törölt fájlok" ); diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 6217a6d482..399bfdc037 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.", "Not recommended, use for testing only." => "Nicht empfohlen, nur zu Testzwecken.", +"Cache Time-To-Live" => "Speichere Time-To-Live zwischen", "in seconds. A change empties the cache." => "in Sekunden. Eine Änderung leert den Cache.", "Directory Settings" => "Ordnereinstellungen", "User Display Name Field" => "Feld für den Anzeigenamen des Benutzers", @@ -63,7 +64,12 @@ "Group Search Attributes" => "Gruppensucheigenschaften", "Group-Member association" => "Assoziation zwischen Gruppe und Benutzer", "Special Attributes" => "Spezielle Eigenschaften", +"Quota Field" => "Kontingent Feld", +"Quota Default" => "Kontingent Standard", "in bytes" => "in Bytes", +"Email Field" => "E-Mail Feld", +"User Home Folder Naming Rule" => "Benennungsregel für das Heimatverzeichnis des Benutzers", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein.", +"Test Configuration" => "Testkonfiguration", "Help" => "Hilfe" ); diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index 9508d49557..22ed5dc2f7 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -1,15 +1,24 @@ "Brisanje nastavitev strežnika je spodletelo.", +"The configuration is valid and the connection could be established!" => "Nastavitev je veljavna, zato je povezavo mogoče vzpostaviti!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Nastavitev je veljavna, vendar pa je vez Bind spodletela. Preveriti je treba nastavitve strežnika in ustreznost poveril.", +"The configuration is invalid. Please look in the ownCloud log for further details." => "Nastavitev je veljavna. Več podrobnosti je zapisanih v dnevniku ownCloud.", "Deletion failed" => "Brisanje je spodletelo.", +"Take over settings from recent server configuration?" => "Ali naj se prevzame nastavitve nedavne nastavitve strežnika?", "Keep settings?" => "Ali nas se nastavitve ohranijo?", +"Cannot add server configuration" => "Ni mogoče dodati nastavitev strežnika", +"Connection test succeeded" => "Preizkus povezave je uspešno končan.", +"Connection test failed" => "Preizkus povezave je spodletel.", "Do you really want to delete the current Server Configuration?" => "Ali res želite izbrisati trenutne nastavitve strežnika?", "Confirm Deletion" => "Potrdi brisanje", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Opozorilo: možnosti user_ldap in user_webdavauth nista združljivi. Pri uporabi je mogoče nepričakovano obnašanje sistema. Eno izmed možnosti je priporočeno onemgočiti.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Opozorilo: modul PHP LDAP mora biti nameščen, sicer vmesnik ne bo deloval. Paket je treba namestiti.", +"Server configuration" => "Nastavitev strežnika", "Add Server Configuration" => "Dodaj nastavitve strežnika", "Host" => "Gostitelj", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokol je lahko izpuščen, če ni posebej zahtevan SSL. V tem primeru se mora naslov začeti z ldaps://", "Base DN" => "Osnovni DN", +"One Base DN per line" => "En osnovni DN na vrstico", "You can specify Base DN for users and groups in the Advanced tab" => "Osnovni DN za uporabnike in skupine lahko določite v zavihku naprednih možnosti.", "User DN" => "Uporabnik DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN uporabnikovega odjemalca, s katerim naj se opravi vezava, npr. uid=agent,dc=example,dc=com. Za brezimni dostop sta polji DN in geslo prazni.", @@ -25,19 +34,29 @@ "Defines the filter to apply, when retrieving groups." => "Določi filter za uporabo med pridobivanjem skupin.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "Brez katerekoli vsebnika, npr. \"objectClass=posixGroup\".", "Connection Settings" => "Nastavitve povezave", +"Configuration Active" => "Dejavna nastavitev", +"When unchecked, this configuration will be skipped." => "Neizbrana možnost preskoči nastavitev.", "Port" => "Vrata", +"Backup (Replica) Host" => "Varnostna kopija (replika) podatkov gostitelja", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Podati je treba izbirno varnostno kopijo gostitelja. Ta mora biti natančna replika strežnika LDAP/AD.", +"Backup (Replica) Port" => "Varnostna kopija (replika) podatka vrat", "Disable Main Server" => "Onemogoči glavni strežnik", +"When switched on, ownCloud will only connect to the replica server." => "Ob priklopu bo strežnik ownCloud povezan le z kopijo (repliko) strežnika.", "Use TLS" => "Uporabi TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "Strežnika ni priporočljivo uporabljati za povezave LDAPS. Povezava bo spodletela.", "Case insensitve LDAP server (Windows)" => "Strežnik LDAP ne upošteva velikosti črk (Windows)", "Turn off SSL certificate validation." => "Onemogoči določanje veljavnosti potrdila SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Kadar deluje povezava le s to možnostjo, uvozite potrdilo SSL iz strežnika LDAP na vaš strežnik ownCloud.", "Not recommended, use for testing only." => "Dejanje ni priporočeno; uporabljeno naj bo le za preizkušanje delovanja.", +"Cache Time-To-Live" => "Predpomni podatke TTL", "in seconds. A change empties the cache." => "v sekundah. Sprememba izprazni predpomnilnik.", "Directory Settings" => "Nastavitve mape", "User Display Name Field" => "Polje za uporabnikovo prikazano ime", "The LDAP attribute to use to generate the user`s ownCloud name." => "Atribut LDAP, uporabljen pri ustvarjanju uporabniških imen ownCloud.", "Base User Tree" => "Osnovno uporabniško drevo", "One User Base DN per line" => "Eno osnovno uporabniško ime DN na vrstico", +"User Search Attributes" => "Uporabi atribute iskanja", +"Optional; one attribute per line" => "Izbirno; en atribut na vrstico", "Group Display Name Field" => "Polje za prikazano ime skupine", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Atribut LDAP, uporabljen pri ustvarjanju imen skupin ownCloud.", "Base Group Tree" => "Osnovno drevo skupine", @@ -49,6 +68,7 @@ "Quota Default" => "Privzeta količinska omejitev", "in bytes" => "v bajtih", "Email Field" => "Polje elektronske pošte", +"User Home Folder Naming Rule" => "Pravila poimenovanja uporabniške osebne mape", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Pustite prazno za uporabniško ime (privzeto), sicer navedite atribut LDAP/AD.", "Test Configuration" => "Preizkusne nastavitve", "Help" => "Pomoč" diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 747aa1c2a2..502a37cb31 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -1,16 +1,16 @@ "Uporanik %s je dal datoteko v souporabo z vami", -"User %s shared a folder with you" => "Uporanik %s je dal mapo v souporabo z vami", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Uporanik %s je dal datoteko \"%s\" v souporabo z vami. Prenesete jo lahko tukaj: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uporanik %s je dal mapo \"%s\" v souporabo z vami. Prenesete je lahko tukaj: %s", +"User %s shared a file with you" => "Uporabnik %s je omogočil souporabo datoteke", +"User %s shared a folder with you" => "Uporabnik %s je omogočil souporabo mape", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Uporabnik %s je omogočil souporabo datoteke \"%s\". Prejmete jo lahko preko povezave: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uporabnik %s je omogočil souporabo mape \"%s\". Prejmete jo lahko preko povezave: %s", "Category type not provided." => "Vrsta kategorije ni podana.", -"No category to add?" => "Ni kategorije za dodajanje?", +"No category to add?" => "Ali ni kategorije za dodajanje?", "This category already exists: %s" => "Kategorija že obstaja: %s", "Object type not provided." => "Vrsta predmeta ni podana.", -"%s ID not provided." => "%s ID ni podan.", -"Error adding %s to favorites." => "Napaka pri dodajanju %s med priljubljene.", +"%s ID not provided." => "ID %s ni podan.", +"Error adding %s to favorites." => "Napaka dodajanja %s med priljubljene predmete.", "No categories selected for deletion." => "Za izbris ni izbrana nobena kategorija.", -"Error removing %s from favorites." => "Napaka pri odstranjevanju %s iz priljubljenih.", +"Error removing %s from favorites." => "Napaka odstranjevanja %s iz priljubljenih predmetov.", "Sunday" => "nedelja", "Monday" => "ponedeljek", "Tuesday" => "torek", @@ -51,7 +51,7 @@ "Ok" => "V redu", "The object type is not specified." => "Vrsta predmeta ni podana.", "Error" => "Napaka", -"The app name is not specified." => "Ime aplikacije ni podano.", +"The app name is not specified." => "Ime programa ni podano.", "The required file {file} is not installed!" => "Zahtevana datoteka {file} ni nameščena!", "Shared" => "V souporabi", "Share" => "Souporaba", @@ -61,16 +61,16 @@ "Shared with you and the group {group} by {owner}" => "V souporabi z vami in skupino {group}. Lastnik je {owner}.", "Shared with you by {owner}" => "V souporabi z vami. Lastnik je {owner}.", "Share with" => "Omogoči souporabo z", -"Share with link" => "Omogoči souporabo s povezavo", +"Share with link" => "Omogoči souporabo preko povezave", "Password protect" => "Zaščiti z geslom", "Password" => "Geslo", -"Email link to person" => "Posreduj povezavo po e-pošti", +"Email link to person" => "Posreduj povezavo po elektronski pošti", "Send" => "Pošlji", "Set expiration date" => "Nastavi datum preteka", "Expiration date" => "Datum preteka", "Share via email:" => "Souporaba preko elektronske pošte:", "No people found" => "Ni najdenih uporabnikov", -"Resharing is not allowed" => "Ponovna souporaba ni omogočena", +"Resharing is not allowed" => "Nadaljnja souporaba ni dovoljena", "Shared in {item} with {user}" => "V souporabi v {item} z {user}", "Unshare" => "Odstrani souporabo", "can edit" => "lahko ureja", @@ -83,14 +83,14 @@ "Error unsetting expiration date" => "Napaka brisanja datuma preteka", "Error setting expiration date" => "Napaka med nastavljanjem datuma preteka", "Sending ..." => "Pošiljanje ...", -"Email sent" => "E-pošta je bila poslana", +"Email sent" => "Elektronska pošta je poslana", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.", -"ownCloud password reset" => "Ponastavitev gesla ownCloud", -"Use the following link to reset your password: {link}" => "Uporabite naslednjo povezavo za ponastavitev gesla: {link}", +"ownCloud password reset" => "Ponastavitev gesla za oblak ownCloud", +"Use the following link to reset your password: {link}" => "Za ponastavitev gesla uporabite povezavo: {link}", "You will receive a link to reset your password via Email." => "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla.", -"Reset email send." => "E-pošta za ponastavitev je bila poslana.", -"Request failed!" => "Zahtevek je spodletel!", +"Reset email send." => "Sporočilo z navodili za ponastavitev gesla je poslana na vaš elektronski naslov.", +"Request failed!" => "Zahteva je spodletela!", "Username" => "Uporabniško Ime", "Request reset" => "Zahtevaj ponovno nastavitev", "Your password was reset" => "Geslo je ponovno nastavljeno", @@ -107,10 +107,10 @@ "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", "Security Warning" => "Varnostno opozorilo", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Na voljo ni varnega generatorja naključnih števil. Prosimo, če omogočite PHP OpenSSL razširitev.", -"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Brez varnega generatorja naključnih števil lahko napadalec napove žetone za ponastavitev gesla, kar mu omogoča, da prevzame vaš ​​račun.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Na voljo ni nobenega varnega ustvarjalnika naključnih števil. Omogočiti je treba razširitev PHP OpenSSL.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Brez varnega ustvarjalnika naključnih števil je mogoče napovedati žetone za ponastavitev gesla, s čimer je mogoče prevzeti nadzor nad računom.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena.", -"For information how to properly configure your server, please see the documentation." => "Navodila, kako pravilno namestiti strežnik, so na straneh documentacije.", +"For information how to properly configure your server, please see the documentation." => "Navodila, kako pravilno namestiti strežnik, so na straneh dokumentacije.", "Create an admin account" => "Ustvari skrbniški račun", "Advanced" => "Napredne možnosti", "Data folder" => "Podatkovna mapa", @@ -125,10 +125,10 @@ "web services under your control" => "spletne storitve pod vašim nadzorom", "Log out" => "Odjava", "Automatic logon rejected!" => "Samodejno prijavljanje je zavrnjeno!", -"If you did not change your password recently, your account may be compromised!" => "Če vašega gesla niste nedavno spremenili, je vaš račun lahko ogrožen!", +"If you did not change your password recently, your account may be compromised!" => "V primeru, da gesla za dostop že nekaj časa niste spremenili, je račun lahko ogrožen!", "Please change your password to secure your account again." => "Spremenite geslo za izboljšanje zaščite računa.", "Lost your password?" => "Ali ste pozabili geslo?", -"remember" => "Zapomni si me", +"remember" => "zapomni si", "Log in" => "Prijava", "Alternative Logins" => "Druge prijavne možnosti", "prev" => "nazaj", diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index f11912dee7..7bdb91c81f 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"PO-Revision-Date: 2013-03-11 18:30+0000\n" +"Last-Translator: Marcel Kühlhorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,248 +96,248 @@ msgstr "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird d msgid "Server configuration" msgstr "Serverkonfiguration" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "Serverkonfiguration hinzufügen" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "Host" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "Basis-DN" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "Ein Base DN pro Zeile" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "Benutzer-DN" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer." -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Passwort" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "Lasse die Felder von DN und Passwort für anonymen Zugang leer." -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "Benutzer-Login-Filter" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch." -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "verwende %%uid Platzhalter, z. B. \"uid=%%uid\"" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "Benutzer-Filter-Liste" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "Definiert den Filter für die Anfrage der Benutzer." -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "ohne Platzhalter, z.B.: \"objectClass=person\"" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "Gruppen-Filter" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "Definiert den Filter für die Anfrage der Gruppen." -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "ohne Platzhalter, z.B.: \"objectClass=posixGroup\"" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "Verbindungseinstellungen" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "Konfiguration aktiv" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "Konfiguration wird übersprungen wenn deaktiviert" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "Port" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "Backup Host (Kopie)" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Gib einen optionalen Backup Host an. Es muss sich um eine Kopie des Haupt LDAP/AD Servers handeln." -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "Backup Port" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "Hauptserver deaktivieren" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "Wenn aktiviert, wird ownCloud ausschließlich den Backupserver verwenden." -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "Nutze TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "Benutze es nicht zusammen mit LDAPS Verbindungen, es wird fehlschlagen." -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "Schalte die SSL-Zertifikatsprüfung aus." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "Nicht empfohlen, nur zu Testzwecken." -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Speichere Time-To-Live zwischen" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "in Sekunden. Eine Änderung leert den Cache." -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "Ordnereinstellungen" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "Feld für den Anzeigenamen des Benutzers" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. " -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "Basis-Benutzerbaum" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "Ein Benutzer Base DN pro Zeile" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "Benutzersucheigenschaften" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "Optional; eine Eigenschaft pro Zeile" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "Feld für den Anzeigenamen der Gruppe" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. " -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "Basis-Gruppenbaum" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "Ein Gruppen Base DN pro Zeile" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "Gruppensucheigenschaften" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "Assoziation zwischen Gruppe und Benutzer" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "Spezielle Eigenschaften" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "Kontingent Feld" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "Kontingent Standard" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "in Bytes" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "E-Mail Feld" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Benennungsregel für das Heimatverzeichnis des Benutzers" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein." -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "Testkonfiguration" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hilfe" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 3496d44486..0206e4346f 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Akos , 2013. # Laszlo Tornoci , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"PO-Revision-Date: 2013-03-10 13:10+0000\n" +"Last-Translator: akoscomp \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" @@ -78,4 +79,4 @@ msgstr "Törlés" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "Törölt fájlok" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index f067101a9a..a979c84ecf 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" -"PO-Revision-Date: 2013-03-09 09:30+0000\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"PO-Revision-Date: 2013-03-11 21:40+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -26,26 +26,26 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Uporanik %s je dal datoteko v souporabo z vami" +msgstr "Uporabnik %s je omogočil souporabo datoteke" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Uporanik %s je dal mapo v souporabo z vami" +msgstr "Uporabnik %s je omogočil souporabo mape" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Uporanik %s je dal datoteko \"%s\" v souporabo z vami. Prenesete jo lahko tukaj: %s" +msgstr "Uporabnik %s je omogočil souporabo datoteke \"%s\". Prejmete jo lahko preko povezave: %s" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Uporanik %s je dal mapo \"%s\" v souporabo z vami. Prenesete je lahko tukaj: %s" +msgstr "Uporabnik %s je omogočil souporabo mape \"%s\". Prejmete jo lahko preko povezave: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -53,7 +53,7 @@ msgstr "Vrsta kategorije ni podana." #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Ni kategorije za dodajanje?" +msgstr "Ali ni kategorije za dodajanje?" #: ajax/vcategories/add.php:37 #, php-format @@ -70,12 +70,12 @@ msgstr "Vrsta predmeta ni podana." #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID ni podan." +msgstr "ID %s ni podan." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Napaka pri dodajanju %s med priljubljene." +msgstr "Napaka dodajanja %s med priljubljene predmete." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -84,7 +84,7 @@ msgstr "Za izbris ni izbrana nobena kategorija." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Napaka pri odstranjevanju %s iz priljubljenih." +msgstr "Napaka odstranjevanja %s iz priljubljenih predmetov." #: js/config.php:34 msgid "Sunday" @@ -244,142 +244,142 @@ msgid "The object type is not specified." msgstr "Vrsta predmeta ni podana." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:582 -#: js/share.js:594 +#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 +#: js/share.js:578 msgid "Error" msgstr "Napaka" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Ime aplikacije ni podano." +msgstr "Ime programa ni podano." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" msgstr "Zahtevana datoteka {file} ni nameščena!" -#: js/share.js:29 js/share.js:43 js/share.js:90 +#: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "V souporabi" -#: js/share.js:93 +#: js/share.js:90 msgid "Share" msgstr "Souporaba" -#: js/share.js:141 js/share.js:622 +#: js/share.js:125 js/share.js:606 msgid "Error while sharing" msgstr "Napaka med souporabo" -#: js/share.js:152 +#: js/share.js:136 msgid "Error while unsharing" msgstr "Napaka med odstranjevanjem souporabe" -#: js/share.js:159 +#: js/share.js:143 msgid "Error while changing permissions" msgstr "Napaka med spreminjanjem dovoljenj" -#: js/share.js:168 +#: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" msgstr "V souporabi z vami in skupino {group}. Lastnik je {owner}." -#: js/share.js:170 +#: js/share.js:154 msgid "Shared with you by {owner}" msgstr "V souporabi z vami. Lastnik je {owner}." -#: js/share.js:175 +#: js/share.js:159 msgid "Share with" msgstr "Omogoči souporabo z" -#: js/share.js:180 +#: js/share.js:164 msgid "Share with link" -msgstr "Omogoči souporabo s povezavo" +msgstr "Omogoči souporabo preko povezave" -#: js/share.js:183 +#: js/share.js:167 msgid "Password protect" msgstr "Zaščiti z geslom" -#: js/share.js:185 templates/installation.php:47 templates/login.php:35 +#: js/share.js:169 templates/installation.php:47 templates/login.php:35 msgid "Password" msgstr "Geslo" -#: js/share.js:189 +#: js/share.js:173 msgid "Email link to person" -msgstr "Posreduj povezavo po e-pošti" +msgstr "Posreduj povezavo po elektronski pošti" -#: js/share.js:190 +#: js/share.js:174 msgid "Send" msgstr "Pošlji" -#: js/share.js:194 +#: js/share.js:178 msgid "Set expiration date" msgstr "Nastavi datum preteka" -#: js/share.js:195 +#: js/share.js:179 msgid "Expiration date" msgstr "Datum preteka" -#: js/share.js:227 +#: js/share.js:211 msgid "Share via email:" msgstr "Souporaba preko elektronske pošte:" -#: js/share.js:229 +#: js/share.js:213 msgid "No people found" msgstr "Ni najdenih uporabnikov" -#: js/share.js:256 +#: js/share.js:240 msgid "Resharing is not allowed" -msgstr "Ponovna souporaba ni omogočena" +msgstr "Nadaljnja souporaba ni dovoljena" -#: js/share.js:292 +#: js/share.js:276 msgid "Shared in {item} with {user}" msgstr "V souporabi v {item} z {user}" -#: js/share.js:313 +#: js/share.js:297 msgid "Unshare" msgstr "Odstrani souporabo" -#: js/share.js:325 +#: js/share.js:309 msgid "can edit" msgstr "lahko ureja" -#: js/share.js:327 +#: js/share.js:311 msgid "access control" msgstr "nadzor dostopa" -#: js/share.js:330 +#: js/share.js:314 msgid "create" msgstr "ustvari" -#: js/share.js:333 +#: js/share.js:317 msgid "update" msgstr "posodobi" -#: js/share.js:336 +#: js/share.js:320 msgid "delete" msgstr "izbriši" -#: js/share.js:339 +#: js/share.js:323 msgid "share" msgstr "določi souporabo" -#: js/share.js:373 js/share.js:569 +#: js/share.js:357 js/share.js:553 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:582 +#: js/share.js:566 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:594 +#: js/share.js:578 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:609 +#: js/share.js:593 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:620 +#: js/share.js:604 msgid "Email sent" -msgstr "E-pošta je bila poslana" +msgstr "Elektronska pošta je poslana" #: js/update.js:14 msgid "" @@ -394,11 +394,11 @@ msgstr "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownClou #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Ponastavitev gesla ownCloud" +msgstr "Ponastavitev gesla za oblak ownCloud" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Uporabite naslednjo povezavo za ponastavitev gesla: {link}" +msgstr "Za ponastavitev gesla uporabite povezavo: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." @@ -406,11 +406,11 @@ msgstr "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "E-pošta za ponastavitev je bila poslana." +msgstr "Sporočilo z navodili za ponastavitev gesla je poslana na vaš elektronski naslov." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Zahtevek je spodletel!" +msgstr "Zahteva je spodletela!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:41 #: templates/login.php:28 @@ -481,13 +481,13 @@ msgstr "Varnostno opozorilo" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Na voljo ni varnega generatorja naključnih števil. Prosimo, če omogočite PHP OpenSSL razširitev." +msgstr "Na voljo ni nobenega varnega ustvarjalnika naključnih števil. Omogočiti je treba razširitev PHP OpenSSL." #: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Brez varnega generatorja naključnih števil lahko napadalec napove žetone za ponastavitev gesla, kar mu omogoča, da prevzame vaš ​​račun." +msgstr "Brez varnega ustvarjalnika naključnih števil je mogoče napovedati žetone za ponastavitev gesla, s čimer je mogoče prevzeti nadzor nad računom." #: templates/installation.php:32 msgid "" @@ -500,7 +500,7 @@ msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Navodila, kako pravilno namestiti strežnik, so na straneh documentacije." +msgstr "Navodila, kako pravilno namestiti strežnik, so na straneh dokumentacije." #: templates/installation.php:37 msgid "Create an admin account" @@ -564,7 +564,7 @@ msgstr "Samodejno prijavljanje je zavrnjeno!" msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Če vašega gesla niste nedavno spremenili, je vaš račun lahko ogrožen!" +msgstr "V primeru, da gesla za dostop že nekaj časa niste spremenili, je račun lahko ogrožen!" #: templates/login.php:13 msgid "Please change your password to secure your account again." @@ -576,7 +576,7 @@ msgstr "Ali ste pozabili geslo?" #: templates/login.php:41 msgid "remember" -msgstr "Zapomni si me" +msgstr "zapomni si" #: templates/login.php:43 msgid "Log in" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 001412ad69..40792e24db 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" -"PO-Revision-Date: 2013-03-09 21:40+0000\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"PO-Revision-Date: 2013-03-11 21:40+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "Ni mogoče preimenovati datoteke" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Nobena datoteka ni naložena. Neznana napaka." +msgstr "Ni poslane nobene datoteke. Neznana napaka." #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" @@ -47,7 +47,7 @@ msgstr "Datoteka je uspešno poslana." #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:" +msgstr "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:" #: ajax/upload.php:29 msgid "" @@ -79,7 +79,7 @@ msgstr "Na voljo ni dovolj prostora" msgid "Invalid directory." msgstr "Neveljavna mapa." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Datoteke" @@ -118,7 +118,7 @@ msgstr "prekliči" #: js/filelist.js:298 msgid "replaced {new_name} with {old_name}" -msgstr "zamenjano ime {new_name} z imenom {old_name}" +msgstr "preimenovano ime {new_name} z imenom {old_name}" #: js/filelist.js:298 msgid "undo" @@ -134,7 +134,7 @@ msgstr "'.' je neveljavno ime datoteke." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Ime datoteke ne sme biti prazno." +msgstr "Ime datoteke ne sme biti prazno polje." #: js/files.js:64 msgid "" @@ -154,7 +154,7 @@ msgstr "Mesto za shranjevanje je skoraj polno ({usedSpacePercent}%)" msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen." +msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika." #: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -174,7 +174,7 @@ msgstr "Pošiljanje 1 datoteke" #: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" -msgstr "nalagam {count} datotek" +msgstr "pošiljanje {count} datotek" #: js/files.js:389 js/files.js:424 msgid "Upload cancelled." @@ -187,11 +187,11 @@ msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošilja #: js/files.js:571 msgid "URL cannot be empty." -msgstr "Naslov URL ne sme biti prazen." +msgstr "Naslov URL ne sme biti prazna vrednost." #: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud" +msgstr "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud." #: js/files.js:954 templates/index.php:68 msgid "Name" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 1eb81c7708..d76b4df657 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -4,14 +4,15 @@ # # Translators: # <>, 2012. +# Matej Urbančič <>, 2013. # Peter Peroša , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"PO-Revision-Date: 2013-03-11 14:31+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,24 +34,24 @@ msgstr "Odobri dostop" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Vpišite veljaven ključ programa in kodo za Dropbox" +msgstr "Vpisati je treba veljaven ključ programa in kodo za Dropbox" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" msgstr "Napaka nastavljanja shrambe Google Drive" -#: lib/config.php:421 +#: lib/config.php:423 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Opozorilo: \"smbclient\" ni nameščen. Priklapljanje CIFS/SMB pogonov ni mogoče. Prosimo, prosite vašega skrbnika, če ga namesti." +msgstr "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." -#: lib/config.php:424 +#: lib/config.php:426 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Opozorilo: FTP podpora v PHP ni omogočena ali nameščena. Priklapljanje FTP pogonov ni mogoče. Prosimo, prosite vašega skrbnika, če jo namesti ali omogoči." +msgstr "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ni mogoče." #: templates/settings.php:3 msgid "External Storage" @@ -62,7 +63,7 @@ msgstr "Ime mape" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Zunanja shramba" #: templates/settings.php:11 msgid "Configuration" @@ -78,7 +79,7 @@ msgstr "Se uporablja" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Dodaj shrambo" #: templates/settings.php:90 msgid "None set" @@ -103,7 +104,7 @@ msgstr "Izbriši" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Omogoči uporabo zunanje podatkovne shrambe za uporabnike" +msgstr "Omogoči uporabniško zunanjo podatkovno shrambo" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 9d62304a4d..ea4e088032 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" -"PO-Revision-Date: 2013-03-09 18:42+0000\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"PO-Revision-Date: 2013-03-11 19:52+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 29df321b54..291699bf84 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:06+0100\n" -"PO-Revision-Date: 2013-03-09 07:30+0000\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"PO-Revision-Date: 2013-03-11 08:50+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "Skrbništvo" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Prejem datotek ZIP je onemogočen." +msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." #: files.php:210 msgid "Files need to be downloaded one by one." @@ -236,7 +236,7 @@ msgstr "Pred %d meseci" #: template.php:123 msgid "last year" -msgstr "lani" +msgstr "lansko leto" #: template.php:124 msgid "years ago" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index b754bc7992..efba9dfb34 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:06+0100\n" -"PO-Revision-Date: 2013-03-09 22:50+0000\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"PO-Revision-Date: 2013-03-11 13:00+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Ni mogoče naložiti seznama iz App Store" +msgstr "Ni mogoče naložiti seznama iz središča App Store" #: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 @@ -74,7 +74,7 @@ msgstr "Neveljavna zahteva" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Skrbniki se ne morejo odstraniti iz skupine admin" +msgstr "Skrbnikov ni mogoče odstraniti iz skupine skrbnikov (admin)" #: ajax/togglegroups.php:30 #, php-format @@ -233,7 +233,7 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "Strežnik ownCloud je brez delujoče internetne povezave. To pomeni, da bodo nekatere možnosti onemogočene. Ne bo mogoče priklapljati zunanjih priklopnih točk, ne bo obvestil o posodobitvah ali namestitvah programske opreme, prav tako najverjetneje ne bo mogoče pošiljati obvestilnih sporočil preko elektronske pošte. Za uporabo vseh zmožnosti oblaka ownCloud, mora biti internetna povezava vzpostavljena in delujoča." #: templates/admin.php:92 msgid "Cron" @@ -247,13 +247,13 @@ msgstr "Izvedi eno nalogo z vsako naloženo stranjo." msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "Datoteka cron.php je vpisana pri storitvi webcron. Preko protokola HTTP je datoteka cron.php, ki se nahaja v korenski mapi ownCloud, klicana enkrat na minuto." #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Uporaba sistemske storitve cron. Preko sistemskega posla cron je datoteka cron.php, ki se nahaja v mapi ownCloud, klicana enkrat na minuto." #: templates/admin.php:128 msgid "Sharing" @@ -346,7 +346,7 @@ msgstr "Več programov" #: templates/apps.php:28 msgid "Select an App" -msgstr "Izberite program" +msgstr "Izbor programa" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" @@ -403,7 +403,7 @@ msgstr "Geslo" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Vaše geslo je spremenjeno" +msgstr "Geslo je spremenjeno" #: templates/personal.php:39 msgid "Unable to change your password" @@ -463,7 +463,7 @@ msgstr "WebDAV" #: templates/personal.php:93 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Ta naslov uporabite za povezavo z oblakom ownCloud iz vašega upravljalnika datotek." +msgstr "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud." #: templates/users.php:21 templates/users.php:77 msgid "Login Name" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 033d398089..680f05c14e 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" -"PO-Revision-Date: 2013-03-09 13:10+0000\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"PO-Revision-Date: 2013-03-11 18:30+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -26,19 +26,19 @@ msgstr "Brisanje nastavitev strežnika je spodletelo." #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "Nastavitev je veljavna, zato je povezavo mogoče vzpostaviti!" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "Nastavitev je veljavna, vendar pa je vez Bind spodletela. Preveriti je treba nastavitve strežnika in ustreznost poveril." #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "Nastavitev je veljavna. Več podrobnosti je zapisanih v dnevniku ownCloud." #: js/settings.js:66 msgid "Deletion failed" @@ -46,7 +46,7 @@ msgstr "Brisanje je spodletelo." #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Ali naj se prevzame nastavitve nedavne nastavitve strežnika?" #: js/settings.js:83 msgid "Keep settings?" @@ -54,15 +54,15 @@ msgstr "Ali nas se nastavitve ohranijo?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "Ni mogoče dodati nastavitev strežnika" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "Preizkus povezave je uspešno končan." #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "Preizkus povezave je spodletel." #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" @@ -87,7 +87,7 @@ msgstr "Opozorilo: modul PHP LDAP mora biti nameščen, sicer vmesnik ne #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "Nastavitev strežnika" #: templates/settings.php:31 msgid "Add Server Configuration" @@ -108,7 +108,7 @@ msgstr "Osnovni DN" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "" +msgstr "En osnovni DN na vrstico" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -179,11 +179,11 @@ msgstr "Nastavitve povezave" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "" +msgstr "Dejavna nastavitev" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Neizbrana možnost preskoči nastavitev." #: templates/settings.php:71 msgid "Port" @@ -191,17 +191,17 @@ msgstr "Vrata" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Varnostna kopija (replika) podatkov gostitelja" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Podati je treba izbirno varnostno kopijo gostitelja. Ta mora biti natančna replika strežnika LDAP/AD." #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Varnostna kopija (replika) podatka vrat" #: templates/settings.php:74 msgid "Disable Main Server" @@ -209,7 +209,7 @@ msgstr "Onemogoči glavni strežnik" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "Ob priklopu bo strežnik ownCloud povezan le z kopijo (repliko) strežnika." #: templates/settings.php:75 msgid "Use TLS" @@ -217,7 +217,7 @@ msgstr "Uporabi TLS" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Strežnika ni priporočljivo uporabljati za povezave LDAPS. Povezava bo spodletela." #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" @@ -239,7 +239,7 @@ msgstr "Dejanje ni priporočeno; uporabljeno naj bo le za preizkušanje delovanj #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Predpomni podatke TTL" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." @@ -267,11 +267,11 @@ msgstr "Eno osnovno uporabniško ime DN na vrstico" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "" +msgstr "Uporabi atribute iskanja" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Izbirno; en atribut na vrstico" #: templates/settings.php:85 msgid "Group Display Name Field" @@ -319,7 +319,7 @@ msgstr "Polje elektronske pošte" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Pravila poimenovanja uporabniške osebne mape" #: templates/settings.php:95 msgid "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index feab728aed..2b0f3f96e5 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -238,8 +238,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:582 -#: js/share.js:594 +#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 +#: js/share.js:578 msgid "Error" msgstr "" @@ -251,127 +251,127 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:29 js/share.js:43 js/share.js:90 +#: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" -#: js/share.js:93 +#: js/share.js:90 msgid "Share" msgstr "" -#: js/share.js:141 js/share.js:622 +#: js/share.js:125 js/share.js:606 msgid "Error while sharing" msgstr "" -#: js/share.js:152 +#: js/share.js:136 msgid "Error while unsharing" msgstr "" -#: js/share.js:159 +#: js/share.js:143 msgid "Error while changing permissions" msgstr "" -#: js/share.js:168 +#: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:170 +#: js/share.js:154 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:175 +#: js/share.js:159 msgid "Share with" msgstr "" -#: js/share.js:180 +#: js/share.js:164 msgid "Share with link" msgstr "" -#: js/share.js:183 +#: js/share.js:167 msgid "Password protect" msgstr "" -#: js/share.js:185 templates/installation.php:47 templates/login.php:35 +#: js/share.js:169 templates/installation.php:47 templates/login.php:35 msgid "Password" msgstr "" -#: js/share.js:189 +#: js/share.js:173 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:174 msgid "Send" msgstr "" -#: js/share.js:194 +#: js/share.js:178 msgid "Set expiration date" msgstr "" -#: js/share.js:195 +#: js/share.js:179 msgid "Expiration date" msgstr "" -#: js/share.js:227 +#: js/share.js:211 msgid "Share via email:" msgstr "" -#: js/share.js:229 +#: js/share.js:213 msgid "No people found" msgstr "" -#: js/share.js:256 +#: js/share.js:240 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:292 +#: js/share.js:276 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:313 +#: js/share.js:297 msgid "Unshare" msgstr "" -#: js/share.js:325 +#: js/share.js:309 msgid "can edit" msgstr "" -#: js/share.js:327 +#: js/share.js:311 msgid "access control" msgstr "" -#: js/share.js:330 +#: js/share.js:314 msgid "create" msgstr "" -#: js/share.js:333 +#: js/share.js:317 msgid "update" msgstr "" -#: js/share.js:336 +#: js/share.js:320 msgid "delete" msgstr "" -#: js/share.js:339 +#: js/share.js:323 msgid "share" msgstr "" -#: js/share.js:373 js/share.js:569 +#: js/share.js:357 js/share.js:553 msgid "Password protected" msgstr "" -#: js/share.js:582 +#: js/share.js:566 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:594 +#: js/share.js:578 msgid "Error setting expiration date" msgstr "" -#: js/share.js:609 +#: js/share.js:593 msgid "Sending ..." msgstr "" -#: js/share.js:620 +#: js/share.js:604 msgid "Email sent" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index caa14bb36c..7560185daf 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -74,7 +74,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 9474683d87..0ba2492393 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 46611588b0..ef320179ba 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:423 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:426 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting " "of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index f13a790262..e87e420998 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 894026db9a..e5bcb350ab 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 700851f2ac..739d5d7e3c 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index fc63c0fa4d..8ffe6dd9b4 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-10 00:06+0100\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index bd0d0eef80..7e3614321b 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-10 00:06+0100\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 2c349216ff..e2a201c4d9 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3ba0952c2d..454b5eec27 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" +"POT-Creation-Date: 2013-03-12 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 58c3ddf141..c036303197 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -5,7 +5,7 @@ "Users" => "Uporabniki", "Apps" => "Programi", "Admin" => "Skrbništvo", -"ZIP download is turned off." => "Prejem datotek ZIP je onemogočen.", +"ZIP download is turned off." => "Prejemanje datotek v paketu ZIP je onemogočeno.", "Files need to be downloaded one by one." => "Datoteke je mogoče prejeti le posamično.", "Back to Files" => "Nazaj na datoteke", "Selected files too large to generate zip file." => "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip.", @@ -47,7 +47,7 @@ "%d days ago" => "pred %d dnevi", "last month" => "prejšnji mesec", "%d months ago" => "Pred %d meseci", -"last year" => "lani", +"last year" => "lansko leto", "years ago" => "pred nekaj leti", "%s is available. Get more information" => "%s je na voljo. Več podrobnosti.", "up to date" => "posodobljeno", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 13547c1430..4406a72297 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,5 +1,5 @@ "Ni mogoče naložiti seznama iz App Store", +"Unable to load list from App Store" => "Ni mogoče naložiti seznama iz središča App Store", "Authentication error" => "Napaka overitve", "Unable to change display name" => "Prikazanega imena ni mogoče spremeniti.", "Group already exists" => "Skupina že obstaja", @@ -11,7 +11,7 @@ "Unable to delete user" => "Uporabnika ni mogoče izbrisati", "Language changed" => "Jezik je spremenjen", "Invalid request" => "Neveljavna zahteva", -"Admins can't remove themself from the admin group" => "Skrbniki se ne morejo odstraniti iz skupine admin", +"Admins can't remove themself from the admin group" => "Skrbnikov ni mogoče odstraniti iz skupine skrbnikov (admin)", "Unable to add user to group %s" => "Uporabnika ni mogoče dodati k skupini %s", "Unable to remove user from group %s" => "Uporabnika ni mogoče odstraniti iz skupine %s", "Couldn't update app." => "Programa ni mogoče posodobiti.", @@ -45,8 +45,11 @@ "Locale not working" => "Jezikovne prilagoditve ne delujejo.", "This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Na strežniku ownCloud ni mogoče nastaviti jezikovnih določil na jezik %s. Najverjetneje so težave s posebnimi znaki v imenih datotek. Priporočljivo je namestiti zahtevane pakete za podporo jeziku %s.", "Internet connection not working" => "Internetna povezava ne deluje.", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Strežnik ownCloud je brez delujoče internetne povezave. To pomeni, da bodo nekatere možnosti onemogočene. Ne bo mogoče priklapljati zunanjih priklopnih točk, ne bo obvestil o posodobitvah ali namestitvah programske opreme, prav tako najverjetneje ne bo mogoče pošiljati obvestilnih sporočil preko elektronske pošte. Za uporabo vseh zmožnosti oblaka ownCloud, mora biti internetna povezava vzpostavljena in delujoča.", "Cron" => "Cron", "Execute one task with each page loaded" => "Izvedi eno nalogo z vsako naloženo stranjo.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je vpisana pri storitvi webcron. Preko protokola HTTP je datoteka cron.php, ki se nahaja v korenski mapi ownCloud, klicana enkrat na minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporaba sistemske storitve cron. Preko sistemskega posla cron je datoteka cron.php, ki se nahaja v mapi ownCloud, klicana enkrat na minuto.", "Sharing" => "Souporaba", "Enable Share API" => "Omogoči API souporabe", "Allow apps to use the Share API" => "Dovoli programom uporabo vmesnika API souporabe", @@ -67,7 +70,7 @@ "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Programski paket razvija skupnost ownCloud. Izvorna koda je objavljena pod pogoji AGPL.", "Add your App" => "Dodaj program", "More Apps" => "Več programov", -"Select an App" => "Izberite program", +"Select an App" => "Izbor programa", "See application page at apps.owncloud.com" => "Obiščite spletno stran programa na apps.owncloud.com", "-licensed by " => "-z dovoljenjem ", "Update" => "Posodobi", @@ -81,7 +84,7 @@ "Get the apps to sync your files" => "Pridobi programe za usklajevanje datotek", "Show First Run Wizard again" => "Zaženi čarovnika prvega zagona", "Password" => "Geslo", -"Your password was changed" => "Vaše geslo je spremenjeno", +"Your password was changed" => "Geslo je spremenjeno", "Unable to change your password" => "Gesla ni mogoče spremeniti.", "Current password" => "Trenutno geslo", "New password" => "Novo geslo", @@ -96,7 +99,7 @@ "Language" => "Jezik", "Help translate" => "Sodelujte pri prevajanju", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Ta naslov uporabite za povezavo z oblakom ownCloud iz vašega upravljalnika datotek.", +"Use this address to connect to your ownCloud in your file manager" => "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud.", "Login Name" => "Prijavno ime", "Create" => "Ustvari", "Default Storage" => "Privzeta shramba", From 09003016686eea2ff674136792e09db49a1f925c Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 12 Mar 2013 09:15:53 +0100 Subject: [PATCH 30/61] indexed slug should be created based on logic path --- lib/files/mapper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/mapper.php b/lib/files/mapper.php index 520fadbd8c..c5f1f9888d 100644 --- a/lib/files/mapper.php +++ b/lib/files/mapper.php @@ -149,7 +149,7 @@ class Mapper // detect duplicates while ($this->resolvePhysicalPath($physicalPath) !== null) { - $physicalPath = $this->slugifyPath($physicalPath, $index++); + $physicalPath = $this->slugifyPath($logicPath, $index++); } // insert the new path mapping if requested From 06992fec6d3d014060f8c4f4a5a75bb759d6c86e Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 12 Mar 2013 09:24:58 +0100 Subject: [PATCH 31/61] slug generates uniqid in case the file/folder name contains not one single valid character --- lib/files/mapper.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/files/mapper.php b/lib/files/mapper.php index c5f1f9888d..418ef354f9 100644 --- a/lib/files/mapper.php +++ b/lib/files/mapper.php @@ -219,10 +219,8 @@ class Mapper // remove unwanted characters $text = preg_replace('~[^-\w]+~', '', $text); - if (empty($text)) - { - // TODO: we better generate a guid in this case - return 'n-a'; + if (empty($text)) { + return uniqid(); } return $text; From eedbebd40e1ea887fe1e42472570647e290bb96a Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 12 Mar 2013 09:26:21 +0100 Subject: [PATCH 32/61] adding //IGNORE to iconv to prevent nasty php warnings --- lib/files/mapper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/mapper.php b/lib/files/mapper.php index 418ef354f9..d65726d68d 100644 --- a/lib/files/mapper.php +++ b/lib/files/mapper.php @@ -210,7 +210,7 @@ class Mapper // transliterate if (function_exists('iconv')) { - $text = iconv('utf-8', 'us-ascii//TRANSLIT', $text); + $text = iconv('utf-8', 'us-ascii//TRANSLIT//IGNORE', $text); } // lowercase From 818c24bd4578c151c412939ad47b20d649bd68a5 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 12 Mar 2013 10:33:40 +0100 Subject: [PATCH 33/61] skip archive tests for now --- tests/lib/archive/tar.php | 2 ++ tests/lib/archive/zip.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tests/lib/archive/tar.php b/tests/lib/archive/tar.php index 51de004813..e66a874087 100644 --- a/tests/lib/archive/tar.php +++ b/tests/lib/archive/tar.php @@ -8,6 +8,7 @@ require_once 'archive.php'; +if (!OC_Util::runningOnWindows()) { class Test_Archive_TAR extends Test_Archive { protected function getExisting() { $dir = OC::$SERVERROOT . '/tests/data'; @@ -18,3 +19,4 @@ class Test_Archive_TAR extends Test_Archive { return new OC_Archive_TAR(OCP\Files::tmpFile('.tar.gz')); } } +} diff --git a/tests/lib/archive/zip.php b/tests/lib/archive/zip.php index adddf81ee1..e049a899d8 100644 --- a/tests/lib/archive/zip.php +++ b/tests/lib/archive/zip.php @@ -8,6 +8,7 @@ require_once 'archive.php'; +if (!OC_Util::runningOnWindows()) { class Test_Archive_ZIP extends Test_Archive { protected function getExisting() { $dir = OC::$SERVERROOT . '/tests/data'; @@ -18,3 +19,4 @@ class Test_Archive_ZIP extends Test_Archive { return new OC_Archive_ZIP(OCP\Files::tmpFile('.zip')); } } +} \ No newline at end of file From a05820c6594aa3ea6f2394e8d75117d339f06ed3 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 12 Mar 2013 15:30:10 +0100 Subject: [PATCH 34/61] fixing various filesystem/storage unit tests on windows fixing copy operation on mapper --- lib/files/mapper.php | 8 +++++--- lib/files/storage/mappedlocal.php | 9 ++++++--- tests/lib/files/storage/storage.php | 3 +-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/lib/files/mapper.php b/lib/files/mapper.php index d65726d68d..179e28e5e7 100644 --- a/lib/files/mapper.php +++ b/lib/files/mapper.php @@ -77,7 +77,9 @@ class Mapper $result = $query->execute(array($path1.'%')); $updateQuery = \OC_DB::prepare('UPDATE `*PREFIX*file_map`' .' SET `logic_path` = ?' - .' AND `physic_path` = ?' + .' , `logic_path_hash` = ?' + .' , `physic_path` = ?' + .' , `physic_path_hash` = ?' .' WHERE `logic_path` = ?'); while( $row = $result->fetchRow()) { $currentLogic = $row['logic_path']; @@ -86,7 +88,7 @@ class Mapper $newPhysic = $physicPath2.$this->stripRootFolder($currentPhysic, $physicPath1); if ($path1 !== $currentLogic) { try { - $updateQuery->execute(array($newLogic, $newPhysic, $currentLogic)); + $updateQuery->execute(array($newLogic, md5($newLogic), $newPhysic, md5($newPhysic), $currentLogic)); } catch (\Exception $e) { error_log('Mapper::Copy failed '.$currentLogic.' -> '.$newLogic.'\n'.$e); throw $e; @@ -190,7 +192,7 @@ class Mapper array_push($sluggedElements, $last.'-'.$index); } - $sluggedPath = $this->unchangedPhysicalRoot.implode(DIRECTORY_SEPARATOR, $sluggedElements); + $sluggedPath = $this->unchangedPhysicalRoot.implode('/', $sluggedElements); return $this->stripLast($sluggedPath); } diff --git a/lib/files/storage/mappedlocal.php b/lib/files/storage/mappedlocal.php index 434c10bcbf..ba3fcdc5c9 100644 --- a/lib/files/storage/mappedlocal.php +++ b/lib/files/storage/mappedlocal.php @@ -50,7 +50,7 @@ class MappedLocal extends \OC\Files\Storage\Common{ continue; } - $logicalFilePath = $this->mapper->physicalToLogic($physicalPath.DIRECTORY_SEPARATOR.$file); + $logicalFilePath = $this->mapper->physicalToLogic($physicalPath.'/'.$file); $file= $this->mapper->stripRootFolder($logicalFilePath, $logicalPath); $file = $this->stripLeading($file); @@ -130,7 +130,7 @@ class MappedLocal extends \OC\Files\Storage\Common{ public function file_get_contents($path) { return file_get_contents($this->buildPath($path)); } - public function file_put_contents($path, $data) {//trigger_error("$path = ".var_export($path, 1)); + public function file_put_contents($path, $data) { return file_put_contents($this->buildPath($path), $data); } public function unlink($path) { @@ -280,7 +280,7 @@ class MappedLocal extends \OC\Files\Storage\Common{ foreach (scandir($physicalDir) as $item) { if ($item == '.' || $item == '..') continue; - $physicalItem = $this->mapper->physicalToLogic($physicalDir.DIRECTORY_SEPARATOR.$item); + $physicalItem = $this->mapper->physicalToLogic($physicalDir.'/'.$item); $item = substr($physicalItem, strlen($physicalDir)+1); if(strstr(strtolower($item), strtolower($query)) !== false) { @@ -331,6 +331,9 @@ class MappedLocal extends \OC\Files\Storage\Common{ if(strpos($path, '/') === 0) { $path = substr($path, 1); } + if(strpos($path, '\\') === 0) { + $path = substr($path, 1); + } if ($path === false) { return ''; } diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index f78f66d8b8..3d68efea5f 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -224,8 +224,7 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { } public function testSearchInSubFolder() { - $this->instance->mkdir('sub') - ; + $this->instance->mkdir('sub'); $textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; $this->instance->file_put_contents('/sub/lorem.txt', file_get_contents($textFile, 'r')); $pngFile = \OC::$SERVERROOT . '/tests/data/logo-wide.png'; From 9d4d399aa3296c40daed863a7ed31601c1c724c3 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 12 Mar 2013 15:32:28 +0100 Subject: [PATCH 35/61] write error message to log file in case insert to file cache failed - took hours to find that the insert failed :-( --- lib/files/cache/cache.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index f288919df7..1ff66f11f1 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -203,7 +203,10 @@ class Cache { $query = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache`(' . implode(', ', $queryParts) . ')' . ' VALUES(' . implode(', ', $valuesPlaceholder) . ')'); - $query->execute($params); + $result = $query->execute($params); + if (\MDB2::isError($result)) { + \OCP\Util::writeLog('cache', 'Insert to cache failed: '.$result, \OCP\Util::ERROR); + } return (int)\OC_DB::insertid('*PREFIX*filecache'); } From ec1685311258935548512be3698b59512b084de5 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 12 Mar 2013 15:33:37 +0100 Subject: [PATCH 36/61] enable UTF-8 charset on mssql disable MDB2_PORTABILITY_EMPTY_TO_NULL for mssql to allow insert of empty string to no null fields --- lib/db.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/db.php b/lib/db.php index 347deac851..9699b216f6 100644 --- a/lib/db.php +++ b/lib/db.php @@ -292,8 +292,10 @@ class OC_DB { 'username' => $user, 'password' => $pass, 'hostspec' => $host, - 'database' => $name - ); + 'database' => $name, + 'charset' => 'UTF-8' + ); + $options['portability'] = $options['portability'] - MDB2_PORTABILITY_EMPTY_TO_NULL; break; default: return false; From b2da2f769a896af5a139e6ce426e835b6c60aca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 12 Mar 2013 17:28:36 +0100 Subject: [PATCH 37/61] don't add share action to the Shared folder --- apps/files/js/fileactions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 38f5bab6f7..3c4fa08bf1 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -112,7 +112,7 @@ var FileActions = { addAction(name, action); } }); - if(actions.Share){ + if(actions.Share && file !== 'Shared'){ addAction('Share', actions.Share); } From 17fd6482d873c170278aafeceb9005415f272901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20T=C3=A9tard?= Date: Tue, 12 Mar 2013 11:53:41 +0100 Subject: [PATCH 38/61] Fix file sharing via public link for one particular file. Fix OC_Files::get() to not return the first character of the filename if only one file is requested. --- lib/files.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files.php b/lib/files.php index 2433502444..04ba51d9d2 100644 --- a/lib/files.php +++ b/lib/files.php @@ -50,7 +50,7 @@ class OC_Files { $xsendfile = true; } - if (count($files) == 1) { + if (is_array($files) && count($files) == 1) { $files = $files[0]; } From f3a2daaa9d4fd574236b9168cdd6b0598d8578ce Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 13 Mar 2013 00:06:21 +0100 Subject: [PATCH 39/61] [tx-robot] updated from transifex --- apps/files/l10n/fr.php | 1 + apps/files_encryption/l10n/sl.php | 2 +- apps/files_external/l10n/fr.php | 2 + apps/files_versions/l10n/fr.php | 1 + apps/files_versions/l10n/sl.php | 2 +- apps/user_ldap/l10n/fr.php | 6 ++ apps/user_ldap/l10n/sl.php | 2 +- l10n/fr/files.po | 49 +++++----- l10n/fr/files_external.po | 15 ++-- l10n/fr/files_versions.po | 13 +-- l10n/fr/user_ldap.po | 135 ++++++++++++++-------------- l10n/sl/files_encryption.po | 6 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_versions.po | 6 +- l10n/sl/user_ldap.po | 6 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 26 files changed, 143 insertions(+), 129 deletions(-) diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 9849184441..5e53f5ab02 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -61,6 +61,7 @@ "From link" => "Depuis le lien", "Deleted files" => "Fichiers supprimés", "Cancel upload" => "Annuler l'envoi", +"You don’t have write permissions here." => "Vous n'avez pas le droit d'écriture ici.", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", "Download" => "Télécharger", "Unshare" => "Ne plus partager", diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index 39a5a0d40f..4754e21214 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -2,6 +2,6 @@ "Encryption" => "Šifriranje", "File encryption is enabled." => "Šifriranje datotek je omogočeno.", "The following file types will not be encrypted:" => "Navedene vrste datotek ne bodo šifrirane:", -"Exclude the following file types from encryption:" => "Izloči navedene vrste datotek med šifriranjem:", +"Exclude the following file types from encryption:" => "Ne šifriraj navedenih vrst datotek:", "None" => "Brez" ); diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index db4140b483..c42c89f857 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -8,9 +8,11 @@ "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer.", "External Storage" => "Stockage externe", "Folder name" => "Nom du dossier", +"External storage" => "Stockage externe", "Configuration" => "Configuration", "Options" => "Options", "Applicable" => "Disponible", +"Add storage" => "Ajouter un support de stockage", "None set" => "Aucun spécifié", "All Users" => "Tous les utilisateurs", "Groups" => "Groupes", diff --git a/apps/files_versions/l10n/fr.php b/apps/files_versions/l10n/fr.php index 76ad8fc97a..e2698c5c4a 100644 --- a/apps/files_versions/l10n/fr.php +++ b/apps/files_versions/l10n/fr.php @@ -6,5 +6,6 @@ "File %s could not be reverted to version %s" => "Le fichier %s ne peut être restauré dans sa version %s", "No old versions available" => "Aucune ancienne version n'est disponible", "No path specified" => "Aucun chemin spécifié", +"Versions" => "Versions", "Revert a file to a previous version by clicking on its revert button" => "Restaurez un fichier dans une version antérieure en cliquant sur son bouton de restauration" ); diff --git a/apps/files_versions/l10n/sl.php b/apps/files_versions/l10n/sl.php index d6dfbee6aa..2df00fc826 100644 --- a/apps/files_versions/l10n/sl.php +++ b/apps/files_versions/l10n/sl.php @@ -3,7 +3,7 @@ "success" => "uspešno", "File %s was reverted to version %s" => "Datoteka %s je povrnjena na različico %s.", "failure" => "spodletelo", -"File %s could not be reverted to version %s" => "Datoteka %s ni mogoče povrniti na različico %s.", +"File %s could not be reverted to version %s" => "Datoteke %s ni mogoče povrniti na različico %s.", "No old versions available" => "Ni starejših različic.", "No path specified" => "Ni določene poti", "Versions" => "Različice", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index abe1363569..990658e147 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "Désactiver la validation du certificat SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur ownCloud.", "Not recommended, use for testing only." => "Non recommandé, utilisation pour tests uniquement.", +"Cache Time-To-Live" => "Durée de vie du cache", "in seconds. A change empties the cache." => "en secondes. Tout changement vide le cache.", "Directory Settings" => "Paramètres du répertoire", "User Display Name Field" => "Champ \"nom d'affichage\" de l'utilisateur", @@ -63,7 +64,12 @@ "Group Search Attributes" => "Recherche des attributs du groupe", "Group-Member association" => "Association groupe-membre", "Special Attributes" => "Attributs spéciaux", +"Quota Field" => "Champ du quota", +"Quota Default" => "Quota par défaut", "in bytes" => "en octets", +"Email Field" => "Champ Email", +"User Home Folder Naming Rule" => "Convention de nommage du répertoire utilisateur", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Laisser vide ", +"Test Configuration" => "Tester la configuration", "Help" => "Aide" ); diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index 22ed5dc2f7..8ff1fd5344 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -41,7 +41,7 @@ "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Podati je treba izbirno varnostno kopijo gostitelja. Ta mora biti natančna replika strežnika LDAP/AD.", "Backup (Replica) Port" => "Varnostna kopija (replika) podatka vrat", "Disable Main Server" => "Onemogoči glavni strežnik", -"When switched on, ownCloud will only connect to the replica server." => "Ob priklopu bo strežnik ownCloud povezan le z kopijo (repliko) strežnika.", +"When switched on, ownCloud will only connect to the replica server." => "Ob priklopu bo strežnik ownCloud povezan le s kopijo (repliko) strežnika.", "Use TLS" => "Uporabi TLS", "Do not use it additionally for LDAPS connections, it will fail." => "Strežnika ni priporočljivo uporabljati za povezave LDAPS. Povezava bo spodletela.", "Case insensitve LDAP server (Windows)" => "Strežnik LDAP ne upošteva velikosti črk (Windows)", diff --git a/l10n/fr/files.po b/l10n/fr/files.po index f7ba7a0308..64ca95eab0 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -18,13 +18,14 @@ # Robert Di Rosa <>, 2012-2013. # , 2011. # Romain DEP. , 2012-2013. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"PO-Revision-Date: 2013-03-12 19:10+0000\n" +"Last-Translator: Zertrin \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" @@ -89,7 +90,7 @@ msgstr "Plus assez d'espace de stockage disponible" msgid "Invalid directory." msgstr "Dossier invalide." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Fichiers" @@ -105,8 +106,8 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "En cours" @@ -160,74 +161,74 @@ msgstr "Votre espage de stockage est plein, les fichiers ne peuvent plus être t msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Votre espace de stockage est presque plein ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet." -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Fermer" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 fichier en cours de téléchargement" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} fichiers téléversés" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "L'URL ne peut-être vide" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nom" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Taille" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modifié" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 fichier" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} fichiers" @@ -293,7 +294,7 @@ msgstr "Annuler l'envoi" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Vous n'avez pas le droit d'écriture ici." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index fd92856f84..6a690785e2 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -5,13 +5,14 @@ # Translators: # , 2012. # Romain DEP. , 2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"PO-Revision-Date: 2013-03-12 19:21+0000\n" +"Last-Translator: Zertrin \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" @@ -39,13 +40,13 @@ msgstr "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de pas msgid "Error configuring Google Drive storage" msgstr "Erreur lors de la configuration du support de stockage Google Drive" -#: lib/config.php:421 +#: lib/config.php:423 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:424 +#: lib/config.php:426 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " @@ -62,7 +63,7 @@ msgstr "Nom du dossier" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Stockage externe" #: templates/settings.php:11 msgid "Configuration" @@ -78,7 +79,7 @@ msgstr "Disponible" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Ajouter un support de stockage" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index 7b7b6fa9a6..abef94b52e 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -4,13 +4,14 @@ # # Translators: # Romain DEP. , 2012-2013. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"PO-Revision-Date: 2013-03-12 19:21+0000\n" +"Last-Translator: Zertrin \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" @@ -41,17 +42,17 @@ msgstr "échec" msgid "File %s could not be reverted to version %s" msgstr "Le fichier %s ne peut être restauré dans sa version %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Aucune ancienne version n'est disponible" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Aucun chemin spécifié" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versions" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 177014bd97..2e8c1298c1 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -9,14 +9,15 @@ # Romain DEP. , 2012-2013. # , 2013. # , 2012. +# , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"PO-Revision-Date: 2013-03-12 19:21+0000\n" +"Last-Translator: Zertrin \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" @@ -93,248 +94,248 @@ msgstr "Attention : Le module php LDAP n'est pas installé, par conséque msgid "Server configuration" msgstr "Configuration du serveur" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "Ajouter une configuration du serveur" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "Hôte" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "DN Racine" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "Un DN racine par ligne" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Vous pouvez spécifier les DN Racines de vos utilisateurs et groupes via l'onglet Avancé" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "DN Utilisateur (Autorisé à consulter l'annuaire)" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN de l'utilisateur client pour lequel la liaison doit se faire, par exemple uid=agent,dc=example,dc=com. Pour un accès anonyme, laisser le DN et le mot de passe vides." -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Mot de passe" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "Pour un accès anonyme, laisser le DN Utilisateur et le mot de passe vides." -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "Modèle d'authentification utilisateurs" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "Définit le motif à appliquer, lors d'une tentative de connexion. %%uid est remplacé par le nom d'utilisateur lors de la connexion." -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "veuillez utiliser le champ %%uid , ex.: \"uid=%%uid\"" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "Filtre d'utilisateurs" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "Définit le filtre à appliquer lors de la récupération des utilisateurs." -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "sans élément de substitution, par exemple \"objectClass=person\"." -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "Filtre de groupes" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "Définit le filtre à appliquer lors de la récupération des groupes." -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "sans élément de substitution, par exemple \"objectClass=posixGroup\"." -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "Paramètres de connexion" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "Configuration active" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "Lorsque non cochée, la configuration sera ignorée." -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "Port" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "Serveur de backup (réplique)" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Fournir un serveur de backup optionnel. Il doit s'agir d'une réplique du serveur LDAP/AD principal." -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "Port du serveur de backup (réplique)" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "Désactiver le serveur principal" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "Lorsqu'activé, ownCloud ne se connectera qu'au serveur répliqué." -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "Utiliser TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "À ne pas utiliser pour les connexions LDAPS (cela échouera)." -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "Serveur LDAP insensible à la casse (Windows)" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "Désactiver la validation du certificat SSL." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur ownCloud." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "Non recommandé, utilisation pour tests uniquement." -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Durée de vie du cache" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "en secondes. Tout changement vide le cache." -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "Paramètres du répertoire" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "Champ \"nom d'affichage\" de l'utilisateur" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "L'attribut LDAP utilisé pour générer les noms d'utilisateurs d'ownCloud." -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "DN racine de l'arbre utilisateurs" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "Un DN racine utilisateur par ligne" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "Recherche des attributs utilisateur" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "Optionnel, un attribut par ligne" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "Champ \"nom d'affichage\" du groupe" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "L'attribut LDAP utilisé pour générer les noms de groupes d'ownCloud." -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "DN racine de l'arbre groupes" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "Un DN racine groupe par ligne" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "Recherche des attributs du groupe" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "Association groupe-membre" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "Attributs spéciaux" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "Champ du quota" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "Quota par défaut" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "en octets" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "Champ Email" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Convention de nommage du répertoire utilisateur" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Laisser vide " -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "Tester la configuration" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Aide" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index f35ef4641d..05ce9505eb 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-08 21:52+0000\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"PO-Revision-Date: 2013-03-12 14:30+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "Navedene vrste datotek ne bodo šifrirane:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Izloči navedene vrste datotek med šifriranjem:" +msgstr "Ne šifriraj navedenih vrst datotek:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index ea4e088032..2080303af5 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" -"PO-Revision-Date: 2013-03-11 19:52+0000\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"PO-Revision-Date: 2013-03-12 14:21+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index a5026ce9b2..5810bb0297 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-08 21:30+0000\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"PO-Revision-Date: 2013-03-12 14:30+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,7 @@ msgstr "spodletelo" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Datoteka %s ni mogoče povrniti na različico %s." +msgstr "Datoteke %s ni mogoče povrniti na različico %s." #: history.php:69 msgid "No old versions available" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 680f05c14e..6811f4f026 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" -"PO-Revision-Date: 2013-03-11 18:30+0000\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"PO-Revision-Date: 2013-03-12 14:30+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -209,7 +209,7 @@ msgstr "Onemogoči glavni strežnik" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Ob priklopu bo strežnik ownCloud povezan le z kopijo (repliko) strežnika." +msgstr "Ob priklopu bo strežnik ownCloud povezan le s kopijo (repliko) strežnika." #: templates/settings.php:75 msgid "Use TLS" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 2b0f3f96e5..116f08d4c3 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 7560185daf..470be4fdce 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 0ba2492393..85d29c0f1e 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index ef320179ba..9ca37d1d3b 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index e87e420998..1d0eeda3a1 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index e5bcb350ab..674fec9fe9 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 739d5d7e3c..5b2c883954 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 8ffe6dd9b4..861476a62f 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 7e3614321b..7cd50aea3f 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index e2a201c4d9..545a7706a9 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 454b5eec27..505c651b97 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" +"POT-Creation-Date: 2013-03-13 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From e5f40ddaae1004835600f3b5a44bc1bdaea59d63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 13 Mar 2013 11:33:20 +0100 Subject: [PATCH 40/61] only prevent shared action for the Shared folder in the root dir --- apps/files/js/fileactions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 3c4fa08bf1..f3264da5a1 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -112,7 +112,7 @@ var FileActions = { addAction(name, action); } }); - if(actions.Share && file !== 'Shared'){ + if(actions.Share && !($('#dir').val() === '/' && file === 'Shared')){ addAction('Share', actions.Share); } From 30831b6b554fbc99f422d5d490f6a325a6296f3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 13 Mar 2013 15:39:39 +0100 Subject: [PATCH 41/61] we need to listen to the pre delete hook, otherwise the file is already gone --- apps/files_sharing/appinfo/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index 5711669815..9363a5431f 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -12,7 +12,7 @@ OCP\Share::registerBackend('file', 'OC_Share_Backend_File'); OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file'); OCP\Util::addScript('files_sharing', 'share'); \OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Shared_Updater', 'writeHook'); -\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Shared_Updater', 'deleteHook'); +\OC_Hook::connect('OC_Filesystem', 'delete', '\OC\Files\Cache\Shared_Updater', 'deleteHook'); \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Shared_Updater', 'renameHook'); \OC_Hook::connect('OCP\Share', 'post_shared', '\OC\Files\Cache\Shared_Updater', 'shareHook'); \OC_Hook::connect('OCP\Share', 'pre_unshare', '\OC\Files\Cache\Shared_Updater', 'shareHook'); \ No newline at end of file From 9a0cb2ccaa92731a14e079a024bb38c934130d78 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 14 Mar 2013 00:06:29 +0100 Subject: [PATCH 42/61] [tx-robot] updated from transifex --- apps/files/l10n/es_AR.php | 1 + apps/files/l10n/zh_HK.php | 8 + apps/files_external/l10n/zh_HK.php | 5 + apps/files_sharing/l10n/zh_HK.php | 4 + apps/files_trashbin/l10n/zh_HK.php | 3 + apps/user_ldap/l10n/es_AR.php | 6 + apps/user_ldap/l10n/zh_HK.php | 4 + core/l10n/fa.php | 3 + core/l10n/zh_HK.php | 89 ++++++- l10n/es_AR/files.po | 48 ++-- l10n/es_AR/user_ldap.po | 134 +++++----- l10n/fa/core.po | 106 ++++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/zh_HK/core.po | 392 ++++++++++++++-------------- l10n/zh_HK/files.po | 56 ++-- l10n/zh_HK/files_external.po | 14 +- l10n/zh_HK/files_sharing.po | 16 +- l10n/zh_HK/files_trashbin.po | 6 +- l10n/zh_HK/lib.po | 34 +-- l10n/zh_HK/settings.po | 16 +- l10n/zh_HK/user_ldap.po | 124 ++++----- lib/l10n/zh_HK.php | 13 + settings/l10n/zh_HK.php | 8 + 33 files changed, 628 insertions(+), 484 deletions(-) create mode 100644 apps/files/l10n/zh_HK.php create mode 100644 apps/files_external/l10n/zh_HK.php create mode 100644 apps/files_sharing/l10n/zh_HK.php create mode 100644 apps/files_trashbin/l10n/zh_HK.php create mode 100644 apps/user_ldap/l10n/zh_HK.php create mode 100644 lib/l10n/zh_HK.php create mode 100644 settings/l10n/zh_HK.php diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index f16385a652..6cd7c02692 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -61,6 +61,7 @@ "From link" => "Desde enlace", "Deleted files" => "Archivos Borrados", "Cancel upload" => "Cancelar subida", +"You don’t have write permissions here." => "No tenés permisos de escritura acá.", "Nothing in here. Upload something!" => "No hay nada. ¡Subí contenido!", "Download" => "Descargar", "Unshare" => "Dejar de compartir", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php new file mode 100644 index 0000000000..76acf22cd5 --- /dev/null +++ b/apps/files/l10n/zh_HK.php @@ -0,0 +1,8 @@ + "文件", +"Delete" => "刪除", +"Upload" => "上傳", +"Save" => "儲存", +"Download" => "下載", +"Unshare" => "取消分享" +); diff --git a/apps/files_external/l10n/zh_HK.php b/apps/files_external/l10n/zh_HK.php new file mode 100644 index 0000000000..a85b5a03b8 --- /dev/null +++ b/apps/files_external/l10n/zh_HK.php @@ -0,0 +1,5 @@ + "群組", +"Users" => "用戶", +"Delete" => "刪除" +); diff --git a/apps/files_sharing/l10n/zh_HK.php b/apps/files_sharing/l10n/zh_HK.php new file mode 100644 index 0000000000..7ef0f19ca4 --- /dev/null +++ b/apps/files_sharing/l10n/zh_HK.php @@ -0,0 +1,4 @@ + "密碼", +"Download" => "下載" +); diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php new file mode 100644 index 0000000000..8dbddf43e3 --- /dev/null +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -0,0 +1,3 @@ + "刪除" +); diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index b0e7ec12b2..c8aec0cd41 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "Desactivar la validación por certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor ownCloud.", "Not recommended, use for testing only." => "No recomendado, sólo para pruebas.", +"Cache Time-To-Live" => "Tiempo de vida del caché", "in seconds. A change empties the cache." => "en segundos. Cambiarlo vacía la cache.", "Directory Settings" => "Configuración de Directorio", "User Display Name Field" => "Campo de nombre de usuario a mostrar", @@ -63,7 +64,12 @@ "Group Search Attributes" => "Atributos de búsqueda de grupo", "Group-Member association" => "Asociación Grupo-Miembro", "Special Attributes" => "Atributos Especiales", +"Quota Field" => "Campo de cuota", +"Quota Default" => "Cuota por defecto", "in bytes" => "en bytes", +"Email Field" => "Campo de e-mail", +"User Home Folder Naming Rule" => "Regla de nombre de los directorios de usuario", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD.", +"Test Configuration" => "Probar configuración", "Help" => "Ayuda" ); diff --git a/apps/user_ldap/l10n/zh_HK.php b/apps/user_ldap/l10n/zh_HK.php new file mode 100644 index 0000000000..4dec54822a --- /dev/null +++ b/apps/user_ldap/l10n/zh_HK.php @@ -0,0 +1,4 @@ + "密碼", +"Help" => "幫助" +); diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 2420ee67df..9cd3a5e978 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -109,6 +109,8 @@ "Security Warning" => "اخطار امنیتی", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "هیچ مولد تصادفی امن در دسترس نیست، لطفا فرمت PHP OpenSSL را فعال نمایید.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "بدون وجود یک تولید کننده اعداد تصادفی امن ، یک مهاجم ممکن است این قابلیت را داشته باشد که پیشگویی کند پسوورد های راه انداز گرفته شده و کنترلی روی حساب کاربری شما داشته باشد .", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "فایلها و فهرست های داده های شما قابل از اینترنت قابل دسترسی هستند، چونکه فایل htacces. کار نمی کند.", +"For information how to properly configure your server, please see the documentation." => "برای مطلع شدن از چگونگی تنظیم سرورتان،لطفا این را ببینید.", "Create an admin account" => "لطفا یک شناسه برای مدیر بسازید", "Advanced" => "حرفه ای", "Data folder" => "پوشه اطلاعاتی", @@ -128,6 +130,7 @@ "Lost your password?" => "آیا گذرواژه تان را به یاد نمی آورید؟", "remember" => "بیاد آوری", "Log in" => "ورود", +"Alternative Logins" => "ورود متناوب", "prev" => "بازگشت", "next" => "بعدی", "Updating ownCloud to version %s, this may take a while." => "به روز رسانی OwnCloud به نسخه ی %s، این عملیات ممکن است زمان بر باشد." diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index f55da4d3ef..d02b7be660 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -1,3 +1,90 @@ "你已登出。" +"Sunday" => "星期日", +"Monday" => "星期一", +"Tuesday" => "星期二", +"Wednesday" => "星期三", +"Thursday" => "星期四", +"Friday" => "星期五", +"Saturday" => "星期六", +"January" => "一月", +"February" => "二月", +"March" => "三月", +"April" => "四月", +"May" => "五月", +"June" => "六月", +"July" => "七月", +"August" => "八月", +"September" => "九月", +"October" => "十月", +"November" => "十一月", +"December" => "十二月", +"Settings" => "設定", +"today" => "今日", +"yesterday" => "昨日", +"last month" => "前一月", +"months ago" => "個月之前", +"Cancel" => "取消", +"No" => "No", +"Yes" => "Yes", +"Ok" => "OK", +"Error" => "錯誤", +"Shared" => "已分享", +"Share" => "分享", +"Error while sharing" => "分享時發生錯誤", +"Error while unsharing" => "取消分享時發生錯誤", +"Error while changing permissions" => "更改權限時發生錯誤", +"Shared with you and the group {group} by {owner}" => "{owner}與你及群組的分享", +"Shared with you by {owner}" => "{owner}與你的分享", +"Share with" => "分享", +"Share with link" => "以連結分享", +"Password protect" => "密碼保護", +"Password" => "密碼", +"Send" => "傳送", +"Set expiration date" => "設定分享期限", +"Expiration date" => "分享期限", +"Share via email:" => "以電郵分享", +"No people found" => "找不到", +"Unshare" => "取消分享", +"create" => "新增", +"update" => "更新", +"delete" => "刪除", +"share" => "分享", +"Password protected" => "密碼保護", +"Sending ..." => "傳送中", +"Email sent" => "郵件已傳", +"The update was successful. Redirecting you to ownCloud now." => "更新成功, 正", +"Use the following link to reset your password: {link}" => "請用以下連結重設你的密碼: {link}", +"You will receive a link to reset your password via Email." => "你將收到一封電郵", +"Reset email send." => "重設密碼郵件已傳", +"Request failed!" => "請求失敗", +"Username" => "用戶名稱", +"Request reset" => "重設", +"Your password was reset" => "你的密碼已被重設", +"To login page" => "前往登入版面", +"New password" => "新密碼", +"Reset password" => "重設密碼", +"Personal" => "個人", +"Users" => "用戶", +"Apps" => "軟件", +"Admin" => "管理", +"Help" => "幫助", +"Cloud not found" => "未找到Cloud", +"Add" => "加入", +"Create an admin account" => "建立管理員帳戶", +"Advanced" => "進階", +"Configure the database" => "設定資料庫", +"will be used" => "將被使用", +"Database user" => "資料庫帳戶", +"Database password" => "資料庫密碼", +"Database name" => "資料庫名稱", +"Log out" => "登出", +"Automatic logon rejected!" => "自動登入被拒", +"If you did not change your password recently, your account may be compromised!" => "如果你近期未曾更改密碼, 你的帳號可能被洩露!", +"Please change your password to secure your account again." => "請更改你的密碼以保護你的帳戶", +"Lost your password?" => "忘記密碼", +"remember" => "記住", +"Log in" => "登入", +"prev" => "前一步", +"next" => "下一步", +"Updating ownCloud to version %s, this may take a while." => "ownCloud (ver. %s)更新中, 請耐心等侯" ); diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 4e357c0092..1f3877df3c 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"PO-Revision-Date: 2013-03-13 09:50+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -78,7 +78,7 @@ msgstr "No hay suficiente capacidad de almacenamiento" msgid "Invalid directory." msgstr "Directorio invalido." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Archivos" @@ -94,8 +94,8 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Pendiente" @@ -149,74 +149,74 @@ msgstr "El almacenamiento está lleno, los archivos no se pueden seguir actualiz msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Cerrar" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nombre" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 archivo" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} archivos" @@ -282,7 +282,7 @@ msgstr "Cancelar subida" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "No tenés permisos de escritura acá." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 6f51b5e950..e73aafc61c 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"PO-Revision-Date: 2013-03-13 10:01+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,248 +89,248 @@ msgstr "Atención: El módulo PHP LDAP no está instalado, este elemento msgid "Server configuration" msgstr "Configuración del Servidor" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "Añadir Configuración del Servidor" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "Servidor" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "DN base" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "Una DN base por línea" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "DN usuario" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, dejá DN y contraseña vacíos." -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Contraseña" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acceso anónimo, dejá DN y contraseña vacíos." -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "Filtro de inicio de sesión de usuario" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazará el nombre de usuario en el proceso de inicio de sesión." -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "usar %%uid como plantilla, p. ej.: \"uid=%%uid\"" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "Lista de filtros de usuario" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "Define el filtro a aplicar, cuando se obtienen usuarios." -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "Sin plantilla, p. ej.: \"objectClass=person\"." -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "Filtro de grupo" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "Define el filtro a aplicar cuando se obtienen grupos." -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\"." -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "Configuración de Conección" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "Configuración activa" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "Si no está seleccionada, esta configuración será omitida." -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "Puerto" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "Host para copia de seguridad (réplica)" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Dar un servidor de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP/AD." -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "Puerto para copia de seguridad (réplica)" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "Deshabilitar el Servidor Principal" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "Al comenzar, ownCloud se conectará únicamente al servidor réplica" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "Usar TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "No usar adicionalmente para conexiones LDAPS, las mismas fallarán" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "Desactivar la validación por certificado SSL." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "Si la conexión sólo funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor ownCloud." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "No recomendado, sólo para pruebas." -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Tiempo de vida del caché" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "en segundos. Cambiarlo vacía la cache." -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "Configuración de Directorio" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "Campo de nombre de usuario a mostrar" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud." -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "Árbol base de usuario" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "Una DN base de usuario por línea" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "Atributos de la búsqueda de usuario" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "Opcional; un atributo por linea" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "Campo de nombre de grupo a mostrar" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud." -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "Árbol base de grupo" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "Una DN base de grupo por línea" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "Atributos de búsqueda de grupo" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "Asociación Grupo-Miembro" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "Atributos Especiales" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "Campo de cuota" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "Cuota por defecto" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "Campo de e-mail" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Regla de nombre de los directorios de usuario" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD." -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "Probar configuración" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Ayuda" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index e800192efd..7f82989ac3 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 00:08+0100\n" -"PO-Revision-Date: 2013-02-26 07:50+0000\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"PO-Revision-Date: 2013-03-13 06:00+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "دسامبر" msgid "Settings" msgstr "تنظیمات" -#: js/js.js:768 +#: js/js.js:777 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:769 +#: js/js.js:778 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:770 +#: js/js.js:779 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:771 +#: js/js.js:780 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:772 +#: js/js.js:781 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:773 +#: js/js.js:782 msgid "today" msgstr "امروز" -#: js/js.js:774 +#: js/js.js:783 msgid "yesterday" msgstr "دیروز" -#: js/js.js:775 +#: js/js.js:784 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:776 +#: js/js.js:785 msgid "last month" msgstr "ماه قبل" -#: js/js.js:777 +#: js/js.js:786 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:778 +#: js/js.js:787 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:779 +#: js/js.js:788 msgid "last year" msgstr "سال قبل" -#: js/js.js:780 +#: js/js.js:789 msgid "years ago" msgstr "سال‌های قبل" @@ -240,8 +240,8 @@ msgid "The object type is not specified." msgstr "نوع شی تعیین نشده است." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:582 -#: js/share.js:594 +#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 +#: js/share.js:578 msgid "Error" msgstr "خطا" @@ -253,127 +253,127 @@ msgstr "نام برنامه تعیین نشده است." msgid "The required file {file} is not installed!" msgstr "پرونده { پرونده} درخواست شده نصب نشده است !" -#: js/share.js:29 js/share.js:43 js/share.js:90 +#: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "اشتراک گذاشته شده" -#: js/share.js:93 +#: js/share.js:90 msgid "Share" msgstr "اشتراک‌گزاری" -#: js/share.js:141 js/share.js:622 +#: js/share.js:125 js/share.js:606 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" -#: js/share.js:152 +#: js/share.js:136 msgid "Error while unsharing" msgstr "خطا درحال لغو اشتراک" -#: js/share.js:159 +#: js/share.js:143 msgid "Error while changing permissions" msgstr "خطا در حال تغییر مجوز" -#: js/share.js:168 +#: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" msgstr "به اشتراک گذاشته شده با شما و گروه {گروه} توسط {دارنده}" -#: js/share.js:170 +#: js/share.js:154 msgid "Shared with you by {owner}" msgstr "به اشتراک گذاشته شده با شما توسط { دارنده}" -#: js/share.js:175 +#: js/share.js:159 msgid "Share with" msgstr "به اشتراک گذاشتن با" -#: js/share.js:180 +#: js/share.js:164 msgid "Share with link" msgstr "به اشتراک گذاشتن با پیوند" -#: js/share.js:183 +#: js/share.js:167 msgid "Password protect" msgstr "نگهداری کردن رمز عبور" -#: js/share.js:185 templates/installation.php:47 templates/login.php:35 +#: js/share.js:169 templates/installation.php:47 templates/login.php:35 msgid "Password" msgstr "گذرواژه" -#: js/share.js:189 +#: js/share.js:173 msgid "Email link to person" msgstr "پیوند ایمیل برای شخص." -#: js/share.js:190 +#: js/share.js:174 msgid "Send" msgstr "ارسال" -#: js/share.js:194 +#: js/share.js:178 msgid "Set expiration date" msgstr "تنظیم تاریخ انقضا" -#: js/share.js:195 +#: js/share.js:179 msgid "Expiration date" msgstr "تاریخ انقضا" -#: js/share.js:227 +#: js/share.js:211 msgid "Share via email:" msgstr "از طریق ایمیل به اشتراک بگذارید :" -#: js/share.js:229 +#: js/share.js:213 msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:256 +#: js/share.js:240 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:292 +#: js/share.js:276 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:313 +#: js/share.js:297 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:325 +#: js/share.js:309 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:327 +#: js/share.js:311 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:330 +#: js/share.js:314 msgid "create" msgstr "ایجاد" -#: js/share.js:333 +#: js/share.js:317 msgid "update" msgstr "به روز" -#: js/share.js:336 +#: js/share.js:320 msgid "delete" msgstr "پاک کردن" -#: js/share.js:339 +#: js/share.js:323 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:373 js/share.js:569 +#: js/share.js:357 js/share.js:553 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:582 +#: js/share.js:566 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:594 +#: js/share.js:578 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:609 +#: js/share.js:593 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:620 +#: js/share.js:604 msgid "Email sent" msgstr "ایمیل ارسال شد" @@ -489,14 +489,14 @@ msgstr "بدون وجود یک تولید کننده اعداد تصادفی ا msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "فایلها و فهرست های داده های شما قابل از اینترنت قابل دسترسی هستند، چونکه فایل htacces. کار نمی کند." #: templates/installation.php:33 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "برای مطلع شدن از چگونگی تنظیم سرورتان،لطفا این را ببینید." #: templates/installation.php:37 msgid "Create an admin account" @@ -544,11 +544,11 @@ msgstr "هاست پایگاه داده" msgid "Finish setup" msgstr "اتمام نصب" -#: templates/layout.guest.php:35 +#: templates/layout.guest.php:40 msgid "web services under your control" msgstr "سرویس وب تحت کنترل شما" -#: templates/layout.user.php:53 +#: templates/layout.user.php:58 msgid "Log out" msgstr "خروج" @@ -580,7 +580,7 @@ msgstr "ورود" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "ورود متناوب" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 116f08d4c3..848cdf3bb8 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 470be4fdce..6357d63f29 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 85d29c0f1e..eec3e2d2a2 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 9ca37d1d3b..8037953766 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 1d0eeda3a1..5dd32d279f 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 674fec9fe9..999ae0525d 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 5b2c883954..1e50b9107f 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 861476a62f..7747d939c9 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 7cd50aea3f..7fc8346e6c 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 545a7706a9..ff8327d92e 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 505c651b97..646eca0dcf 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 65b41b0aee..407c8e9b18 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Dennis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-09 00:12+0100\n" -"PO-Revision-Date: 2013-02-08 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"PO-Revision-Date: 2013-03-13 06:10+0000\n" +"Last-Translator: dtsang29 \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,24 +19,24 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:85 +#: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" msgstr "" -#: ajax/share.php:87 +#: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" msgstr "" -#: ajax/share.php:89 +#: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" msgstr "" -#: ajax/share.php:91 +#: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " @@ -81,135 +82,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:32 +#: js/config.php:34 msgid "Sunday" -msgstr "" +msgstr "星期日" -#: js/config.php:32 +#: js/config.php:35 msgid "Monday" -msgstr "" +msgstr "星期一" -#: js/config.php:32 +#: js/config.php:36 msgid "Tuesday" -msgstr "" +msgstr "星期二" -#: js/config.php:32 +#: js/config.php:37 msgid "Wednesday" -msgstr "" +msgstr "星期三" -#: js/config.php:32 +#: js/config.php:38 msgid "Thursday" -msgstr "" +msgstr "星期四" -#: js/config.php:32 +#: js/config.php:39 msgid "Friday" -msgstr "" +msgstr "星期五" -#: js/config.php:32 +#: js/config.php:40 msgid "Saturday" -msgstr "" +msgstr "星期六" -#: js/config.php:33 +#: js/config.php:45 msgid "January" -msgstr "" +msgstr "一月" -#: js/config.php:33 +#: js/config.php:46 msgid "February" -msgstr "" +msgstr "二月" -#: js/config.php:33 +#: js/config.php:47 msgid "March" -msgstr "" +msgstr "三月" -#: js/config.php:33 +#: js/config.php:48 msgid "April" -msgstr "" +msgstr "四月" -#: js/config.php:33 +#: js/config.php:49 msgid "May" -msgstr "" +msgstr "五月" -#: js/config.php:33 +#: js/config.php:50 msgid "June" -msgstr "" +msgstr "六月" -#: js/config.php:33 +#: js/config.php:51 msgid "July" -msgstr "" +msgstr "七月" -#: js/config.php:33 +#: js/config.php:52 msgid "August" -msgstr "" +msgstr "八月" -#: js/config.php:33 +#: js/config.php:53 msgid "September" -msgstr "" +msgstr "九月" -#: js/config.php:33 +#: js/config.php:54 msgid "October" -msgstr "" +msgstr "十月" -#: js/config.php:33 +#: js/config.php:55 msgid "November" -msgstr "" +msgstr "十一月" -#: js/config.php:33 +#: js/config.php:56 msgid "December" -msgstr "" +msgstr "十二月" -#: js/js.js:284 +#: js/js.js:286 msgid "Settings" -msgstr "" +msgstr "設定" -#: js/js.js:764 +#: js/js.js:777 msgid "seconds ago" msgstr "" -#: js/js.js:765 +#: js/js.js:778 msgid "1 minute ago" msgstr "" -#: js/js.js:766 +#: js/js.js:779 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:767 +#: js/js.js:780 msgid "1 hour ago" msgstr "" -#: js/js.js:768 +#: js/js.js:781 msgid "{hours} hours ago" msgstr "" -#: js/js.js:769 +#: js/js.js:782 msgid "today" -msgstr "" +msgstr "今日" -#: js/js.js:770 +#: js/js.js:783 msgid "yesterday" -msgstr "" +msgstr "昨日" -#: js/js.js:771 +#: js/js.js:784 msgid "{days} days ago" msgstr "" -#: js/js.js:772 +#: js/js.js:785 msgid "last month" -msgstr "" +msgstr "前一月" -#: js/js.js:773 +#: js/js.js:786 msgid "{months} months ago" msgstr "" -#: js/js.js:774 +#: js/js.js:787 msgid "months ago" -msgstr "" +msgstr "個月之前" -#: js/js.js:775 +#: js/js.js:788 msgid "last year" msgstr "" -#: js/js.js:776 +#: js/js.js:789 msgid "years ago" msgstr "" @@ -219,19 +220,19 @@ msgstr "" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" -msgstr "" +msgstr "取消" #: js/oc-dialogs.js:162 msgid "No" -msgstr "" +msgstr "No" #: js/oc-dialogs.js:163 msgid "Yes" -msgstr "" +msgstr "Yes" #: js/oc-dialogs.js:180 msgid "Ok" -msgstr "" +msgstr "OK" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -239,10 +240,10 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:571 -#: js/share.js:583 +#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 +#: js/share.js:578 msgid "Error" -msgstr "" +msgstr "錯誤" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -252,129 +253,129 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 -msgid "Share" -msgstr "" - -#: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 +#: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "已分享" -#: js/share.js:141 js/share.js:611 +#: js/share.js:90 +msgid "Share" +msgstr "分享" + +#: js/share.js:125 js/share.js:606 msgid "Error while sharing" -msgstr "" +msgstr "分享時發生錯誤" + +#: js/share.js:136 +msgid "Error while unsharing" +msgstr "取消分享時發生錯誤" + +#: js/share.js:143 +msgid "Error while changing permissions" +msgstr "更改權限時發生錯誤" #: js/share.js:152 -msgid "Error while unsharing" -msgstr "" +msgid "Shared with you and the group {group} by {owner}" +msgstr "{owner}與你及群組的分享" + +#: js/share.js:154 +msgid "Shared with you by {owner}" +msgstr "{owner}與你的分享" #: js/share.js:159 -msgid "Error while changing permissions" -msgstr "" - -#: js/share.js:168 -msgid "Shared with you and the group {group} by {owner}" -msgstr "" - -#: js/share.js:170 -msgid "Shared with you by {owner}" -msgstr "" - -#: js/share.js:175 msgid "Share with" -msgstr "" +msgstr "分享" -#: js/share.js:180 +#: js/share.js:164 msgid "Share with link" -msgstr "" +msgstr "以連結分享" -#: js/share.js:183 +#: js/share.js:167 msgid "Password protect" -msgstr "" +msgstr "密碼保護" -#: js/share.js:185 templates/installation.php:44 templates/login.php:35 +#: js/share.js:169 templates/installation.php:47 templates/login.php:35 msgid "Password" -msgstr "" +msgstr "密碼" -#: js/share.js:189 +#: js/share.js:173 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:174 msgid "Send" -msgstr "" +msgstr "傳送" -#: js/share.js:194 +#: js/share.js:178 msgid "Set expiration date" -msgstr "" +msgstr "設定分享期限" -#: js/share.js:195 +#: js/share.js:179 msgid "Expiration date" -msgstr "" +msgstr "分享期限" -#: js/share.js:227 +#: js/share.js:211 msgid "Share via email:" -msgstr "" +msgstr "以電郵分享" -#: js/share.js:229 +#: js/share.js:213 msgid "No people found" -msgstr "" +msgstr "找不到" -#: js/share.js:256 +#: js/share.js:240 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:292 +#: js/share.js:276 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:313 +#: js/share.js:297 msgid "Unshare" -msgstr "" +msgstr "取消分享" -#: js/share.js:325 +#: js/share.js:309 msgid "can edit" msgstr "" -#: js/share.js:327 +#: js/share.js:311 msgid "access control" msgstr "" -#: js/share.js:330 +#: js/share.js:314 msgid "create" -msgstr "" +msgstr "新增" -#: js/share.js:333 +#: js/share.js:317 msgid "update" -msgstr "" +msgstr "更新" -#: js/share.js:336 +#: js/share.js:320 msgid "delete" -msgstr "" +msgstr "刪除" -#: js/share.js:339 +#: js/share.js:323 msgid "share" -msgstr "" +msgstr "分享" -#: js/share.js:373 js/share.js:558 +#: js/share.js:357 js/share.js:553 msgid "Password protected" -msgstr "" +msgstr "密碼保護" -#: js/share.js:571 +#: js/share.js:566 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:583 +#: js/share.js:578 msgid "Error setting expiration date" msgstr "" -#: js/share.js:598 +#: js/share.js:593 msgid "Sending ..." -msgstr "" +msgstr "傳送中" -#: js/share.js:609 +#: js/share.js:604 msgid "Email sent" -msgstr "" +msgstr "郵件已傳" #: js/update.js:14 msgid "" @@ -385,72 +386,72 @@ msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "更新成功, 正" -#: lostpassword/controller.php:47 +#: lostpassword/controller.php:48 msgid "ownCloud password reset" msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "請用以下連結重設你的密碼: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "" +msgstr "你將收到一封電郵" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "重設密碼郵件已傳" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "請求失敗" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:41 #: templates/login.php:28 msgid "Username" -msgstr "" +msgstr "用戶名稱" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "" +msgstr "重設" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "你的密碼已被重設" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "前往登入版面" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "新密碼" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "重設密碼" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "個人" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "用戶" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "軟件" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "管理" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "幫助" #: templates/403.php:12 msgid "Access forbidden" @@ -458,7 +459,7 @@ msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "" +msgstr "未找到Cloud" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -466,115 +467,116 @@ msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "" +msgstr "加入" -#: templates/installation.php:23 templates/installation.php:30 +#: templates/installation.php:24 templates/installation.php:31 msgid "Security Warning" msgstr "" -#: templates/installation.php:24 +#: templates/installation.php:25 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" -#: templates/installation.php:31 +#: templates/installation.php:32 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "For information how to properly configure your server, please see the documentation." msgstr "" -#: templates/installation.php:36 +#: templates/installation.php:37 msgid "Create an admin account" -msgstr "" +msgstr "建立管理員帳戶" -#: templates/installation.php:52 +#: templates/installation.php:55 msgid "Advanced" -msgstr "" +msgstr "進階" -#: templates/installation.php:54 +#: templates/installation.php:57 msgid "Data folder" msgstr "" -#: templates/installation.php:61 +#: templates/installation.php:66 msgid "Configure the database" -msgstr "" - -#: templates/installation.php:66 templates/installation.php:77 -#: templates/installation.php:87 templates/installation.php:97 -msgid "will be used" -msgstr "" - -#: templates/installation.php:109 -msgid "Database user" -msgstr "" - -#: templates/installation.php:113 -msgid "Database password" -msgstr "" +msgstr "設定資料庫" +#: templates/installation.php:71 templates/installation.php:83 +#: templates/installation.php:94 templates/installation.php:105 #: templates/installation.php:117 -msgid "Database name" -msgstr "" +msgid "will be used" +msgstr "將被使用" -#: templates/installation.php:125 +#: templates/installation.php:129 +msgid "Database user" +msgstr "資料庫帳戶" + +#: templates/installation.php:134 +msgid "Database password" +msgstr "資料庫密碼" + +#: templates/installation.php:139 +msgid "Database name" +msgstr "資料庫名稱" + +#: templates/installation.php:149 msgid "Database tablespace" msgstr "" -#: templates/installation.php:131 +#: templates/installation.php:156 msgid "Database host" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:162 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:33 +#: templates/layout.guest.php:40 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:48 +#: templates/layout.user.php:58 msgid "Log out" -msgstr "" +msgstr "登出" #: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "自動登入被拒" #: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "如果你近期未曾更改密碼, 你的帳號可能被洩露!" #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "請更改你的密碼以保護你的帳戶" #: templates/login.php:19 msgid "Lost your password?" -msgstr "" +msgstr "忘記密碼" #: templates/login.php:41 msgid "remember" -msgstr "" +msgstr "記住" #: templates/login.php:43 msgid "Log in" -msgstr "" +msgstr "登入" #: templates/login.php:49 msgid "Alternative Logins" @@ -582,13 +584,13 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "" +msgstr "前一步" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "" +msgstr "下一步" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "ownCloud (ver. %s)更新中, 請耐心等侯" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 6fb648527a..a760f750ca 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"PO-Revision-Date: 2013-03-13 06:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -74,9 +74,9 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" -msgstr "" +msgstr "文件" #: js/fileactions.js:125 msgid "Delete permanently" @@ -84,14 +84,14 @@ msgstr "" #: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 msgid "Delete" -msgstr "" +msgstr "刪除" #: js/fileactions.js:193 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "" @@ -145,80 +145,80 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "" +msgstr "上傳" #: templates/admin.php:5 msgid "File handling" @@ -250,7 +250,7 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "儲存" #: templates/index.php:7 msgid "New" @@ -286,11 +286,11 @@ msgstr "" #: templates/index.php:74 msgid "Download" -msgstr "" +msgstr "下載" #: templates/index.php:86 templates/index.php:87 msgid "Unshare" -msgstr "" +msgstr "取消分享" #: templates/index.php:106 msgid "Upload too large" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 95bd8e76a9..f5a0dad842 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"PO-Revision-Date: 2013-03-13 02:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:423 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:426 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " @@ -88,16 +88,16 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "" +msgstr "群組" #: templates/settings.php:100 msgid "Users" -msgstr "" +msgstr "用戶" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "刪除" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 4721ae096c..792810587f 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-19 00:01+0100\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" "PO-Revision-Date: 2012-08-12 22:35+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" @@ -19,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "密碼" #: templates/authenticate.php:6 msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:37 msgid "Download" -msgstr "" +msgstr "下載" -#: templates/public.php:29 +#: templates/public.php:34 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:43 msgid "web services under your control" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index efeae3b8e6..fb4c6a8aca 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"PO-Revision-Date: 2013-03-13 02:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -73,7 +73,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "" +msgstr "刪除" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 17cc010041..0314f6fd2b 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"PO-Revision-Date: 2013-03-13 06:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -19,41 +19,41 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "" +msgstr "幫助" #: app.php:362 msgid "Personal" -msgstr "" +msgstr "個人" #: app.php:373 msgid "Settings" -msgstr "" +msgstr "設定" #: app.php:385 msgid "Users" -msgstr "" +msgstr "用戶" #: app.php:398 msgid "Apps" -msgstr "" +msgstr "軟件" #: app.php:406 msgid "Admin" -msgstr "" +msgstr "管理" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -75,11 +75,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "文件" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "文字" #: search/provider/file.php:29 msgid "Images" @@ -211,11 +211,11 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "" +msgstr "今日" #: template.php:119 msgid "yesterday" -msgstr "" +msgstr "昨日" #: template.php:120 #, php-format @@ -224,7 +224,7 @@ msgstr "" #: template.php:121 msgid "last month" -msgstr "" +msgstr "前一月" #: template.php:122 #, php-format diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 5650c78910..4420bb1820 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"PO-Revision-Date: 2013-03-13 02:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -110,7 +110,7 @@ msgstr "" #: js/apps.js:87 msgid "Error" -msgstr "" +msgstr "錯誤" #: js/apps.js:90 msgid "Updated" @@ -135,7 +135,7 @@ msgstr "" #: js/users.js:75 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" -msgstr "" +msgstr "群組" #: js/users.js:78 templates/users.php:82 templates/users.php:119 msgid "Group Admin" @@ -143,7 +143,7 @@ msgstr "" #: js/users.js:99 templates/users.php:161 msgid "Delete" -msgstr "" +msgstr "刪除" #: js/users.js:191 msgid "add group" @@ -393,7 +393,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:79 msgid "Password" -msgstr "" +msgstr "密碼" #: templates/personal.php:38 msgid "Your password was changed" @@ -409,7 +409,7 @@ msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "" +msgstr "新密碼" #: templates/personal.php:44 msgid "Change password" @@ -433,7 +433,7 @@ msgstr "" #: templates/personal.php:70 msgid "Email" -msgstr "" +msgstr "電郵" #: templates/personal.php:72 msgid "Your email address" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 55843162a9..f5a83b73b2 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"PO-Revision-Date: 2013-03-13 01:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" -msgstr "" +msgstr "密碼" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" -msgstr "" +msgstr "幫助" diff --git a/lib/l10n/zh_HK.php b/lib/l10n/zh_HK.php new file mode 100644 index 0000000000..cfa33ec36f --- /dev/null +++ b/lib/l10n/zh_HK.php @@ -0,0 +1,13 @@ + "幫助", +"Personal" => "個人", +"Settings" => "設定", +"Users" => "用戶", +"Apps" => "軟件", +"Admin" => "管理", +"Files" => "文件", +"Text" => "文字", +"today" => "今日", +"yesterday" => "昨日", +"last month" => "前一月" +); diff --git a/settings/l10n/zh_HK.php b/settings/l10n/zh_HK.php new file mode 100644 index 0000000000..843a41c9c1 --- /dev/null +++ b/settings/l10n/zh_HK.php @@ -0,0 +1,8 @@ + "錯誤", +"Groups" => "群組", +"Delete" => "刪除", +"Password" => "密碼", +"New password" => "新密碼", +"Email" => "電郵" +); From 17cb47fbf6c5164dda3a27cb030f44557a1e3c1e Mon Sep 17 00:00:00 2001 From: Ceri Davies Date: Thu, 14 Mar 2013 10:04:58 +0000 Subject: [PATCH 43/61] Correct emails when folders are shared. itemType is never "dir"; it's either "file" or "folder". --- core/ajax/share.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/ajax/share.php b/core/ajax/share.php index 9201b48cb9..37ddf8ae6c 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -95,12 +95,12 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo // setup the email $subject = (string)$l->t('User %s shared a file with you', $displayName); - if ($type === 'dir') + if ($type === 'folder') $subject = (string)$l->t('User %s shared a folder with you', $displayName); $text = (string)$l->t('User %s shared the file "%s" with you. It is available for download here: %s', array($displayName, $file, $link)); - if ($type === 'dir') + if ($type === 'folder') $text = (string)$l->t('User %s shared the folder "%s" with you. It is available for download here: %s', array($displayName, $file, $link)); From 8154b4be7de8c0f9616b3fb0d4b8385204615c61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 14 Mar 2013 13:26:20 +0100 Subject: [PATCH 44/61] use display name as sender for private link mails, approved in #2294 --- core/ajax/share.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ajax/share.php b/core/ajax/share.php index 9201b48cb9..7ebd894971 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -110,7 +110,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo // send it out now try { - OCP\Util::sendMail($to_address, $to_address, $subject, $text, $from_address, $user); + OCP\Util::sendMail($to_address, $to_address, $subject, $text, $from_address, $displayName); OCP\JSON::success(); } catch (Exception $exception) { OCP\JSON::error(array('data' => array('message' => OC_Util::sanitizeHTML($exception->getMessage())))); From abe408e934d1620a500d9be365e265c9fd635b27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 14 Mar 2013 14:59:12 +0100 Subject: [PATCH 45/61] replace \MDB with \OC_DB, approved in #2278 --- lib/files/cache/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 1ff66f11f1..91bcb73a55 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -204,7 +204,7 @@ class Cache { $query = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache`(' . implode(', ', $queryParts) . ')' . ' VALUES(' . implode(', ', $valuesPlaceholder) . ')'); $result = $query->execute($params); - if (\MDB2::isError($result)) { + if (\OC_DB::isError($result)) { \OCP\Util::writeLog('cache', 'Insert to cache failed: '.$result, \OCP\Util::ERROR); } From 0cf50d63bfcbe359d850a7ce0228555a3766b31a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 14 Mar 2013 16:47:59 +0100 Subject: [PATCH 46/61] create new version if the same file is uploaded again over the web interface --- apps/files_versions/lib/versions.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 20611c61ec..8874fec6bd 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -156,11 +156,18 @@ class Storage { /** * rename versions of a file */ - public static function rename($oldpath, $newpath) { - list($uid, $oldpath) = self::getUidAndFilename($oldpath); - list($uidn, $newpath) = self::getUidAndFilename($newpath); + public static function rename($old_path, $new_path) { + list($uid, $oldpath) = self::getUidAndFilename($old_path); + list($uidn, $newpath) = self::getUidAndFilename($new_path); $versions_view = new \OC\Files\View('/'.$uid .'/files_versions'); $files_view = new \OC\Files\View('/'.$uid .'/files'); + + // if the file already exists than it was a upload of a existing file + // over the web interface -> store() is the right function we need here + if ($files_view->file_exists($newpath)) { + return self::store($newpath); + } + $abs_newpath = $versions_view->getLocalFile($newpath); if ( $files_view->is_dir($oldpath) && $versions_view->is_dir($oldpath) ) { From ed8359737199a8a6640986e00df80d971aa6e1d7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 14 Mar 2013 17:00:30 +0100 Subject: [PATCH 47/61] Return unknown freespace if the free_space call failed Fixes #2312 --- lib/files/storage/local.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/files/storage/local.php b/lib/files/storage/local.php index da6597c805..7b637a9705 100644 --- a/lib/files/storage/local.php +++ b/lib/files/storage/local.php @@ -218,7 +218,11 @@ class Local extends \OC\Files\Storage\Common{ } public function free_space($path) { - return @disk_free_space($this->datadir.$path); + $space = @disk_free_space($this->datadir.$path); + if($space === false){ + return \OC\Files\FREE_SPACE_UNKNOWN; + } + return $space; } public function search($query) { From 93b2ada6f6b54dc9b3c341c379e524f51a75b8f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 14 Mar 2013 17:08:16 +0100 Subject: [PATCH 48/61] fix var name --- apps/files_versions/lib/versions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 8874fec6bd..6d47b3038c 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -164,7 +164,7 @@ class Storage { // if the file already exists than it was a upload of a existing file // over the web interface -> store() is the right function we need here - if ($files_view->file_exists($newpath)) { + if ($files_view->file_exists($new_path)) { return self::store($newpath); } From f78594c0aeeb29bfc4365f48dbb967b645fd5c61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 14 Mar 2013 17:09:48 +0100 Subject: [PATCH 49/61] fix var name --- apps/files_versions/lib/versions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 6d47b3038c..f99e26a091 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -164,8 +164,8 @@ class Storage { // if the file already exists than it was a upload of a existing file // over the web interface -> store() is the right function we need here - if ($files_view->file_exists($new_path)) { - return self::store($newpath); + if ($files_view->file_exists($newpath)) { + return self::store($new_path); } $abs_newpath = $versions_view->getLocalFile($newpath); From 7f43d6559fa3658c6c8eacf4a513d8f8712f5a02 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Thu, 14 Mar 2013 10:21:37 -0700 Subject: [PATCH 50/61] Added 3rdparty folder as a git submodule --- .gitignore | 1 - .gitmodules | 3 +++ 3rdparty | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .gitmodules create mode 160000 3rdparty diff --git a/.gitignore b/.gitignore index 40d6e6ca0f..b0cc783123 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,6 @@ owncloud config/config.php config/mount.php apps/inc.php -3rdparty # ignore all apps except core ones apps/* diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000..b9c1a3702c --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "3rdparty"] + path = 3rdparty + url = git://github.com/owncloud/3rdparty.git diff --git a/3rdparty b/3rdparty new file mode 160000 index 0000000000..63cb284792 --- /dev/null +++ b/3rdparty @@ -0,0 +1 @@ +Subproject commit 63cb2847921d668c2b48b572872cfddbcf41bea4 From 1631aa24346552d546abbe00453acc9f2cb22ce6 Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Fri, 15 Mar 2013 00:03:37 +0100 Subject: [PATCH 51/61] Add backtick for trash app to prevent pg errors --- apps/files_trashbin/index.php | 2 +- apps/files_trashbin/lib/trash.php | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 24ccd8c460..8a5875b9ce 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -43,7 +43,7 @@ if ($dir) { } else { $dirlisting = false; - $query = \OC_DB::prepare('SELECT `id`,`location`,`timestamp`,`type`,`mime` FROM `*PREFIX*files_trash` WHERE user = ?'); + $query = \OC_DB::prepare('SELECT `id`,`location`,`timestamp`,`type`,`mime` FROM `*PREFIX*files_trash` WHERE `user` = ?'); $result = $query->execute(array($user))->fetchAll(); } diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index 2fc8a8bc3c..33abe608d8 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -64,7 +64,7 @@ class Trashbin { $trashbinSize += self::copy_recursive($file_path, 'files_trashbin/files/'.$deleted.'.d'.$timestamp, $view); if ( $view->file_exists('files_trashbin/files/'.$deleted.'.d'.$timestamp) ) { - $query = \OC_DB::prepare("INSERT INTO *PREFIX*files_trash (id,timestamp,location,type,mime,user) VALUES (?,?,?,?,?,?)"); + $query = \OC_DB::prepare("INSERT INTO *PREFIX*files_trash (`id`,`timestamp`,`location`,`type`,`mime`,`user`) VALUES (?,?,?,?,?,?)"); $result = $query->execute(array($deleted, $timestamp, $location, $type, $mime, $user)); if ( !$result ) { // if file couldn't be added to the database than also don't store it in the trash bin. $view->deleteAll('files_trashbin/files/'.$deleted.'.d'.$timestamp); @@ -144,8 +144,8 @@ class Trashbin { $trashbinSize = self::calculateSize(new \OC\Files\View('/'. $user.'/files_trashbin')); } if ( $timestamp ) { - $query = \OC_DB::prepare('SELECT location,type FROM *PREFIX*files_trash' - .' WHERE user=? AND id=? AND timestamp=?'); + $query = \OC_DB::prepare('SELECT `location`,`type` FROM *PREFIX*files_trash' + .' WHERE `user`=? AND `id`=? AND `timestamp`=?'); $result = $query->execute(array($user,$filename,$timestamp))->fetchAll(); if ( count($result) != 1 ) { \OC_Log::write('files_trashbin', 'trash bin database inconsistent!', \OC_Log::ERROR); @@ -228,7 +228,7 @@ class Trashbin { } if ( $timestamp ) { - $query = \OC_DB::prepare('DELETE FROM *PREFIX*files_trash WHERE user=? AND id=? AND timestamp=?'); + $query = \OC_DB::prepare('DELETE FROM *PREFIX*files_trash WHERE `user`=? AND `id`=? AND `timestamp`=?'); $query->execute(array($user,$filename,$timestamp)); } @@ -259,7 +259,7 @@ class Trashbin { } if ( $timestamp ) { - $query = \OC_DB::prepare('DELETE FROM *PREFIX*files_trash WHERE user=? AND id=? AND timestamp=?'); + $query = \OC_DB::prepare('DELETE FROM *PREFIX*files_trash WHERE `user`=? AND `id`=? AND `timestamp`=?'); $query->execute(array($user,$filename,$timestamp)); $file = $filename.'.d'.$timestamp; } else { @@ -344,7 +344,7 @@ class Trashbin { $view = new \OC\Files\View('/'.$user); $size = 0; - $query = \OC_DB::prepare('SELECT location,type,id,timestamp FROM *PREFIX*files_trash WHERE user=?'); + $query = \OC_DB::prepare('SELECT `location`,`type`,`id`,`timestamp` FROM *PREFIX*files_trash WHERE `user`=?'); $result = $query->execute(array($user))->fetchAll(); $retention_obligation = \OC_Config::getValue('trashbin_retention_obligation', @@ -362,8 +362,8 @@ class Trashbin { $availableSpace = $availableSpace + $size; // if size limit for trash bin reached, delete oldest files in trash bin if ($availableSpace < 0) { - $query = \OC_DB::prepare('SELECT location,type,id,timestamp FROM *PREFIX*files_trash' - .' WHERE user=? ORDER BY timestamp ASC'); + $query = \OC_DB::prepare('SELECT `location`,`type`,`id`,`timestamp` FROM *PREFIX*files_trash' + .' WHERE `user`=? ORDER BY `timestamp` ASC'); $result = $query->execute(array($user))->fetchAll(); $length = count($result); $i = 0; @@ -490,7 +490,7 @@ class Trashbin { * @return mixed trash bin size or false if no trash bin size is stored */ private static function getTrashbinSize($user) { - $query = \OC_DB::prepare('SELECT size FROM *PREFIX*files_trashsize WHERE user=?'); + $query = \OC_DB::prepare('SELECT `size` FROM *PREFIX*files_trashsize WHERE `user`=?'); $result = $query->execute(array($user))->fetchAll(); if ($result) { @@ -507,9 +507,9 @@ class Trashbin { */ private static function setTrashbinSize($user, $size) { if ( self::getTrashbinSize($user) === false) { - $query = \OC_DB::prepare('INSERT INTO *PREFIX*files_trashsize (size, user) VALUES (?, ?)'); + $query = \OC_DB::prepare('INSERT INTO *PREFIX*files_trashsize (`size`, `user`) VALUES (?, ?)'); }else { - $query = \OC_DB::prepare('UPDATE *PREFIX*files_trashsize SET size=? WHERE user=?'); + $query = \OC_DB::prepare('UPDATE *PREFIX*files_trashsize SET `size`=? WHERE `user`=?'); } $query->execute(array($size, $user)); } From 0c123ebf9d56d8b6088f82fe25e1571684e27897 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 15 Mar 2013 00:06:36 +0100 Subject: [PATCH 52/61] [tx-robot] updated from transifex --- apps/files/l10n/tr.php | 1 + apps/files/l10n/zh_CN.php | 10 +- apps/files/l10n/zh_HK.php | 1 + apps/files_encryption/l10n/zh_CN.php | 5 +- apps/files_encryption/l10n/zh_HK.php | 6 + apps/files_trashbin/l10n/de.php | 2 +- apps/files_trashbin/l10n/de_DE.php | 2 +- apps/files_trashbin/l10n/zh_CN.php | 8 ++ apps/files_trashbin/l10n/zh_HK.php | 1 + apps/files_versions/l10n/zh_HK.php | 6 + apps/user_ldap/l10n/zh_HK.php | 1 + core/l10n/cs_CZ.php | 2 +- core/l10n/zh_CN.php | 6 + l10n/cs_CZ/core.po | 185 ++++++++++++------------- l10n/de/files.po | 46 +++---- l10n/de/files_trashbin.po | 8 +- l10n/de/settings.po | 9 +- l10n/de_DE/files.po | 46 +++---- l10n/de_DE/files_trashbin.po | 8 +- l10n/de_DE/settings.po | 4 +- l10n/sl/files.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/files.po | 50 +++---- l10n/tr/lib.po | 16 +-- l10n/tr/settings.po | 33 ++--- l10n/zh_CN/core.po | 198 ++++++++++++++------------- l10n/zh_CN/files.po | 62 ++++----- l10n/zh_CN/files_encryption.po | 15 +- l10n/zh_CN/files_trashbin.po | 23 ++-- l10n/zh_CN/lib.po | 71 +++++----- l10n/zh_CN/settings.po | 104 +++++++------- l10n/zh_HK/files.po | 6 +- l10n/zh_HK/files_encryption.po | 15 +- l10n/zh_HK/files_trashbin.po | 6 +- l10n/zh_HK/files_versions.po | 19 +-- l10n/zh_HK/user_ldap.po | 6 +- lib/l10n/tr.php | 1 + lib/l10n/zh_CN.php | 34 ++++- settings/l10n/de.php | 2 +- settings/l10n/tr.php | 12 ++ settings/l10n/zh_CN.php | 48 +++++++ 51 files changed, 620 insertions(+), 484 deletions(-) create mode 100644 apps/files_encryption/l10n/zh_HK.php create mode 100644 apps/files_versions/l10n/zh_HK.php diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index bcbef8daf3..547b490330 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -61,6 +61,7 @@ "From link" => "Bağlantıdan", "Deleted files" => "Dosyalar silindi", "Cancel upload" => "Yüklemeyi iptal et", +"You don’t have write permissions here." => "Buraya erişim hakkınız yok.", "Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", "Download" => "İndir", "Unshare" => "Paylaşılmayan", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 88fdc537c3..2923126d10 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -10,8 +10,10 @@ "No file was uploaded" => "文件没有上传", "Missing a temporary folder" => "缺少临时目录", "Failed to write to disk" => "写入磁盘失败", +"Not enough storage available" => "没有足够的存储空间", "Invalid directory." => "无效文件夹。", "Files" => "文件", +"Delete permanently" => "永久删除", "Delete" => "删除", "Rename" => "重命名", "Pending" => "操作等待中", @@ -21,9 +23,12 @@ "cancel" => "取消", "replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}", "undo" => "撤销", +"perform delete operation" => "进行删除操作", "'.' is an invalid file name." => "'.' 是一个无效的文件名。", "File name cannot be empty." => "文件名不能为空。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。", +"Your storage is full, files can not be updated or synced anymore!" => "您的存储空间已满,文件将无法更新或同步!", +"Your storage is almost full ({usedSpacePercent}%)" => "您的存储空间即将用完 ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "下载正在准备中。如果文件较大可能会花费一些时间。", "Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节", "Upload Error" => "上传错误", @@ -54,12 +59,15 @@ "Text file" => "文本文件", "Folder" => "文件夹", "From link" => "来自链接", +"Deleted files" => "删除文件", "Cancel upload" => "取消上传", +"You don’t have write permissions here." => "您没有写权限", "Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!", "Download" => "下载", "Unshare" => "取消分享", "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." => "文件正在被扫描,请稍候。", -"Current scanning" => "当前扫描" +"Current scanning" => "当前扫描", +"Upgrading filesystem cache..." => "正在更新文件系统缓存..." ); diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index 76acf22cd5..4eaa908476 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -1,6 +1,7 @@ "文件", "Delete" => "刪除", +"Name" => "名稱", "Upload" => "上傳", "Save" => "儲存", "Download" => "下載", diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php index 867d000f2e..13fa95203e 100644 --- a/apps/files_encryption/l10n/zh_CN.php +++ b/apps/files_encryption/l10n/zh_CN.php @@ -1,4 +1,7 @@ "加密", -"None" => "None" +"File encryption is enabled." => "文件加密已启用.", +"The following file types will not be encrypted:" => "如下的文件类型将不会被加密:", +"Exclude the following file types from encryption:" => "从加密中排除如下的文件类型:", +"None" => "无" ); diff --git a/apps/files_encryption/l10n/zh_HK.php b/apps/files_encryption/l10n/zh_HK.php new file mode 100644 index 0000000000..0c0b709fdc --- /dev/null +++ b/apps/files_encryption/l10n/zh_HK.php @@ -0,0 +1,6 @@ + "加密", +"File encryption is enabled." => "檔案加密已開啟", +"The following file types will not be encrypted:" => "以下文件類別將不會被加密", +"None" => "空" +); diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index b1c9e13def..60a0e40d45 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -3,7 +3,7 @@ "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", "perform restore operation" => "Wiederherstellung ausführen", "delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Permanent löschen", +"Delete permanently" => "Endgültig löschen", "Name" => "Name", "Deleted" => "gelöscht", "1 folder" => "1 Ordner", diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 48d1425ded..802a110fd1 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -13,5 +13,5 @@ "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", "Restore" => "Wiederherstellen", "Delete" => "Löschen", -"Deleted Files" => "gelöschte Dateien" +"Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/zh_CN.php b/apps/files_trashbin/l10n/zh_CN.php index 17bbe93f2b..c2cc1f123e 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -1,9 +1,17 @@ "无法彻底删除文件%s", +"Couldn't restore %s" => "无法恢复%s", +"perform restore operation" => "执行恢复操作", +"delete file permanently" => "彻底删除文件", +"Delete permanently" => "永久删除", "Name" => "名称", +"Deleted" => "已删除", "1 folder" => "1个文件夹", "{count} folders" => "{count} 个文件夹", "1 file" => "1 个文件", "{count} files" => "{count} 个文件", +"Nothing in here. Your trash bin is empty!" => "这里没有东西. 你的回收站是空的!", +"Restore" => "恢复", "Delete" => "删除", "Deleted Files" => "已删除文件" ); diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php index 8dbddf43e3..6967e19035 100644 --- a/apps/files_trashbin/l10n/zh_HK.php +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -1,3 +1,4 @@ "名稱", "Delete" => "刪除" ); diff --git a/apps/files_versions/l10n/zh_HK.php b/apps/files_versions/l10n/zh_HK.php new file mode 100644 index 0000000000..71bd3bbbd9 --- /dev/null +++ b/apps/files_versions/l10n/zh_HK.php @@ -0,0 +1,6 @@ + "成功", +"failure" => "失敗", +"No old versions available" => "沒有以往版本", +"Versions" => "版本" +); diff --git a/apps/user_ldap/l10n/zh_HK.php b/apps/user_ldap/l10n/zh_HK.php index 4dec54822a..190e4eba79 100644 --- a/apps/user_ldap/l10n/zh_HK.php +++ b/apps/user_ldap/l10n/zh_HK.php @@ -1,4 +1,5 @@ "密碼", +"Port" => "連接埠", "Help" => "幫助" ); diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index afd55d42bf..cbe48f6b68 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -128,7 +128,7 @@ "If you did not change your password recently, your account may be compromised!" => "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován.", "Please change your password to secure your account again." => "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu.", "Lost your password?" => "Ztratili jste své heslo?", -"remember" => "zapamatovat si", +"remember" => "zapamatovat", "Log in" => "Přihlásit", "Alternative Logins" => "Alternativní přihlášení", "prev" => "předchozí", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 6a2c2e35a4..631baf7cef 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地址:%s", "Category type not provided." => "未提供分类类型。", "No category to add?" => "没有可添加分类?", +"This category already exists: %s" => "此分类已存在:%s", "Object type not provided." => "未提供对象类型。", "%s ID not provided." => "%s ID未提供。", "Error adding %s to favorites." => "向收藏夹中新增%s时出错。", @@ -83,6 +84,8 @@ "Error setting expiration date" => "设置过期日期时出错", "Sending ..." => "正在发送...", "Email sent" => "邮件已发送", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "更新不成功。请汇报将此问题汇报给 ownCloud 社区。", +"The update was successful. Redirecting you to ownCloud now." => "更新成功。正在重定向至 ownCloud。", "ownCloud password reset" => "重置 ownCloud 密码", "Use the following link to reset your password: {link}" => "使用以下链接重置您的密码:{link}", "You will receive a link to reset your password via Email." => "您将会收到包含可以重置密码链接的邮件。", @@ -106,6 +109,8 @@ "Security Warning" => "安全警告", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "随机数生成器无效,请启用PHP的OpenSSL扩展", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "没有安全随机码生成器,攻击者可能会猜测密码重置信息从而窃取您的账户", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "您的数据目录和文件可能可以直接被互联网访问,因为 .htaccess 并未正常工作。", +"For information how to properly configure your server, please see the documentation." => "关于如何配置服务器,请参见 此文档。", "Create an admin account" => "创建管理员账号", "Advanced" => "高级", "Data folder" => "数据目录", @@ -125,6 +130,7 @@ "Lost your password?" => "忘记密码?", "remember" => "记住", "Log in" => "登录", +"Alternative Logins" => "其他登录方式", "prev" => "上一页", "next" => "下一页", "Updating ownCloud to version %s, this may take a while." => "更新 ownCloud 到版本 %s,这可能需要一些时间。" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index b8c1d4424b..21b3ee0cc4 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:20+0000\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 13:50+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -21,24 +21,24 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:85 +#: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" msgstr "Uživatel %s s vámi sdílí soubor" -#: ajax/share.php:87 +#: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" msgstr "Uživatel %s s vámi sdílí složku" -#: ajax/share.php:89 +#: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" msgstr "Uživatel %s s vámi sdílí soubor \"%s\". Můžete jej stáhnout zde: %s" -#: ajax/share.php:91 +#: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " @@ -84,79 +84,79 @@ msgstr "Žádné kategorie nebyly vybrány ke smazání." msgid "Error removing %s from favorites." msgstr "Chyba při odebírání %s z oblíbených." -#: js/config.php:32 +#: js/config.php:34 msgid "Sunday" msgstr "Neděle" -#: js/config.php:32 +#: js/config.php:35 msgid "Monday" msgstr "Pondělí" -#: js/config.php:32 +#: js/config.php:36 msgid "Tuesday" msgstr "Úterý" -#: js/config.php:32 +#: js/config.php:37 msgid "Wednesday" msgstr "Středa" -#: js/config.php:32 +#: js/config.php:38 msgid "Thursday" msgstr "Čtvrtek" -#: js/config.php:32 +#: js/config.php:39 msgid "Friday" msgstr "Pátek" -#: js/config.php:32 +#: js/config.php:40 msgid "Saturday" msgstr "Sobota" -#: js/config.php:33 +#: js/config.php:45 msgid "January" msgstr "Leden" -#: js/config.php:33 +#: js/config.php:46 msgid "February" msgstr "Únor" -#: js/config.php:33 +#: js/config.php:47 msgid "March" msgstr "Březen" -#: js/config.php:33 +#: js/config.php:48 msgid "April" msgstr "Duben" -#: js/config.php:33 +#: js/config.php:49 msgid "May" msgstr "Květen" -#: js/config.php:33 +#: js/config.php:50 msgid "June" msgstr "Červen" -#: js/config.php:33 +#: js/config.php:51 msgid "July" msgstr "Červenec" -#: js/config.php:33 +#: js/config.php:52 msgid "August" msgstr "Srpen" -#: js/config.php:33 +#: js/config.php:53 msgid "September" msgstr "Září" -#: js/config.php:33 +#: js/config.php:54 msgid "October" msgstr "Říjen" -#: js/config.php:33 +#: js/config.php:55 msgid "November" msgstr "Listopad" -#: js/config.php:33 +#: js/config.php:56 msgid "December" msgstr "Prosinec" @@ -164,55 +164,55 @@ msgstr "Prosinec" msgid "Settings" msgstr "Nastavení" -#: js/js.js:767 +#: js/js.js:777 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:768 +#: js/js.js:778 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:769 +#: js/js.js:779 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:770 +#: js/js.js:780 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:771 +#: js/js.js:781 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:772 +#: js/js.js:782 msgid "today" msgstr "dnes" -#: js/js.js:773 +#: js/js.js:783 msgid "yesterday" msgstr "včera" -#: js/js.js:774 +#: js/js.js:784 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:775 +#: js/js.js:785 msgid "last month" msgstr "minulý mesíc" -#: js/js.js:776 +#: js/js.js:786 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:777 +#: js/js.js:787 msgid "months ago" msgstr "před měsíci" -#: js/js.js:778 +#: js/js.js:788 msgid "last year" msgstr "minulý rok" -#: js/js.js:779 +#: js/js.js:789 msgid "years ago" msgstr "před lety" @@ -242,8 +242,8 @@ msgid "The object type is not specified." msgstr "Není určen typ objektu." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:582 -#: js/share.js:594 +#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 +#: js/share.js:578 msgid "Error" msgstr "Chyba" @@ -255,127 +255,127 @@ msgstr "Není určen název aplikace." msgid "The required file {file} is not installed!" msgstr "Požadovaný soubor {file} není nainstalován." -#: js/share.js:29 js/share.js:43 js/share.js:90 +#: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Sdílené" -#: js/share.js:93 +#: js/share.js:90 msgid "Share" msgstr "Sdílet" -#: js/share.js:141 js/share.js:622 +#: js/share.js:125 js/share.js:606 msgid "Error while sharing" msgstr "Chyba při sdílení" -#: js/share.js:152 +#: js/share.js:136 msgid "Error while unsharing" msgstr "Chyba při rušení sdílení" -#: js/share.js:159 +#: js/share.js:143 msgid "Error while changing permissions" msgstr "Chyba při změně oprávnění" -#: js/share.js:168 +#: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" msgstr "S Vámi a skupinou {group} sdílí {owner}" -#: js/share.js:170 +#: js/share.js:154 msgid "Shared with you by {owner}" msgstr "S Vámi sdílí {owner}" -#: js/share.js:175 +#: js/share.js:159 msgid "Share with" msgstr "Sdílet s" -#: js/share.js:180 +#: js/share.js:164 msgid "Share with link" msgstr "Sdílet s odkazem" -#: js/share.js:183 +#: js/share.js:167 msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:185 templates/installation.php:44 templates/login.php:35 +#: js/share.js:169 templates/installation.php:47 templates/login.php:35 msgid "Password" msgstr "Heslo" -#: js/share.js:189 +#: js/share.js:173 msgid "Email link to person" msgstr "Odeslat osobě odkaz e-mailem" -#: js/share.js:190 +#: js/share.js:174 msgid "Send" msgstr "Odeslat" -#: js/share.js:194 +#: js/share.js:178 msgid "Set expiration date" msgstr "Nastavit datum vypršení platnosti" -#: js/share.js:195 +#: js/share.js:179 msgid "Expiration date" msgstr "Datum vypršení platnosti" -#: js/share.js:227 +#: js/share.js:211 msgid "Share via email:" msgstr "Sdílet e-mailem:" -#: js/share.js:229 +#: js/share.js:213 msgid "No people found" msgstr "Žádní lidé nenalezeni" -#: js/share.js:256 +#: js/share.js:240 msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" -#: js/share.js:292 +#: js/share.js:276 msgid "Shared in {item} with {user}" msgstr "Sdíleno v {item} s {user}" -#: js/share.js:313 +#: js/share.js:297 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:325 +#: js/share.js:309 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:327 +#: js/share.js:311 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:330 +#: js/share.js:314 msgid "create" msgstr "vytvořit" -#: js/share.js:333 +#: js/share.js:317 msgid "update" msgstr "aktualizovat" -#: js/share.js:336 +#: js/share.js:320 msgid "delete" msgstr "smazat" -#: js/share.js:339 +#: js/share.js:323 msgid "share" msgstr "sdílet" -#: js/share.js:373 js/share.js:569 +#: js/share.js:357 js/share.js:553 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:582 +#: js/share.js:566 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:594 +#: js/share.js:578 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:609 +#: js/share.js:593 msgid "Sending ..." msgstr "Odesílám..." -#: js/share.js:620 +#: js/share.js:604 msgid "Email sent" msgstr "E-mail odeslán" @@ -410,7 +410,7 @@ msgstr "Obnovovací e-mail odeslán." msgid "Request failed!" msgstr "Požadavek selhal." -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:41 #: templates/login.php:28 msgid "Username" msgstr "Uživatelské jméno" @@ -471,85 +471,86 @@ msgstr "Upravit kategorie" msgid "Add" msgstr "Přidat" -#: templates/installation.php:23 templates/installation.php:30 +#: templates/installation.php:24 templates/installation.php:31 msgid "Security Warning" msgstr "Bezpečnostní upozornění" -#: templates/installation.php:24 +#: templates/installation.php:25 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Není dostupný žádný bezpečný generátor náhodných čísel. Povolte, prosím, rozšíření OpenSSL v PHP." -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Bez bezpečného generátoru náhodných čísel může útočník předpovědět token pro obnovu hesla a převzít kontrolu nad Vaším účtem." -#: templates/installation.php:31 +#: templates/installation.php:32 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Váš adresář s daty a soubory jsou dostupné z internetu, protože soubor .htaccess nefunguje." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "For information how to properly configure your server, please see the documentation." msgstr "Pro informace jak správně nastavit váš server se podívejte do dokumentace." -#: templates/installation.php:36 +#: templates/installation.php:37 msgid "Create an admin account" msgstr "Vytvořit účet správce" -#: templates/installation.php:52 +#: templates/installation.php:55 msgid "Advanced" msgstr "Pokročilé" -#: templates/installation.php:54 +#: templates/installation.php:57 msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:61 +#: templates/installation.php:66 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:66 templates/installation.php:77 -#: templates/installation.php:87 templates/installation.php:97 +#: templates/installation.php:71 templates/installation.php:83 +#: templates/installation.php:94 templates/installation.php:105 +#: templates/installation.php:117 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:109 +#: templates/installation.php:129 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:113 +#: templates/installation.php:134 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:117 +#: templates/installation.php:139 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:125 +#: templates/installation.php:149 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:131 +#: templates/installation.php:156 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:136 +#: templates/installation.php:162 msgid "Finish setup" msgstr "Dokončit nastavení" -#: templates/layout.guest.php:33 +#: templates/layout.guest.php:40 msgid "web services under your control" msgstr "webové služby pod Vaší kontrolou" -#: templates/layout.user.php:48 +#: templates/layout.user.php:58 msgid "Log out" msgstr "Odhlásit se" @@ -573,7 +574,7 @@ msgstr "Ztratili jste své heslo?" #: templates/login.php:41 msgid "remember" -msgstr "zapamatovat si" +msgstr "zapamatovat" #: templates/login.php:43 msgid "Log in" diff --git a/l10n/de/files.po b/l10n/de/files.po index 12c0a5d450..3be42e89c9 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -28,9 +28,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-05 00:18+0100\n" -"PO-Revision-Date: 2013-03-04 13:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 15:30+0000\n" +"Last-Translator: Marcel Kühlhorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,7 +95,7 @@ msgstr "Nicht genug Speicherplatz verfügbar" msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Dateien" @@ -111,8 +111,8 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Ausstehend" @@ -166,74 +166,74 @@ msgstr "Ihr Speicherplatz ist voll, Dateien können nicht mehr aktualisiert oder msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicherplatz ist fast aufgebraucht ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Schließen" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "Eine Datei wird hoch geladen" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} Dateien werden hochgeladen" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Name" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Größe" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 Datei" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index ef49bcedfa..b78f37fc54 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 15:30+0000\n" +"Last-Translator: Marcel Kühlhorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +41,7 @@ msgstr "Datei dauerhaft löschen" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Permanent löschen" +msgstr "Endgültig löschen" #: js/trash.js:174 templates/index.php:17 msgid "Name" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 76f41d6da2..fc4b5c8344 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -21,14 +21,15 @@ # , 2012. # , 2012. # Tristan , 2013. +# , 2013. # , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 08:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 14:41+0000\n" +"Last-Translator: kabum \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -232,7 +233,7 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf ihrem System zu installieren." +msgstr "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf ihrem System zu installieren." #: templates/admin.php:75 msgid "Internet connection not working" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 0b1891ce18..d6ee9818e3 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -33,9 +33,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 21:30+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 15:20+0000\n" +"Last-Translator: Marcel Kühlhorn \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,7 +100,7 @@ msgstr "Nicht genug Speicher vorhanden." msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Dateien" @@ -116,8 +116,8 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Ausstehend" @@ -171,74 +171,74 @@ msgstr "Ihr Speicher ist voll. Daher können keine Dateien mehr aktualisiert ode msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien einen Moment dauern." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Schließen" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} Dateien wurden hochgeladen" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Name" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Größe" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 Datei" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index cc95fb352c..c02de29c29 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 15:20+0000\n" +"Last-Translator: Marcel Kühlhorn \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,4 +84,4 @@ msgstr "Löschen" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "gelöschte Dateien" +msgstr "Gelöschte Dateien" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index dada42976f..34e569650f 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -31,8 +31,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 21:30+0000\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 14:41+0000\n" "Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 40792e24db..e12cdc3cf8 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" -"PO-Revision-Date: 2013-03-11 21:40+0000\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 18:00+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 848cdf3bb8..71347fa976 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 6357d63f29..11068c6144 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index eec3e2d2a2..d09ca11ec2 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 8037953766..69603f84d7 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 5dd32d279f..0d442a8a41 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 999ae0525d..eb9fdf8459 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 1e50b9107f..3084b6ee6f 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 7747d939c9..99241a5c25 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 7fc8346e6c..59a76e07b1 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ff8327d92e..ea58fc87f7 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 646eca0dcf..c3ade802cc 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index e64be58b17..fdab97fa16 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -14,15 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 09:20+0000\n" +"Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ajax/move.php:17 #, php-format @@ -81,7 +81,7 @@ msgstr "Yeterli disk alanı yok" msgid "Invalid directory." msgstr "Geçersiz dizin." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Dosyalar" @@ -97,8 +97,8 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Bekliyor" @@ -152,74 +152,74 @@ msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek yada senkron msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Yükleme hatası" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Kapat" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} dosya yükleniyor" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL boş olamaz." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir." -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Ad" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Boyut" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 dosya" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} dosya" @@ -285,7 +285,7 @@ msgstr "Yüklemeyi iptal et" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Buraya erişim hakkınız yok." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index d11aba5798..553525407b 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 09:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: app.php:349 msgid "Help" @@ -43,19 +43,19 @@ msgstr "Uygulamalar" msgid "Admin" msgstr "Yönetici" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "ZIP indirmeleri kapatılmıştır." -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "Dosyaların birer birer indirilmesi gerekmektedir." -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "Dosyalara dön" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." @@ -182,7 +182,7 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." #: setup.php:850 #, php-format diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 43a285d6b9..9beab0beac 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -6,21 +6,22 @@ # Aranel Surion , 2011-2013. # Emre , 2012. # , 2012. +# ismail yenigul , 2013. # Necdet Yücel , 2012. # Tolga Gezginiş , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 09:41+0000\n" +"Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -191,7 +192,7 @@ msgstr "Kurulum Uyarısı" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." #: templates/admin.php:33 #, php-format @@ -210,7 +211,7 @@ msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "Locale çalışmıyor." #: templates/admin.php:63 #, php-format @@ -222,7 +223,7 @@ msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "İnternet bağlantısı çalışmıyor" #: templates/admin.php:78 msgid "" @@ -236,7 +237,7 @@ msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:101 msgid "Execute one task with each page loaded" @@ -256,23 +257,23 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "Paylaşım" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "Paylaşım API'sini etkinleştir." #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "Bağlantıları izin ver." #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantılara izin ver" #: templates/admin.php:150 msgid "Allow resharing" @@ -296,7 +297,7 @@ msgstr "Güvenlik" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "HTTPS bağlantısına zorla" #: templates/admin.php:182 msgid "" @@ -315,7 +316,7 @@ msgstr "Kayıtlar" #: templates/admin.php:196 msgid "Log level" -msgstr "" +msgstr "Günlük seviyesi" #: templates/admin.php:223 msgid "More" @@ -386,7 +387,7 @@ msgstr "Ticari Destek" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "Kullandığınız:%s seçilebilecekler: %s" #: templates/personal.php:15 msgid "Get the apps to sync your files" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index b1f593bcc2..5ad45ec693 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -8,14 +8,15 @@ # Phoenix Nemo <>, 2012. # , 2013. # , 2012. +# , 2013. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 18:12+0000\n" +"Last-Translator: Xuetian Weng \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" @@ -23,24 +24,24 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:85 +#: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" msgstr "用户 %s 与您共享了一个文件" -#: ajax/share.php:87 +#: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" msgstr "用户 %s 与您共享了一个文件夹" -#: ajax/share.php:89 +#: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" msgstr "用户 %s 与您共享了文件\"%s\"。文件下载地址:%s" -#: ajax/share.php:91 +#: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " @@ -58,7 +59,7 @@ msgstr "没有可添加分类?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "此分类已存在:%s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -86,79 +87,79 @@ msgstr "没有选择要删除的类别" msgid "Error removing %s from favorites." msgstr "从收藏夹中移除%s时出错。" -#: js/config.php:32 +#: js/config.php:34 msgid "Sunday" msgstr "星期日" -#: js/config.php:32 +#: js/config.php:35 msgid "Monday" msgstr "星期一" -#: js/config.php:32 +#: js/config.php:36 msgid "Tuesday" msgstr "星期二" -#: js/config.php:32 +#: js/config.php:37 msgid "Wednesday" msgstr "星期三" -#: js/config.php:32 +#: js/config.php:38 msgid "Thursday" msgstr "星期四" -#: js/config.php:32 +#: js/config.php:39 msgid "Friday" msgstr "星期五" -#: js/config.php:32 +#: js/config.php:40 msgid "Saturday" msgstr "星期六" -#: js/config.php:33 +#: js/config.php:45 msgid "January" msgstr "一月" -#: js/config.php:33 +#: js/config.php:46 msgid "February" msgstr "二月" -#: js/config.php:33 +#: js/config.php:47 msgid "March" msgstr "三月" -#: js/config.php:33 +#: js/config.php:48 msgid "April" msgstr "四月" -#: js/config.php:33 +#: js/config.php:49 msgid "May" msgstr "五月" -#: js/config.php:33 +#: js/config.php:50 msgid "June" msgstr "六月" -#: js/config.php:33 +#: js/config.php:51 msgid "July" msgstr "七月" -#: js/config.php:33 +#: js/config.php:52 msgid "August" msgstr "八月" -#: js/config.php:33 +#: js/config.php:53 msgid "September" msgstr "九月" -#: js/config.php:33 +#: js/config.php:54 msgid "October" msgstr "十月" -#: js/config.php:33 +#: js/config.php:55 msgid "November" msgstr "十一月" -#: js/config.php:33 +#: js/config.php:56 msgid "December" msgstr "十二月" @@ -166,55 +167,55 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:767 +#: js/js.js:777 msgid "seconds ago" msgstr "秒前" -#: js/js.js:768 +#: js/js.js:778 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:769 +#: js/js.js:779 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:770 +#: js/js.js:780 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:771 +#: js/js.js:781 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:772 +#: js/js.js:782 msgid "today" msgstr "今天" -#: js/js.js:773 +#: js/js.js:783 msgid "yesterday" msgstr "昨天" -#: js/js.js:774 +#: js/js.js:784 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:775 +#: js/js.js:785 msgid "last month" msgstr "上月" -#: js/js.js:776 +#: js/js.js:786 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:777 +#: js/js.js:787 msgid "months ago" msgstr "月前" -#: js/js.js:778 +#: js/js.js:788 msgid "last year" msgstr "去年" -#: js/js.js:779 +#: js/js.js:789 msgid "years ago" msgstr "年前" @@ -244,8 +245,8 @@ msgid "The object type is not specified." msgstr "未指定对象类型。" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:582 -#: js/share.js:594 +#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 +#: js/share.js:578 msgid "Error" msgstr "错误" @@ -257,127 +258,127 @@ msgstr "未指定App名称。" msgid "The required file {file} is not installed!" msgstr "所需文件{file}未安装!" -#: js/share.js:29 js/share.js:43 js/share.js:90 +#: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "已共享" -#: js/share.js:93 +#: js/share.js:90 msgid "Share" msgstr "共享" -#: js/share.js:141 js/share.js:622 +#: js/share.js:125 js/share.js:606 msgid "Error while sharing" msgstr "共享时出错" -#: js/share.js:152 +#: js/share.js:136 msgid "Error while unsharing" msgstr "取消共享时出错" -#: js/share.js:159 +#: js/share.js:143 msgid "Error while changing permissions" msgstr "修改权限时出错" -#: js/share.js:168 +#: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner}共享给您及{group}组" -#: js/share.js:170 +#: js/share.js:154 msgid "Shared with you by {owner}" msgstr " {owner}与您共享" -#: js/share.js:175 +#: js/share.js:159 msgid "Share with" msgstr "共享" -#: js/share.js:180 +#: js/share.js:164 msgid "Share with link" msgstr "共享链接" -#: js/share.js:183 +#: js/share.js:167 msgid "Password protect" msgstr "密码保护" -#: js/share.js:185 templates/installation.php:44 templates/login.php:35 +#: js/share.js:169 templates/installation.php:47 templates/login.php:35 msgid "Password" msgstr "密码" -#: js/share.js:189 +#: js/share.js:173 msgid "Email link to person" msgstr "发送链接到个人" -#: js/share.js:190 +#: js/share.js:174 msgid "Send" msgstr "发送" -#: js/share.js:194 +#: js/share.js:178 msgid "Set expiration date" msgstr "设置过期日期" -#: js/share.js:195 +#: js/share.js:179 msgid "Expiration date" msgstr "过期日期" -#: js/share.js:227 +#: js/share.js:211 msgid "Share via email:" msgstr "通过Email共享" -#: js/share.js:229 +#: js/share.js:213 msgid "No people found" msgstr "未找到此人" -#: js/share.js:256 +#: js/share.js:240 msgid "Resharing is not allowed" msgstr "不允许二次共享" -#: js/share.js:292 +#: js/share.js:276 msgid "Shared in {item} with {user}" msgstr "在{item} 与 {user}共享。" -#: js/share.js:313 +#: js/share.js:297 msgid "Unshare" msgstr "取消共享" -#: js/share.js:325 +#: js/share.js:309 msgid "can edit" msgstr "可以修改" -#: js/share.js:327 +#: js/share.js:311 msgid "access control" msgstr "访问控制" -#: js/share.js:330 +#: js/share.js:314 msgid "create" msgstr "创建" -#: js/share.js:333 +#: js/share.js:317 msgid "update" msgstr "更新" -#: js/share.js:336 +#: js/share.js:320 msgid "delete" msgstr "删除" -#: js/share.js:339 +#: js/share.js:323 msgid "share" msgstr "共享" -#: js/share.js:373 js/share.js:569 +#: js/share.js:357 js/share.js:553 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:582 +#: js/share.js:566 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:594 +#: js/share.js:578 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:609 +#: js/share.js:593 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:620 +#: js/share.js:604 msgid "Email sent" msgstr "邮件已发送" @@ -386,11 +387,11 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "更新不成功。请汇报将此问题汇报给 ownCloud 社区。" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "更新成功。正在重定向至 ownCloud。" #: lostpassword/controller.php:48 msgid "ownCloud password reset" @@ -412,7 +413,7 @@ msgstr "重置邮件已发送。" msgid "Request failed!" msgstr "请求失败!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:41 #: templates/login.php:28 msgid "Username" msgstr "用户名" @@ -473,85 +474,86 @@ msgstr "编辑分类" msgid "Add" msgstr "添加" -#: templates/installation.php:23 templates/installation.php:30 +#: templates/installation.php:24 templates/installation.php:31 msgid "Security Warning" msgstr "安全警告" -#: templates/installation.php:24 +#: templates/installation.php:25 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "随机数生成器无效,请启用PHP的OpenSSL扩展" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "没有安全随机码生成器,攻击者可能会猜测密码重置信息从而窃取您的账户" -#: templates/installation.php:31 +#: templates/installation.php:32 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "您的数据目录和文件可能可以直接被互联网访问,因为 .htaccess 并未正常工作。" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "关于如何配置服务器,请参见 此文档。" -#: templates/installation.php:36 +#: templates/installation.php:37 msgid "Create an admin account" msgstr "创建管理员账号" -#: templates/installation.php:52 +#: templates/installation.php:55 msgid "Advanced" msgstr "高级" -#: templates/installation.php:54 +#: templates/installation.php:57 msgid "Data folder" msgstr "数据目录" -#: templates/installation.php:61 +#: templates/installation.php:66 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:66 templates/installation.php:77 -#: templates/installation.php:87 templates/installation.php:97 +#: templates/installation.php:71 templates/installation.php:83 +#: templates/installation.php:94 templates/installation.php:105 +#: templates/installation.php:117 msgid "will be used" msgstr "将被使用" -#: templates/installation.php:109 +#: templates/installation.php:129 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:113 +#: templates/installation.php:134 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:117 +#: templates/installation.php:139 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:125 +#: templates/installation.php:149 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:131 +#: templates/installation.php:156 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:136 +#: templates/installation.php:162 msgid "Finish setup" msgstr "安装完成" -#: templates/layout.guest.php:33 +#: templates/layout.guest.php:40 msgid "web services under your control" msgstr "由您掌控的网络服务" -#: templates/layout.user.php:48 +#: templates/layout.user.php:58 msgid "Log out" msgstr "注销" @@ -583,7 +585,7 @@ msgstr "登录" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "其他登录方式" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index c62eacf1cb..1ff4b293e7 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 03:20+0000\n" +"Last-Translator: Xuetian Weng \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" @@ -75,19 +75,19 @@ msgstr "写入磁盘失败" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "没有足够的存储空间" #: ajax/upload.php:82 msgid "Invalid directory." msgstr "无效文件夹。" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "文件" #: js/fileactions.js:125 msgid "Delete permanently" -msgstr "" +msgstr "永久删除" #: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 msgid "Delete" @@ -97,8 +97,8 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "操作等待中" @@ -128,7 +128,7 @@ msgstr "撤销" #: js/filelist.js:323 msgid "perform delete operation" -msgstr "" +msgstr "进行删除操作" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -146,80 +146,80 @@ msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被 #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "您的存储空间已满,文件将无法更新或同步!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "您的存储空间即将用完 ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "关闭" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} 个文件上传中" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL不能为空" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "名称" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "大小" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "修改日期" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 个文件" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} 个文件" @@ -277,7 +277,7 @@ msgstr "来自链接" #: templates/index.php:40 msgid "Deleted files" -msgstr "" +msgstr "删除文件" #: templates/index.php:46 msgid "Cancel upload" @@ -285,7 +285,7 @@ msgstr "取消上传" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "您没有写权限" #: templates/index.php:60 msgid "Nothing in here. Upload something!" @@ -319,4 +319,4 @@ msgstr "当前扫描" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "正在更新文件系统缓存..." diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index b9d48e1dce..1807d6a5f3 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# CyberCowBoy , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 08:40+0000\n" +"Last-Translator: ccb \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,16 +25,16 @@ msgstr "加密" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "文件加密已启用." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "如下的文件类型将不会被加密:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "从加密中排除如下的文件类型:" #: templates/settings.php:12 msgid "None" -msgstr "None" +msgstr "无" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index b711f925b4..0b6373114e 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# CyberCowBoy , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 08:50+0000\n" +"Last-Translator: ccb \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +21,24 @@ msgstr "" #: ajax/delete.php:40 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "无法彻底删除文件%s" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "无法恢复%s" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "" +msgstr "执行恢复操作" #: js/trash.js:34 msgid "delete file permanently" -msgstr "" +msgstr "彻底删除文件" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "永久删除" #: js/trash.js:174 templates/index.php:17 msgid "Name" @@ -45,7 +46,7 @@ msgstr "名称" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "已删除" #: js/trash.js:184 msgid "1 folder" @@ -65,11 +66,11 @@ msgstr "{count} 个文件" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "这里没有东西. 你的回收站是空的!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "恢复" #: templates/index.php:30 templates/index.php:31 msgid "Delete" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 55b00867f9..cc78ca65bf 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -4,14 +4,15 @@ # # Translators: # , 2012. +# marguerite su , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 18:12+0000\n" +"Last-Translator: marguerite su \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" @@ -43,33 +44,33 @@ msgstr "应用" msgid "Admin" msgstr "管理" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "回到文件" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大,无法生成 zip 文件。" #: helper.php:228 msgid "couldn't be determined" -msgstr "" +msgstr "无法确定" #: json.php:28 msgid "Application is not enabled" -msgstr "不需要程序" +msgstr "应用程序未启用" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "认证错误" +msgstr "认证出错" #: json.php:51 msgid "Token expired. Please reload page." @@ -85,55 +86,55 @@ msgstr "文本" #: search/provider/file.php:29 msgid "Images" -msgstr "图像" +msgstr "图片" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "请设置一个管理员用户名。" #: setup.php:37 msgid "Set an admin password." -msgstr "" +msgstr "请设置一个管理员密码。" #: setup.php:40 msgid "Specify a data folder." -msgstr "" +msgstr "请指定一个数据目录。" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s 输入数据库用户名。" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s 输入数据库名称。" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s 您不能在数据库名称中使用英文句号。" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s 设置数据库所在主机。" #: setup.php:128 setup.php:320 setup.php:365 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL 数据库用户名和/或密码无效" #: setup.php:129 setup.php:152 setup.php:229 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "你需要输入一个数据库中已有的账户或管理员账户。" #: setup.php:151 setup.php:453 setup.php:520 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Oracle 数据库用户名和/或密码无效" #: setup.php:228 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "MySQL 数据库用户名和/或密码无效" #: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 #: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 @@ -141,53 +142,53 @@ msgstr "" #: setup.php:610 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "数据库错误:\"%s\"" #: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 #: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 #: setup.php:572 setup.php:588 setup.php:596 setup.php:605 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "冲突命令为:\"%s\"" #: setup.php:299 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL 用户 '%s'@'localhost' 已存在。" #: setup.php:300 msgid "Drop this user from MySQL" -msgstr "" +msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户" #: setup.php:305 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL 用户 '%s'@'%%' 已存在" #: setup.php:306 msgid "Drop this user from MySQL." -msgstr "" +msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户。" #: setup.php:579 setup.php:611 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "冲突命令为:\"%s\",名称:%s,密码:%s" #: setup.php:631 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL 用户名和/或密码无效:%s" #: setup.php:849 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." #: setup.php:850 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "请认真检查安装指南." #: template.php:113 msgid "seconds ago" @@ -235,7 +236,7 @@ msgstr "%d 月前" #: template.php:123 msgid "last year" -msgstr "上年" +msgstr "去年" #: template.php:124 msgid "years ago" @@ -244,7 +245,7 @@ msgstr "几年前" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s 已存在. 点此 获取更多信息" +msgstr "%s 已存在。点此 获取更多信息" #: updater.php:81 msgid "up to date" @@ -252,7 +253,7 @@ msgstr "已更新。" #: updater.php:84 msgid "updates check is disabled" -msgstr "检查更新功能被关闭。" +msgstr "更新检查功能被禁用。" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 2262b78d95..2fd9d8ee34 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -4,18 +4,20 @@ # # Translators: # , 2012. +# CyberCowBoy , 2013. # Dianjin Wang <1132321739qq@gmail.com>, 2012-2013. # Phoenix Nemo <>, 2012. # , 2012. # , 2012. +# , 2013. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 09:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 18:12+0000\n" +"Last-Translator: ccb \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" @@ -34,7 +36,7 @@ msgstr "认证错误" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" -msgstr "" +msgstr "无法修改显示名称" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -88,11 +90,11 @@ msgstr "无法从组%s中移除用户" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "无法更新 app。" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "更新至 {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -104,15 +106,15 @@ msgstr "启用" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "请稍等...." #: js/apps.js:84 msgid "Updating...." -msgstr "" +msgstr "正在更新...." #: js/apps.js:87 msgid "Error while updating app" -msgstr "" +msgstr "更新 app 时出错" #: js/apps.js:87 msgid "Error" @@ -120,7 +122,7 @@ msgstr "错误" #: js/apps.js:90 msgid "Updated" -msgstr "" +msgstr "已更新" #: js/personal.js:99 msgid "Saving..." @@ -136,7 +138,7 @@ msgstr "撤销" #: js/users.js:62 msgid "Unable to remove user" -msgstr "" +msgstr "无法移除用户" #: js/users.js:75 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 @@ -153,19 +155,19 @@ msgstr "删除" #: js/users.js:191 msgid "add group" -msgstr "" +msgstr "添加组" #: js/users.js:352 msgid "A valid username must be provided" -msgstr "" +msgstr "必须提供合法的用户名" #: js/users.js:353 js/users.js:359 js/users.js:374 msgid "Error creating user" -msgstr "" +msgstr "创建用户出错" #: js/users.js:358 msgid "A valid password must be provided" -msgstr "" +msgstr "必须提供合法的密码" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -186,32 +188,32 @@ msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的. #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "设置警告" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "请认真检查安装指南." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "模块'文件信息'丢失" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "本地化无法工作" #: templates/admin.php:63 #, php-format @@ -219,11 +221,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "此ownCloud服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "因特网连接无法工作" #: templates/admin.php:78 msgid "" @@ -233,90 +235,90 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "此ownCloud服务器上没有可用的因特网连接. 这意味着某些特性例如挂载外部存储器, 提醒更新或安装第三方应用无法工作. 从远程访问文件和发送提醒电子邮件可能也无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接." #: templates/admin.php:92 msgid "Cron" -msgstr "" +msgstr "计划任务" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "每个页面加载后执行一个任务" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件" #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "共享" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "启用共享API" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "允许应用软件使用共享API" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "允许链接" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "允许用户使用连接公开共享项目" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "允许再次共享" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "允许用户将共享给他们的项目再次共享" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "允许用户向任何人共享" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "允许用户只向同组用户共享" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "安全" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "强制使用 HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "强制客户端通过加密连接连接到 ownCloud。" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "请经由HTTPS连接到这个ownCloud实例来启用或禁用强制SSL." #: templates/admin.php:195 msgid "Log" -msgstr "" +msgstr "日志" #: templates/admin.php:196 msgid "Log level" -msgstr "" +msgstr "日志级别" #: templates/admin.php:223 msgid "More" @@ -395,7 +397,7 @@ msgstr "安装应用进行文件同步" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "" +msgstr "再次显示首次运行向导" #: templates/personal.php:37 templates/users.php:23 templates/users.php:79 msgid "Password" @@ -423,19 +425,19 @@ msgstr "修改密码" #: templates/personal.php:56 templates/users.php:78 msgid "Display Name" -msgstr "" +msgstr "显示名称" #: templates/personal.php:57 msgid "Your display name was changed" -msgstr "" +msgstr "您的显示名称已修改" #: templates/personal.php:58 msgid "Unable to change your display name" -msgstr "" +msgstr "无法修改您的显示名称" #: templates/personal.php:61 msgid "Change display name" -msgstr "" +msgstr "修改显示名称" #: templates/personal.php:70 msgid "Email" @@ -467,7 +469,7 @@ msgstr "用该地址来连接文件管理器中的 ownCloud" #: templates/users.php:21 templates/users.php:77 msgid "Login Name" -msgstr "" +msgstr "登录名称" #: templates/users.php:32 msgid "Create" @@ -491,11 +493,11 @@ msgstr "存储" #: templates/users.php:95 msgid "change display name" -msgstr "" +msgstr "修改显示名称" #: templates/users.php:99 msgid "set new password" -msgstr "" +msgstr "设置新密码" #: templates/users.php:134 msgid "Default" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index a760f750ca..5da5b0dba7 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2013-03-13 06:00+0000\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 09:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -190,7 +190,7 @@ msgstr "" #: js/files.js:954 templates/index.php:68 msgid "Name" -msgstr "" +msgstr "名稱" #: js/files.js:955 templates/index.php:79 msgid "Size" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index b213e0bbd8..c1002a17a4 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dennis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 09:10+0000\n" +"Last-Translator: dtsang29 \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +20,15 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "" +msgstr "加密" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "檔案加密已開啟" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "以下文件類別將不會被加密" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" @@ -35,4 +36,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "" +msgstr "空" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index fb4c6a8aca..3199622577 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2013-03-13 02:00+0000\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 09:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "" +msgstr "名稱" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" diff --git a/l10n/zh_HK/files_versions.po b/l10n/zh_HK/files_versions.po index 893fb184e9..9d6dd7c46e 100644 --- a/l10n/zh_HK/files_versions.po +++ b/l10n/zh_HK/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dennis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 09:10+0000\n" +"Last-Translator: dtsang29 \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: history.php:40 msgid "success" -msgstr "" +msgstr "成功" #: history.php:42 #, php-format @@ -33,24 +34,24 @@ msgstr "" #: history.php:49 msgid "failure" -msgstr "" +msgstr "失敗" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" -msgstr "" +msgstr "沒有以往版本" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "版本" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index f5a83b73b2..dfcf588c57 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2013-03-13 01:20+0000\n" +"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"PO-Revision-Date: 2013-03-14 02:50+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -184,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "" +msgstr "連接埠" #: templates/settings.php:72 msgid "Backup (Replica) Host" diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index e55caa1597..ab237cfe2e 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -16,6 +16,7 @@ "Files" => "Dosyalar", "Text" => "Metin", "Images" => "Resimler", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "seconds ago" => "saniye önce", "1 minute ago" => "1 dakika önce", "%d minutes ago" => "%d dakika önce", diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index c3af288b72..b79fdfcca1 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -9,12 +9,34 @@ "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" => "认证错误", +"couldn't be determined" => "无法确定", +"Application is not enabled" => "应用程序未启用", +"Authentication error" => "认证出错", "Token expired. Please reload page." => "Token 过期,请刷新页面。", "Files" => "文件", "Text" => "文本", -"Images" => "图像", +"Images" => "图片", +"Set an admin username." => "请设置一个管理员用户名。", +"Set an admin password." => "请设置一个管理员密码。", +"Specify a data folder." => "请指定一个数据目录。", +"%s enter the database username." => "%s 输入数据库用户名。", +"%s enter the database name." => "%s 输入数据库名称。", +"%s you may not use dots in the database name" => "%s 您不能在数据库名称中使用英文句号。", +"%s set the database host." => "%s 设置数据库所在主机。", +"PostgreSQL username and/or password not valid" => "PostgreSQL 数据库用户名和/或密码无效", +"You need to enter either an existing account or the administrator." => "你需要输入一个数据库中已有的账户或管理员账户。", +"Oracle username and/or password not valid" => "Oracle 数据库用户名和/或密码无效", +"MySQL username and/or password not valid" => "MySQL 数据库用户名和/或密码无效", +"DB Error: \"%s\"" => "数据库错误:\"%s\"", +"Offending command was: \"%s\"" => "冲突命令为:\"%s\"", +"MySQL user '%s'@'localhost' exists already." => "MySQL 用户 '%s'@'localhost' 已存在。", +"Drop this user from MySQL" => "建议从 MySQL 数据库中丢弃 Drop 此用户", +"MySQL user '%s'@'%%' already exists" => "MySQL 用户 '%s'@'%%' 已存在", +"Drop this user from MySQL." => "建议从 MySQL 数据库中丢弃 Drop 此用户。", +"Offending command was: \"%s\", name: %s, password: %s" => "冲突命令为:\"%s\",名称:%s,密码:%s", +"MS SQL username and/or password not valid: %s" => "MS SQL 用户名和/或密码无效:%s", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏.", +"Please double check the installation guides." => "请认真检查安装指南.", "seconds ago" => "几秒前", "1 minute ago" => "1分钟前", "%d minutes ago" => "%d 分钟前", @@ -25,10 +47,10 @@ "%d days ago" => "%d 天前", "last month" => "上月", "%d months ago" => "%d 月前", -"last year" => "上年", +"last year" => "去年", "years ago" => "几年前", -"%s is available. Get more information" => "%s 已存在. 点此 获取更多信息", +"%s is available. Get more information" => "%s 已存在。点此 获取更多信息", "up to date" => "已更新。", -"updates check is disabled" => "检查更新功能被关闭。", +"updates check is disabled" => "更新检查功能被禁用。", "Could not find category \"%s\"" => "无法找到分类 \"%s\"" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 6307bdc61b..cf3d97da08 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -43,7 +43,7 @@ "Module 'fileinfo' missing" => "Modul 'fileinfo' fehlt ", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", "Locale not working" => "Ländereinstellung funktioniert nicht", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf ihrem System zu installieren.", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf ihrem System zu installieren.", "Internet connection not working" => "Keine Netzwerkverbindung", "This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Dieser ownCloud Server hat keine funktionierende Netzwerkverbindung. Dies bedeutet das einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Netzwerkverbindung für diesen Server zu aktivieren wenn Du alle Funktionen von ownCloud nutzen möchtest.", "Cron" => "Cron", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index dd70366557..02b02f2066 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -38,10 +38,21 @@ "Security Warning" => "Güvenlik Uyarisi", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. Owncloud tarafından sağlanan .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz.", "Setup Warning" => "Kurulum Uyarısı", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp", +"Locale not working" => "Locale çalışmıyor.", +"Internet connection not working" => "İnternet bağlantısı çalışmıyor", +"Cron" => "Cron", +"Sharing" => "Paylaşım", +"Enable Share API" => "Paylaşım API'sini etkinleştir.", +"Allow apps to use the Share API" => "Uygulamaların paylaşım API'sini kullanmasına izin ver", +"Allow links" => "Bağlantıları izin ver.", +"Allow users to share items to the public with links" => "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantılara izin ver", "Allow resharing" => "Paylaşıma izin ver", "Security" => "Güvenlik", +"Enforce HTTPS" => "HTTPS bağlantısına zorla", "Log" => "Kayıtlar", +"Log level" => "Günlük seviyesi", "More" => "Daha fazla", "Version" => "Sürüm", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Geliştirilen TarafownCloud community, the source code is altında lisanslanmıştır AGPL.", @@ -57,6 +68,7 @@ "Forum" => "Forum", "Bugtracker" => "Hata Takip Sistemi", "Commercial Support" => "Ticari Destek", +"You have used %s of the available %s" => "Kullandığınız:%s seçilebilecekler: %s", "Get the apps to sync your files" => "Dosyalarınızı senkronize etmek için uygulamayı indirin", "Show First Run Wizard again" => "İlk Çalıştırma Sihirbazını yeniden göster", "Password" => "Parola", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 226ffb58bc..a4b4ae7c57 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,6 +1,7 @@ "无法从应用商店载入列表", "Authentication error" => "认证错误", +"Unable to change display name" => "无法修改显示名称", "Group already exists" => "已存在该组", "Unable to add group" => "无法添加组", "Could not enable app. " => "无法开启App", @@ -13,18 +14,57 @@ "Admins can't remove themself from the admin group" => "管理员不能将自己移出管理组。", "Unable to add user to group %s" => "无法把用户添加到组 %s", "Unable to remove user from group %s" => "无法从组%s中移除用户", +"Couldn't update app." => "无法更新 app。", +"Update to {appversion}" => "更新至 {appversion}", "Disable" => "禁用", "Enable" => "启用", +"Please wait...." => "请稍等....", +"Updating...." => "正在更新....", +"Error while updating app" => "更新 app 时出错", "Error" => "错误", +"Updated" => "已更新", "Saving..." => "正在保存", "deleted" => "已经删除", "undo" => "撤销", +"Unable to remove user" => "无法移除用户", "Groups" => "组", "Group Admin" => "组管理员", "Delete" => "删除", +"add group" => "添加组", +"A valid username must be provided" => "必须提供合法的用户名", +"Error creating user" => "创建用户出错", +"A valid password must be provided" => "必须提供合法的密码", "__language_name__" => "简体中文", "Security Warning" => "安全警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器根目录以外。", +"Setup Warning" => "设置警告", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏.", +"Please double check the installation guides." => "请认真检查安装指南.", +"Module 'fileinfo' missing" => "模块'文件信息'丢失", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果.", +"Locale not working" => "本地化无法工作", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "此ownCloud服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s", +"Internet connection not working" => "因特网连接无法工作", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "此ownCloud服务器上没有可用的因特网连接. 这意味着某些特性例如挂载外部存储器, 提醒更新或安装第三方应用无法工作. 从远程访问文件和发送提醒电子邮件可能也无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接.", +"Cron" => "计划任务", +"Execute one task with each page loaded" => "每个页面加载后执行一个任务", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件", +"Sharing" => "共享", +"Enable Share API" => "启用共享API", +"Allow apps to use the Share API" => "允许应用软件使用共享API", +"Allow links" => "允许链接", +"Allow users to share items to the public with links" => "允许用户使用连接公开共享项目", +"Allow resharing" => "允许再次共享", +"Allow users to share items shared with them again" => "允许用户将共享给他们的项目再次共享", +"Allow users to share with anyone" => "允许用户向任何人共享", +"Allow users to only share with users in their groups" => "允许用户只向同组用户共享", +"Security" => "安全", +"Enforce HTTPS" => "强制使用 HTTPS", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "强制客户端通过加密连接连接到 ownCloud。", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "请经由HTTPS连接到这个ownCloud实例来启用或禁用强制SSL.", +"Log" => "日志", +"Log level" => "日志级别", "More" => "更多", "Version" => "版本", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "由ownCloud社区开发, 源代码AGPL许可证下发布。", @@ -42,12 +82,17 @@ "Commercial Support" => "商业支持", "You have used %s of the available %s" => "你已使用 %s,有效空间 %s", "Get the apps to sync your files" => "安装应用进行文件同步", +"Show First Run Wizard again" => "再次显示首次运行向导", "Password" => "密码", "Your password was changed" => "密码已修改", "Unable to change your password" => "无法修改密码", "Current password" => "当前密码", "New password" => "新密码", "Change password" => "修改密码", +"Display Name" => "显示名称", +"Your display name was changed" => "您的显示名称已修改", +"Unable to change your display name" => "无法修改您的显示名称", +"Change display name" => "修改显示名称", "Email" => "电子邮件", "Your email address" => "您的电子邮件", "Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复功能", @@ -55,10 +100,13 @@ "Help translate" => "帮助翻译", "WebDAV" => "WebDAV", "Use this address to connect to your ownCloud in your file manager" => "用该地址来连接文件管理器中的 ownCloud", +"Login Name" => "登录名称", "Create" => "创建", "Default Storage" => "默认存储", "Unlimited" => "无限", "Other" => "其它", "Storage" => "存储", +"change display name" => "修改显示名称", +"set new password" => "设置新密码", "Default" => "默认" ); From e37e884d7a861f9321e993711c17ac5b1386b116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 15 Mar 2013 11:06:51 +0100 Subject: [PATCH 53/61] add backtick for db queries to prevent postgresql errors --- apps/files_versions/lib/versions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index f99e26a091..5fc26fd090 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -53,7 +53,7 @@ class Storage { * @return mixed versions size or false if no versions size is stored */ private static function getVersionsSize($user) { - $query = \OC_DB::prepare('SELECT size FROM *PREFIX*files_versions WHERE user=?'); + $query = \OC_DB::prepare('SELECT `size` FROM `*PREFIX*files_versions` WHERE `user`=?'); $result = $query->execute(array($user))->fetchAll(); if ($result) { @@ -70,9 +70,9 @@ class Storage { */ private static function setVersionsSize($user, $size) { if ( self::getVersionsSize($user) === false) { - $query = \OC_DB::prepare('INSERT INTO *PREFIX*files_versions (size, user) VALUES (?, ?)'); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*files_versions` (`size`, `user`) VALUES (?, ?)'); }else { - $query = \OC_DB::prepare('UPDATE *PREFIX*files_versions SET size=? WHERE user=?'); + $query = \OC_DB::prepare('UPDATE `*PREFIX*files_versions` SET `size`=? WHERE `user`=?'); } $query->execute(array($size, $user)); } From 418fb98c4039f4a88edc545f50d38fa21a6758be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 15 Mar 2013 11:24:13 +0100 Subject: [PATCH 54/61] remove backticks around table names --- apps/files_versions/lib/versions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 5fc26fd090..6da0e43454 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -53,7 +53,7 @@ class Storage { * @return mixed versions size or false if no versions size is stored */ private static function getVersionsSize($user) { - $query = \OC_DB::prepare('SELECT `size` FROM `*PREFIX*files_versions` WHERE `user`=?'); + $query = \OC_DB::prepare('SELECT `size` FROM *PREFIX*files_versions WHERE `user`=?'); $result = $query->execute(array($user))->fetchAll(); if ($result) { @@ -70,9 +70,9 @@ class Storage { */ private static function setVersionsSize($user, $size) { if ( self::getVersionsSize($user) === false) { - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*files_versions` (`size`, `user`) VALUES (?, ?)'); + $query = \OC_DB::prepare('INSERT INTO *PREFIX*files_versions (`size`, `user`) VALUES (?, ?)'); }else { - $query = \OC_DB::prepare('UPDATE `*PREFIX*files_versions` SET `size`=? WHERE `user`=?'); + $query = \OC_DB::prepare('UPDATE *PREFIX*files_versions SET `size`=? WHERE `user`=?'); } $query->execute(array($size, $user)); } From 387be374270dc1ac3669325fee60d35889a85b6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Sch=C3=B6nebeck?= Date: Fri, 15 Mar 2013 12:11:42 +0100 Subject: [PATCH 55/61] Filter display of blacklisted files Blacklisted files like ".htaccess" and ".git" should not only be blacklisted for upload and rename, but they should also not be displayed in the directory listings. I needed this personally to hide ".git" folders in shared folders. Its also a simple implementation of feature requests like http://forum.owncloud.org/viewtopic.php?f=4&t=3279 and http://forum.owncloud.org/viewtopic.php?f=3&t=5708 --- lib/files/cache/scanner.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index 88f208547f..f285f3bed1 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -151,6 +151,7 @@ class Scanner { private function isIgnoredFile($file) { if ($file === '.' || $file === '..' || pathinfo($file, PATHINFO_EXTENSION) === 'part' + || \OC\Files\Filesystem::isFileBlacklisted($file) ) { return true; } From d2b3a9fb3bfa4d434d7d797019ec0cadec392a2b Mon Sep 17 00:00:00 2001 From: sherbrecher Date: Fri, 15 Mar 2013 15:09:55 +0100 Subject: [PATCH 56/61] Update settings.php fixed overlap of input controls (root cert import) see issue: https://github.com/owncloud/apps/issues/767 --- apps/files_external/templates/settings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 367ce2bc03..5a7b25d59a 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -109,8 +109,8 @@ - + - \ No newline at end of file + From 76bb5221c7a1b71f0d617c55e844c51e889a2c70 Mon Sep 17 00:00:00 2001 From: Henning Oschwald Date: Fri, 15 Mar 2013 12:03:11 +0100 Subject: [PATCH 57/61] Restores keyboard accessibility for expandable settings area. Tabindex="0" makes the element focussable with the keyboard and role="link" tells assistive technologies that this clickable span element is supposed to be presented as a hyperlink. --- core/templates/layout.user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 982efb412b..9af56b72c3 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -38,7 +38,7 @@ src="" alt="ownCloud" />
    - + From c69dc3483a937e121f7102b95c43d969ac2fb7e1 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 16 Mar 2013 14:28:42 -0400 Subject: [PATCH 58/61] Add error handling to the file cache upgrade --- lib/files/cache/upgrade.php | 40 ++++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/lib/files/cache/upgrade.php b/lib/files/cache/upgrade.php index 811d82d743..230690d35c 100644 --- a/lib/files/cache/upgrade.php +++ b/lib/files/cache/upgrade.php @@ -39,9 +39,10 @@ class Upgrade { if ($row = $this->legacy->get($path)) { $data = $this->getNewData($row); - $this->insert($data); - - $this->upgradeChilds($data['id'], $mode); + if ($data) { + $this->insert($data); + $this->upgradeChilds($data['id'], $mode); + } } } @@ -53,9 +54,11 @@ class Upgrade { foreach ($children as $child) { $childData = $this->getNewData($child); \OC_Hook::emit('\OC\Files\Cache\Upgrade', 'migrate_path', $child['path']); - $this->insert($childData); - if ($mode == Scanner::SCAN_RECURSIVE) { - $this->upgradeChilds($child['id']); + if ($childData) { + $this->insert($childData); + if ($mode == Scanner::SCAN_RECURSIVE) { + $this->upgradeChilds($child['id']); + } } } } @@ -95,20 +98,25 @@ class Upgrade { */ function getNewData($data) { $newData = $data; - list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($data['path']); /** * @var \OC\Files\Storage\Storage $storage * @var string $internalPath; */ - $newData['path_hash'] = md5($internalPath); - $newData['path'] = $internalPath; - $newData['storage'] = $this->getNumericId($storage); - $newData['parent'] = ($internalPath === '') ? -1 : $data['parent']; - $newData['permissions'] = ($data['writable']) ? \OCP\PERMISSION_ALL : \OCP\PERMISSION_READ; - $newData['storage_object'] = $storage; - $newData['mimetype'] = $this->getMimetypeId($newData['mimetype'], $storage); - $newData['mimepart'] = $this->getMimetypeId($newData['mimepart'], $storage); - return $newData; + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($data['path']); + if ($storage) { + $newData['path_hash'] = md5($internalPath); + $newData['path'] = $internalPath; + $newData['storage'] = $this->getNumericId($storage); + $newData['parent'] = ($internalPath === '') ? -1 : $data['parent']; + $newData['permissions'] = ($data['writable']) ? \OCP\PERMISSION_ALL : \OCP\PERMISSION_READ; + $newData['storage_object'] = $storage; + $newData['mimetype'] = $this->getMimetypeId($newData['mimetype'], $storage); + $newData['mimepart'] = $this->getMimetypeId($newData['mimepart'], $storage); + return $newData; + } else { + \OC_Log::write('core', 'Unable to migrate data from old cache for '.$data['path'].' because the storage was not found', \OC_Log::ERROR); + return false; + } } /** From 1427af4a22eced7081b8982657014dfe28a7b46d Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 16 Mar 2013 22:18:26 +0100 Subject: [PATCH 59/61] [tx-robot] updated from transifex --- apps/files/l10n/el.php | 1 + apps/files/l10n/fa.php | 8 +- apps/files_external/l10n/zh_CN.php | 2 + apps/files_trashbin/l10n/fa.php | 9 +- apps/user_ldap/l10n/fa.php | 1 + apps/user_ldap/l10n/zh_CN.php | 37 ++++++ core/l10n/lv.php | 2 +- l10n/ar/files.po | 44 +++---- l10n/bg_BG/files.po | 44 +++---- l10n/bn_BD/files.po | 44 +++---- l10n/ca/files.po | 44 +++---- l10n/cs_CZ/files.po | 44 +++---- l10n/da/files.po | 44 +++---- l10n/de/files.po | 4 +- l10n/de_DE/files.po | 4 +- l10n/el/files.po | 49 +++---- l10n/eo/files.po | 44 +++---- l10n/es/files.po | 44 +++---- l10n/es_AR/files.po | 4 +- l10n/et_EE/files.po | 44 +++---- l10n/eu/files.po | 44 +++---- l10n/fa/core.po | 4 +- l10n/fa/files.po | 18 +-- l10n/fa/files_trashbin.po | 21 +-- l10n/fa/lib.po | 17 +-- l10n/fa/settings.po | 26 ++-- l10n/fa/user_ldap.po | 124 +++++++++--------- l10n/fi_FI/files.po | 44 +++---- l10n/fr/files.po | 4 +- l10n/gl/files.po | 44 +++---- l10n/he/files.po | 44 +++---- l10n/hr/files.po | 44 +++---- l10n/hu_HU/files.po | 44 +++---- l10n/ia/files.po | 44 +++---- l10n/id/files.po | 44 +++---- l10n/is/files.po | 44 +++---- l10n/it/files.po | 44 +++---- l10n/ja_JP/files.po | 44 +++---- l10n/ka_GE/files.po | 44 +++---- l10n/ko/files.po | 44 +++---- l10n/lb/files.po | 44 +++---- l10n/lt_LT/files.po | 44 +++---- l10n/lv/core.po | 185 +++++++++++++------------- l10n/lv/files.po | 44 +++---- l10n/lv/files_sharing.po | 14 +- l10n/lv/settings.po | 6 +- l10n/mk/files.po | 44 +++---- l10n/ms_MY/files.po | 44 +++---- l10n/nb_NO/files.po | 6 +- l10n/nl/files.po | 44 +++---- l10n/nn_NO/files.po | 44 +++---- l10n/oc/files.po | 44 +++---- l10n/pl/files.po | 44 +++---- l10n/pt_BR/files.po | 6 +- l10n/pt_PT/core.po | 183 +++++++++++++------------- l10n/pt_PT/files.po | 44 +++---- l10n/ro/files.po | 44 +++---- l10n/ru/files.po | 44 +++---- l10n/ru_RU/files.po | 44 +++---- l10n/si_LK/files.po | 44 +++---- l10n/sk_SK/files.po | 44 +++---- l10n/sl/files.po | 4 +- l10n/sr/files.po | 44 +++---- l10n/sv/files.po | 44 +++---- l10n/ta_LK/files.po | 44 +++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 44 +++---- l10n/tr/files.po | 4 +- l10n/uk/files.po | 44 +++---- l10n/vi/files.po | 44 +++---- l10n/zh_CN.GB2312/files.po | 44 +++---- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 15 ++- l10n/zh_CN/user_ldap.po | 196 ++++++++++++++-------------- l10n/zh_TW/files.po | 44 +++---- lib/l10n/fa.php | 1 + settings/l10n/fa.php | 10 ++ settings/l10n/lv.php | 2 +- 89 files changed, 1524 insertions(+), 1453 deletions(-) diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 63759f1201..7682ae24b0 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -61,6 +61,7 @@ "From link" => "Από σύνδεσμο", "Deleted files" => "Διαγραμμένα αρχεία", "Cancel upload" => "Ακύρωση αποστολής", +"You don’t have write permissions here." => "Δεν έχετε δικαιώματα εγγραφής εδώ.", "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Μεταφορτώστε κάτι!", "Download" => "Λήψη", "Unshare" => "Διακοπή κοινής χρήσης", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index b9a88b5791..e507ee715c 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -10,6 +10,7 @@ "No file was uploaded" => "هیچ فایلی بارگذاری نشده", "Missing a temporary folder" => "یک پوشه موقت گم شده است", "Failed to write to disk" => "نوشتن بر روی دیسک سخت ناموفق بود", +"Not enough storage available" => "فضای کافی در دسترس نیست", "Invalid directory." => "فهرست راهنما نامعتبر می باشد.", "Files" => "فایل ها", "Delete permanently" => "حذف قطعی", @@ -22,9 +23,12 @@ "cancel" => "لغو", "replaced {new_name} with {old_name}" => "{نام_جدید} با { نام_قدیمی} جایگزین شد.", "undo" => "بازگشت", +"perform delete operation" => "انجام عمل حذف", "'.' is an invalid file name." => "'.' یک نام پرونده نامعتبر است.", "File name cannot be empty." => "نام پرونده نمی تواند خالی باشد.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند.", +"Your storage is full, files can not be updated or synced anymore!" => "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!", +"Your storage is almost full ({usedSpacePercent}%)" => "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد.", "Unable to upload your file as it is a directory or has 0 bytes" => "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد", "Upload Error" => "خطا در بار گذاری", @@ -57,11 +61,13 @@ "From link" => "از پیوند", "Deleted files" => "فایل های حذف شده", "Cancel upload" => "متوقف کردن بار گذاری", +"You don’t have write permissions here." => "شما اجازه ی نوشتن در اینجا را ندارید", "Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.", "Download" => "بارگیری", "Unshare" => "لغو اشتراک", "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." => "پرونده ها در حال بازرسی هستند لطفا صبر کنید", -"Current scanning" => "بازرسی کنونی" +"Current scanning" => "بازرسی کنونی", +"Upgrading filesystem cache..." => "بهبود فایل سیستمی ذخیره گاه..." ); diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 1860b6f70d..7f95320511 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -8,9 +8,11 @@ "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。", "External Storage" => "外部存储", "Folder name" => "目录名称", +"External storage" => "外部存储", "Configuration" => "配置", "Options" => "选项", "Applicable" => "适用的", +"Add storage" => "添加存储", "None set" => "未设置", "All Users" => "所有用户", "Groups" => "组", diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 879ee722a6..57ca6d10d6 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -1,10 +1,17 @@ "%s را نمی توان برای همیشه حذف کرد", +"Couldn't restore %s" => "%s را نمی توان بازگرداند", +"perform restore operation" => "انجام عمل بازگرداندن", +"delete file permanently" => "حذف فایل برای همیشه", "Delete permanently" => "حذف قطعی", "Name" => "نام", +"Deleted" => "حذف شده", "1 folder" => "1 پوشه", "{count} folders" => "{ شمار} پوشه ها", "1 file" => "1 پرونده", "{count} files" => "{ شمار } فایل ها", +"Nothing in here. Your trash bin is empty!" => "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است.", "Restore" => "بازیابی", -"Delete" => "حذف" +"Delete" => "حذف", +"Deleted Files" => "فایلهای حذف شده" ); diff --git a/apps/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php index 7816ef7c6f..9a01a67703 100644 --- a/apps/user_ldap/l10n/fa.php +++ b/apps/user_ldap/l10n/fa.php @@ -11,6 +11,7 @@ "Add Server Configuration" => "افزودن پیکربندی سرور", "Host" => "میزبانی", "Password" => "رمز عبور", +"Group Filter" => "فیلتر گروه", "Port" => "درگاه", "in bytes" => "در بایت", "Help" => "راه‌نما" diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php index d494945e2e..1911734805 100644 --- a/apps/user_ldap/l10n/zh_CN.php +++ b/apps/user_ldap/l10n/zh_CN.php @@ -1,9 +1,24 @@ "未能删除服务器配置", +"The configuration is valid and the connection could be established!" => "配置有效,能够建立连接!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "配置有效但绑定失败。请检查服务器设置和认证信息。", +"The configuration is invalid. Please look in the ownCloud log for further details." => "配置无效。更多细节请查看 ownCloud 日志。", "Deletion failed" => "删除失败", +"Take over settings from recent server configuration?" => "从近期的服务器配置中导入设置?", +"Keep settings?" => "保留设置吗?", +"Cannot add server configuration" => "无法添加服务器配置", +"Connection test succeeded" => "连接测试成功", +"Connection test failed" => "连接测试失败", +"Do you really want to delete the current Server Configuration?" => "您真的想要删除当前服务器配置吗?", +"Confirm Deletion" => "确认删除", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "警告:应用 user_ldap 和 user_webdavauth 不兼容。您可能遭遇未预料的行为。请垂询您的系统管理员禁用其中一个。", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "警告: PHP LDAP 模块未安装,后端将无法工作。请请求您的系统管理员安装该模块。", +"Server configuration" => "服务器配置", +"Add Server Configuration" => "添加服务器配置", "Host" => "主机", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "可以忽略协议,但如要使用SSL,则需以ldaps://开头", "Base DN" => "Base DN", +"One Base DN per line" => "每行一个基本判别名", "You can specify Base DN for users and groups in the Advanced tab" => "您可以在高级选项卡里为用户和组指定Base DN", "User DN" => "User DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "客户端使用的DN必须与绑定的相同,比如uid=agent,dc=example,dc=com\n如需匿名访问,将DN和密码保留为空", @@ -18,21 +33,43 @@ "Group Filter" => "组过滤", "Defines the filter to apply, when retrieving groups." => "定义拉取组信息时的过滤器", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "无需占位符,例如\"objectClass=posixGroup\"", +"Connection Settings" => "连接设置", +"Configuration Active" => "现行配置", +"When unchecked, this configuration will be skipped." => "当反选后,此配置将被忽略。", "Port" => "端口", +"Backup (Replica) Host" => "备份 (镜像) 主机", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "给出一个可选的备份主机。它必须为主 LDAP/AD 服务器的一个镜像。", +"Backup (Replica) Port" => "备份 (镜像) 端口", +"Disable Main Server" => "禁用主服务器", +"When switched on, ownCloud will only connect to the replica server." => "当开启后,ownCloud 将仅连接到镜像服务器。", "Use TLS" => "使用TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "对于 LDAPS 连接不要额外启用它,连接必然失败。", "Case insensitve LDAP server (Windows)" => "大小写敏感LDAP服务器(Windows)", "Turn off SSL certificate validation." => "关闭SSL证书验证", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "如果链接仅在此选项时可用,在您的ownCloud服务器中导入LDAP服务器的SSL证书。", "Not recommended, use for testing only." => "暂不推荐,仅供测试", +"Cache Time-To-Live" => "缓存存活时间", "in seconds. A change empties the cache." => "以秒计。修改将清空缓存。", +"Directory Settings" => "目录设置", "User Display Name Field" => "用户显示名称字段", "The LDAP attribute to use to generate the user`s ownCloud name." => "用来生成用户的ownCloud名称的 LDAP属性", "Base User Tree" => "基础用户树", +"One User Base DN per line" => "每行一个用户基准判别名", +"User Search Attributes" => "用户搜索属性", +"Optional; one attribute per line" => "可选;每行一个属性", "Group Display Name Field" => "组显示名称字段", "The LDAP attribute to use to generate the groups`s ownCloud name." => "用来生成组的ownCloud名称的LDAP属性", "Base Group Tree" => "基础组树", +"One Group Base DN per line" => "每行一个群组基准判别名", +"Group Search Attributes" => "群组搜索属性", "Group-Member association" => "组成员关联", +"Special Attributes" => "特殊属性", +"Quota Field" => "配额字段", +"Quota Default" => "默认配额", "in bytes" => "字节数", +"Email Field" => "电邮字段", +"User Home Folder Naming Rule" => "用户主目录命名规则", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "将用户名称留空(默认)。否则指定一个LDAP/AD属性", +"Test Configuration" => "测试配置", "Help" => "帮助" ); diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 9e3f169b2f..2ddea9421b 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -122,7 +122,7 @@ "Database tablespace" => "Datubāzes tabulas telpa", "Database host" => "Datubāzes serveris", "Finish setup" => "Pabeigt iestatīšanu", -"web services under your control" => "jūsu vadībā esošie tīmekļa servisi", +"web services under your control" => "tīmekļa servisi tavā varā", "Log out" => "Izrakstīties", "Automatic logon rejected!" => "Automātiskā ierakstīšanās ir noraidīta!", "If you did not change your password recently, your account may be compromised!" => "Ja neesat pēdējā laikā mainījis paroli, iespējams, ka jūsu konts ir kompromitēts.", diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 62e5779a43..0f2e748b24 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "الملفات" @@ -91,8 +91,8 @@ msgstr "محذوف" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "" @@ -146,74 +146,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "إغلق" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "الاسم" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "حجم" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "معدل" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index a7013ebbba..182656726e 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "" msgid "Invalid directory." msgstr "Невалидна директория." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Файлове" @@ -92,8 +92,8 @@ msgstr "Изтриване" msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Чакащо" @@ -147,74 +147,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Възникна грешка при качването" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Затвори" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Име" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Размер" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Променено" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 папка" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 файл" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} файла" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 3b17926554..04779bb5b1 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "ফাইল" @@ -91,8 +91,8 @@ msgstr "মুছে ফেল" msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "মুলতুবি" @@ -146,74 +146,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "আপলোড করতে সমস্যা " -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "বন্ধ" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "১টি ফাইল আপলোড করা হচ্ছে" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} টি ফাইল আপলোড করা হচ্ছে" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL ফাঁকা রাখা যাবে না।" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "নাম" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "আকার" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "১টি ফোল্ডার" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} টি ফোল্ডার" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "১টি ফাইল" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} টি ফাইল" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 688af1f9c4..2914e1ada3 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "No hi ha prou espai disponible" msgid "Invalid directory." msgstr "Directori no vàlid." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Fitxers" @@ -97,8 +97,8 @@ msgstr "Suprimeix" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Pendents" @@ -152,74 +152,74 @@ msgstr "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden ac msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Error en la pujada" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Tanca" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} fitxers en pujada" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "La URL no pot ser buida" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nom" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Mida" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modificat" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} fitxers" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 5aaad21444..6bdb70c520 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-05 00:18+0100\n" -"PO-Revision-Date: 2013-03-04 07:30+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgstr "Nedostatek dostupného úložného prostoru" msgid "Invalid directory." msgstr "Neplatný adresář" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Soubory" @@ -93,8 +93,8 @@ msgstr "Smazat" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Čekající" @@ -148,74 +148,74 @@ msgstr "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubo msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké může to chvíli trvat." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Chyba odesílání" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Zavřít" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "odesílám {count} souborů" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL nemůže být prázdná" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Název" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Velikost" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Změněno" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 složka" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 soubor" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} soubory" diff --git a/l10n/da/files.po b/l10n/da/files.po index 7d64d326b9..60f3fcbf38 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-05 00:18+0100\n" -"PO-Revision-Date: 2013-03-04 18:10+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: cronner \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "Der er ikke nok plads til rådlighed" msgid "Invalid directory." msgstr "Ugyldig mappe." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Filer" @@ -100,8 +100,8 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Afventer" @@ -155,74 +155,74 @@ msgstr "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkron msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Luk" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} filer uploades" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URLen kan ikke være tom." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Navn" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Størrelse" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Ændret" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 fil" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/de/files.po b/l10n/de/files.po index 3be42e89c9..f06a601723 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 15:30+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: Marcel Kühlhorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index d6ee9818e3..0b789301c6 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 15:20+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: Marcel Kühlhorn \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files.po b/l10n/el/files.po index 106ab0381c..fb7e425b49 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Axilleas Pi , 2013. # Dimitris M. , 2012-2013. # Efstathios Iosifidis , 2012-2013. # Efstathios Iosifidis , 2013. @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-15 06:40+0000\n" +"Last-Translator: axil Pι \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" @@ -82,7 +83,7 @@ msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώ msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Αρχεία" @@ -98,8 +99,8 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Εκκρεμεί" @@ -153,74 +154,74 @@ msgstr "Ο αποθηκευτικός σας χώρος είναι γεμάτο msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Σφάλμα Αποστολής" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Κλείσιμο" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} αρχεία ανεβαίνουν" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "Η URL δεν πρέπει να είναι κενή." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Όνομα" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} αρχεία" @@ -286,7 +287,7 @@ msgstr "Ακύρωση αποστολής" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Δεν έχετε δικαιώματα εγγραφής εδώ." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 868c5b92b7..19ce071f95 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgstr "" msgid "Invalid directory." msgstr "Nevalida dosierujo." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Dosieroj" @@ -93,8 +93,8 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Traktotaj" @@ -148,74 +148,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Fermi" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} dosieroj alŝutatas" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL ne povas esti malplena." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud." -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nomo" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Grando" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modifita" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} dosierujoj" diff --git a/l10n/es/files.po b/l10n/es/files.po index 8de6b03bbb..11886bde96 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-07 00:16+0100\n" -"PO-Revision-Date: 2013-03-06 15:12+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: xsergiolpx \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "No hay suficiente espacio disponible" msgid "Invalid directory." msgstr "Directorio invalido." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Archivos" @@ -103,8 +103,8 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Pendiente" @@ -158,74 +158,74 @@ msgstr "Su almacenamiento esta lleno, los archivos no pueden ser mas actualizado msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su almacenamiento esta lleno en un ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "cerrrar" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nombre" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 archivo" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} archivos" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 1f3877df3c..8a0ba76707 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2013-03-13 09:50+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 09f2d52fdb..b5d11f5b3d 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "Saadaval pole piisavalt ruumi" msgid "Invalid directory." msgstr "Vigane kaust." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Failid" @@ -92,8 +92,8 @@ msgstr "Kustuta" msgid "Rename" msgstr "ümber" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Ootel" @@ -147,74 +147,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Üleslaadimise viga" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Sulge" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 faili üleslaadimisel" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} faili üleslaadimist" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL ei saa olla tühi." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nimi" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Suurus" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Muudetud" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 fail" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} faili" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 96cb7e9a37..1773e8bc60 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "Ez dago behar aina leku erabilgarri," msgid "Invalid directory." msgstr "Baliogabeko karpeta." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Fitxategiak" @@ -94,8 +94,8 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Zain" @@ -149,74 +149,74 @@ msgstr "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Itxi" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} fitxategi igotzen" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URLa ezin da hutsik egon." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Izena" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Tamaina" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} fitxategi" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 7f82989ac3..a522e9ec91 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2013-03-13 06:00+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-16 13:00+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 1103ddafa4..c788e45406 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" -"PO-Revision-Date: 2013-03-09 16:20+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-16 06:50+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -72,13 +72,13 @@ msgstr "نوشتن بر روی دیسک سخت ناموفق بود" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "فضای کافی در دسترس نیست" #: ajax/upload.php:82 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "فایل ها" @@ -125,7 +125,7 @@ msgstr "بازگشت" #: js/filelist.js:323 msgid "perform delete operation" -msgstr "" +msgstr "انجام عمل حذف" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -143,11 +143,11 @@ msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و ' #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)" #: js/files.js:226 msgid "" @@ -282,7 +282,7 @@ msgstr "متوقف کردن بار گذاری" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "شما اجازه ی نوشتن در اینجا را ندارید" #: templates/index.php:60 msgid "Nothing in here. Upload something!" @@ -316,4 +316,4 @@ msgstr "بازرسی کنونی" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "بهبود فایل سیستمی ذخیره گاه..." diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index d65d6f66ed..6951bdad58 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mahdi Kereshteh , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" -"PO-Revision-Date: 2013-03-09 16:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-16 08:21+0000\n" +"Last-Translator: miki_mika1362 \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" @@ -20,20 +21,20 @@ msgstr "" #: ajax/delete.php:40 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "%s را نمی توان برای همیشه حذف کرد" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "%s را نمی توان بازگرداند" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "" +msgstr "انجام عمل بازگرداندن" #: js/trash.js:34 msgid "delete file permanently" -msgstr "" +msgstr "حذف فایل برای همیشه" #: js/trash.js:121 msgid "Delete permanently" @@ -45,7 +46,7 @@ msgstr "نام" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "حذف شده" #: js/trash.js:184 msgid "1 folder" @@ -65,7 +66,7 @@ msgstr "{ شمار } فایل ها" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است." #: templates/index.php:20 templates/index.php:22 msgid "Restore" @@ -77,4 +78,4 @@ msgstr "حذف" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "فایلهای حذف شده" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index d28ceaba3e..dccfe96fb2 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -4,14 +4,15 @@ # # Translators: # Amir Reza Asadi , 2013. +# mahdi Kereshteh , 2013. # Mohammad Dashtizadeh , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-16 08:40+0000\n" +"Last-Translator: miki_mika1362 \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" @@ -43,19 +44,19 @@ msgstr " برنامه ها" msgid "Admin" msgstr "مدیر" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "دانلود به صورت فشرده غیر فعال است" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "فایل ها باید به صورت یکی یکی دانلود شوند" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "بازگشت به فایل ها" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد" @@ -97,7 +98,7 @@ msgstr "" #: setup.php:40 msgid "Specify a data folder." -msgstr "" +msgstr "پوشه ای برای داده ها مشخص کنید." #: setup.php:55 #, php-format diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 269b362350..7587c1a021 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/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: 2013-03-05 00:18+0100\n" -"PO-Revision-Date: 2013-03-04 16:30+0000\n" -"Last-Translator: Amir Reza Asadi \n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-16 07:10+0000\n" +"Last-Translator: miki_mika1362 \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" @@ -46,7 +46,7 @@ msgstr "افزودن گروه امکان پذیر نیست" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "" +msgstr "برنامه را نمی توان فعال ساخت." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -79,20 +79,20 @@ msgstr "مدیران نمی توانند خود را از گروه مدیریت #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "امکان افزودن کاربر به گروه %s نیست" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "امکان حذف کاربر از گروه %s نیست" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "برنامه را نمی توان به هنگام ساخت." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "بهنگام شده به {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -112,7 +112,7 @@ msgstr "در حال بروز رسانی..." #: js/apps.js:87 msgid "Error while updating app" -msgstr "" +msgstr "خطا در هنگام بهنگام سازی برنامه" #: js/apps.js:87 msgid "Error" @@ -136,7 +136,7 @@ msgstr "بازگشت" #: js/users.js:62 msgid "Unable to remove user" -msgstr "" +msgstr "حذف کاربر امکان پذیر نیست" #: js/users.js:75 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 @@ -157,7 +157,7 @@ msgstr "افزودن گروه" #: js/users.js:352 msgid "A valid username must be provided" -msgstr "" +msgstr "نام کاربری صحیح باید وارد شود" #: js/users.js:353 js/users.js:359 js/users.js:374 msgid "Error creating user" @@ -165,7 +165,7 @@ msgstr "خطا در ایجاد کاربر" #: js/users.js:358 msgid "A valid password must be provided" -msgstr "" +msgstr "رمز عبور صحیح باید وارد شود" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -463,7 +463,7 @@ msgstr "" #: templates/personal.php:93 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید" #: templates/users.php:21 templates/users.php:77 msgid "Login Name" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 90cac5e664..0d1a02c29b 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-16 08:50+0000\n" +"Last-Translator: miki_mika1362 \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" @@ -89,248 +89,248 @@ msgstr "" msgid "Server configuration" msgstr "پیکربندی سرور" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "افزودن پیکربندی سرور" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "میزبانی" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "رمز عبور" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" -msgstr "" +msgstr "فیلتر گروه" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "درگاه" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "در بایت" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "راه‌نما" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 3af5904ef8..ae67688355 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "Tallennustilaa ei ole riittävästi käytettävissä" msgid "Invalid directory." msgstr "Virheellinen kansio." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Tiedostot" @@ -95,8 +95,8 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Odottaa" @@ -150,74 +150,74 @@ msgstr "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkro msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Tallennustila on melkein loppu ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Sulje" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "Verkko-osoite ei voi olla tyhjä" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nimi" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Koko" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Muutettu" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} tiedostoa" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 64ca95eab0..b9748eaf09 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" -"PO-Revision-Date: 2013-03-12 19:10+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: Zertrin \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 49b778b128..7e41dc7ef3 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "Non hai espazo de almacenamento abondo" msgid "Invalid directory." msgstr "O directorio é incorrecto." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Ficheiros" @@ -95,8 +95,8 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Pendentes" @@ -150,74 +150,74 @@ msgstr "O seu espazo de almacenamento está cheo, non é posíbel actualizar ou msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Non foi posíbel enviar o ficheiro pois ou é un directorio ou ten 0 bytes" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Produciuse un erro no envío" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Pechar" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "Enviándose 1 ficheiro" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "Enviandose {count} ficheiros" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Envío cancelado." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "O URL non pode quedar baleiro." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de cartafol incorrecto. O uso de «Shared» está reservado por Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nome" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/he/files.po b/l10n/he/files.po index 16161d7068..15aaf78ebb 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "קבצים" @@ -94,8 +94,8 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "ממתין" @@ -149,74 +149,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "שגיאת העלאה" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "סגירה" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} קבצים נשלחים" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "קישור אינו יכול להיות ריק." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "שם" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "גודל" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} קבצים" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index c59404f0df..1128bc3e81 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Datoteke" @@ -93,8 +93,8 @@ msgstr "Briši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "U tijeku" @@ -148,74 +148,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Zatvori" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Naziv" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Veličina" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index c28ba06186..5c08b3332d 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "Nincs elég szabad hely." msgid "Invalid directory." msgstr "Érvénytelen mappa." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Fájlok" @@ -97,8 +97,8 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Folyamatban" @@ -152,74 +152,74 @@ msgstr "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhat msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "A tároló majdnem tele van ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Feltöltési hiba" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Bezárás" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} fájl töltődik föl" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "Az URL nem lehet semmi." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges." -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Név" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Méret" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Módosítva" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 fájl" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} fájl" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 0494da5e95..887bfc6715 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Files" @@ -92,8 +92,8 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "" @@ -147,74 +147,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Clauder" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nomine" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Dimension" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modificate" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 174bfa27e2..648885e443 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Berkas" @@ -93,8 +93,8 @@ msgstr "Hapus" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Menunggu" @@ -148,74 +148,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "tutup" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "tautan tidak boleh kosong" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nama" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Ukuran" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 map" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 berkas" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} berkas" diff --git a/l10n/is/files.po b/l10n/is/files.po index 147ec127f5..cee893ea69 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Invalid directory." msgstr "Ógild mappa." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Skrár" @@ -91,8 +91,8 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Bíður" @@ -146,74 +146,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti." -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Villa við innsendingu" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Loka" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} skrár innsendar" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "Vefslóð má ekki vera tóm." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nafn" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Stærð" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Breytt" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 skrá" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} skrár" diff --git a/l10n/it/files.po b/l10n/it/files.po index ede7635d20..d4fe52bbd6 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "Spazio di archiviazione insufficiente" msgid "Invalid directory." msgstr "Cartella non valida." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "File" @@ -94,8 +94,8 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "In corso" @@ -149,74 +149,74 @@ msgstr "Lo spazio di archiviazione è pieno, i file non possono essere più aggi msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Chiudi" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} file in fase di caricamentoe" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "L'URL non può essere vuoto." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nome" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Dimensione" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modificato" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 file" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} file" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index dd044d0583..2edf0d421c 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "ストレージに十分な空き容量がありません" msgid "Invalid directory." msgstr "無効なディレクトリです。" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "ファイル" @@ -95,8 +95,8 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "保留" @@ -150,74 +150,74 @@ msgstr "あなたのストレージは一杯です。ファイルの更新と同 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "あなたのストレージはほぼ一杯です({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ディレクトリもしくは0バイトのファイルはアップロードできません" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "アップロードエラー" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "閉じる" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} ファイルをアップロード中" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URLは空にできません。" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "名前" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "サイズ" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "更新日時" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} ファイル" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index dd8bcd2633..e7e84226b5 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "ფაილები" @@ -91,8 +91,8 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "მოცდის რეჟიმში" @@ -146,74 +146,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "შეცდომა ატვირთვისას" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "დახურვა" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} ფაილი იტვირთება" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "სახელი" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "ზომა" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} ფაილი" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index c122421e3b..7c1a0e3854 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "" msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "파일" @@ -96,8 +96,8 @@ msgstr "삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "보류 중" @@ -151,74 +151,74 @@ msgstr "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "업로드 오류" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "닫기" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "파일 {count}개 업로드 중" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL을 입력해야 합니다." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "폴더 이름이 유효하지 않습니다. " -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "이름" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "크기" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "수정됨" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "파일 1개" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "파일 {count}개" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 2b34722f3e..e533860a5d 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Dateien" @@ -91,8 +91,8 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "" @@ -146,74 +146,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass." -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Fehler beim eroplueden" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Zoumaachen" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Numm" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Gréisst" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Geännert" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 7336f6ef67..d6df0fcbf2 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Failai" @@ -93,8 +93,8 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Laukiantis" @@ -148,74 +148,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Įkėlimo klaida" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Užverti" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} įkeliami failai" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Dydis" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Pakeista" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 failas" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} failai" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 55f705bdd4..ced607dded 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:20+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-15 17:00+0000\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -19,24 +19,24 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/share.php:85 +#: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" msgstr "Lietotājs %s ar jums dalījās ar datni." -#: ajax/share.php:87 +#: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" msgstr "Lietotājs %s ar jums dalījās ar mapi." -#: ajax/share.php:89 +#: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" msgstr "Lietotājs %s ar jums dalījās ar datni “%s”. To var lejupielādēt šeit — %s" -#: ajax/share.php:91 +#: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " @@ -82,79 +82,79 @@ msgstr "Neviena kategorija nav izvēlēta dzēšanai" msgid "Error removing %s from favorites." msgstr "Kļūda, izņemot %s no izlases." -#: js/config.php:32 +#: js/config.php:34 msgid "Sunday" msgstr "Svētdiena" -#: js/config.php:32 +#: js/config.php:35 msgid "Monday" msgstr "Pirmdiena" -#: js/config.php:32 +#: js/config.php:36 msgid "Tuesday" msgstr "Otrdiena" -#: js/config.php:32 +#: js/config.php:37 msgid "Wednesday" msgstr "Trešdiena" -#: js/config.php:32 +#: js/config.php:38 msgid "Thursday" msgstr "Ceturtdiena" -#: js/config.php:32 +#: js/config.php:39 msgid "Friday" msgstr "Piektdiena" -#: js/config.php:32 +#: js/config.php:40 msgid "Saturday" msgstr "Sestdiena" -#: js/config.php:33 +#: js/config.php:45 msgid "January" msgstr "Janvāris" -#: js/config.php:33 +#: js/config.php:46 msgid "February" msgstr "Februāris" -#: js/config.php:33 +#: js/config.php:47 msgid "March" msgstr "Marts" -#: js/config.php:33 +#: js/config.php:48 msgid "April" msgstr "Aprīlis" -#: js/config.php:33 +#: js/config.php:49 msgid "May" msgstr "Maijs" -#: js/config.php:33 +#: js/config.php:50 msgid "June" msgstr "Jūnijs" -#: js/config.php:33 +#: js/config.php:51 msgid "July" msgstr "Jūlijs" -#: js/config.php:33 +#: js/config.php:52 msgid "August" msgstr "Augusts" -#: js/config.php:33 +#: js/config.php:53 msgid "September" msgstr "Septembris" -#: js/config.php:33 +#: js/config.php:54 msgid "October" msgstr "Oktobris" -#: js/config.php:33 +#: js/config.php:55 msgid "November" msgstr "Novembris" -#: js/config.php:33 +#: js/config.php:56 msgid "December" msgstr "Decembris" @@ -162,55 +162,55 @@ msgstr "Decembris" msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:767 +#: js/js.js:777 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:768 +#: js/js.js:778 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:769 +#: js/js.js:779 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:770 +#: js/js.js:780 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:771 +#: js/js.js:781 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:772 +#: js/js.js:782 msgid "today" msgstr "šodien" -#: js/js.js:773 +#: js/js.js:783 msgid "yesterday" msgstr "vakar" -#: js/js.js:774 +#: js/js.js:784 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:775 +#: js/js.js:785 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:776 +#: js/js.js:786 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:777 +#: js/js.js:787 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:778 +#: js/js.js:788 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:779 +#: js/js.js:789 msgid "years ago" msgstr "gadus atpakaļ" @@ -240,8 +240,8 @@ msgid "The object type is not specified." msgstr "Nav norādīts objekta tips." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:582 -#: js/share.js:594 +#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 +#: js/share.js:578 msgid "Error" msgstr "Kļūda" @@ -253,127 +253,127 @@ msgstr "Nav norādīts lietotnes nosaukums." msgid "The required file {file} is not installed!" msgstr "Pieprasītā datne {file} nav instalēta!" -#: js/share.js:29 js/share.js:43 js/share.js:90 +#: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Kopīgs" -#: js/share.js:93 +#: js/share.js:90 msgid "Share" msgstr "Dalīties" -#: js/share.js:141 js/share.js:622 +#: js/share.js:125 js/share.js:606 msgid "Error while sharing" msgstr "Kļūda, daloties" -#: js/share.js:152 +#: js/share.js:136 msgid "Error while unsharing" msgstr "Kļūda, beidzot dalīties" -#: js/share.js:159 +#: js/share.js:143 msgid "Error while changing permissions" msgstr "Kļūda, mainot atļaujas" -#: js/share.js:168 +#: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} dalījās ar jums un grupu {group}" -#: js/share.js:170 +#: js/share.js:154 msgid "Shared with you by {owner}" msgstr "{owner} dalījās ar jums" -#: js/share.js:175 +#: js/share.js:159 msgid "Share with" msgstr "Dalīties ar" -#: js/share.js:180 +#: js/share.js:164 msgid "Share with link" msgstr "Dalīties ar saiti" -#: js/share.js:183 +#: js/share.js:167 msgid "Password protect" msgstr "Aizsargāt ar paroli" -#: js/share.js:185 templates/installation.php:44 templates/login.php:35 +#: js/share.js:169 templates/installation.php:47 templates/login.php:35 msgid "Password" msgstr "Parole" -#: js/share.js:189 +#: js/share.js:173 msgid "Email link to person" msgstr "Sūtīt saiti personai pa e-pastu" -#: js/share.js:190 +#: js/share.js:174 msgid "Send" msgstr "Sūtīt" -#: js/share.js:194 +#: js/share.js:178 msgid "Set expiration date" msgstr "Iestaties termiņa datumu" -#: js/share.js:195 +#: js/share.js:179 msgid "Expiration date" msgstr "Termiņa datums" -#: js/share.js:227 +#: js/share.js:211 msgid "Share via email:" msgstr "Dalīties, izmantojot e-pastu:" -#: js/share.js:229 +#: js/share.js:213 msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:256 +#: js/share.js:240 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:292 +#: js/share.js:276 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:313 +#: js/share.js:297 msgid "Unshare" msgstr "Beigt dalīties" -#: js/share.js:325 +#: js/share.js:309 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:327 +#: js/share.js:311 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:330 +#: js/share.js:314 msgid "create" msgstr "izveidot" -#: js/share.js:333 +#: js/share.js:317 msgid "update" msgstr "atjaunināt" -#: js/share.js:336 +#: js/share.js:320 msgid "delete" msgstr "dzēst" -#: js/share.js:339 +#: js/share.js:323 msgid "share" msgstr "dalīties" -#: js/share.js:373 js/share.js:569 +#: js/share.js:357 js/share.js:553 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:582 +#: js/share.js:566 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:594 +#: js/share.js:578 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:609 +#: js/share.js:593 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:620 +#: js/share.js:604 msgid "Email sent" msgstr "Vēstule nosūtīta" @@ -408,7 +408,7 @@ msgstr "Atstatīt e-pasta sūtīšanu." msgid "Request failed!" msgstr "Pieprasījums neizdevās!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:41 #: templates/login.php:28 msgid "Username" msgstr "Lietotājvārds" @@ -469,85 +469,86 @@ msgstr "Rediģēt kategoriju" msgid "Add" msgstr "Pievienot" -#: templates/installation.php:23 templates/installation.php:30 +#: templates/installation.php:24 templates/installation.php:31 msgid "Security Warning" msgstr "Brīdinājums par drošību" -#: templates/installation.php:24 +#: templates/installation.php:25 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Nav pieejams drošs nejaušu skaitļu ģenerators. Lūdzu, aktivējiet PHP OpenSSL paplašinājumu." -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Bez droša nejaušu skaitļu ģeneratora uzbrucējs var paredzēt paroļu atjaunošanas marķierus un pārņem jūsu kontu." -#: templates/installation.php:31 +#: templates/installation.php:32 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Visticamāk, jūsu datu direktorija un datnes ir pieejamas no interneta, jo .htaccess datne nedarbojas." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "For information how to properly configure your server, please see the documentation." msgstr "Lai uzzinātu, kā pareizi jākonfigurē šis serveris, skatiet dokumentāciju." -#: templates/installation.php:36 +#: templates/installation.php:37 msgid "Create an admin account" msgstr "Izveidot administratora kontu" -#: templates/installation.php:52 +#: templates/installation.php:55 msgid "Advanced" msgstr "Paplašināti" -#: templates/installation.php:54 +#: templates/installation.php:57 msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:61 +#: templates/installation.php:66 msgid "Configure the database" msgstr "Konfigurēt datubāzi" -#: templates/installation.php:66 templates/installation.php:77 -#: templates/installation.php:87 templates/installation.php:97 +#: templates/installation.php:71 templates/installation.php:83 +#: templates/installation.php:94 templates/installation.php:105 +#: templates/installation.php:117 msgid "will be used" msgstr "tiks izmantots" -#: templates/installation.php:109 +#: templates/installation.php:129 msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:113 +#: templates/installation.php:134 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:117 +#: templates/installation.php:139 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:125 +#: templates/installation.php:149 msgid "Database tablespace" msgstr "Datubāzes tabulas telpa" -#: templates/installation.php:131 +#: templates/installation.php:156 msgid "Database host" msgstr "Datubāzes serveris" -#: templates/installation.php:136 +#: templates/installation.php:162 msgid "Finish setup" msgstr "Pabeigt iestatīšanu" -#: templates/layout.guest.php:33 +#: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "jūsu vadībā esošie tīmekļa servisi" +msgstr "tīmekļa servisi tavā varā" -#: templates/layout.user.php:48 +#: templates/layout.user.php:58 msgid "Log out" msgstr "Izrakstīties" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index afbd5a9846..e8267311fb 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 16:30+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgstr "Nav pietiekami daudz vietas" msgid "Invalid directory." msgstr "Nederīga direktorija." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Datnes" @@ -93,8 +93,8 @@ msgstr "Dzēst" msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Gaida savu kārtu" @@ -148,74 +148,74 @@ msgstr "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhron msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nevar augšupielādēt jūsu datni, jo tā ir direktorija vai arī tās izmērs ir 0 baiti" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Kļūda augšupielādējot" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Aizvērt" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "Augšupielādē 1 datni" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "augšupielādē {count} datnes" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Augšupielāde ir atcelta." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL nevar būt tukšs." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ownCloud servisam." -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nosaukums" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Izmērs" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Mainīts" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 mape" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} mapes" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 datne" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} datnes" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 3e20fdad26..46609775b6 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 21:40+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-15 17:00+0000\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -26,24 +26,24 @@ msgstr "Parole" msgid "Submit" msgstr "Iesniegt" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ar jums dalījās ar mapi %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:37 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:29 +#: templates/public.php:34 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" -#: templates/public.php:35 +#: templates/public.php:43 msgid "web services under your control" msgstr "jūsu vadībā esošie tīmekļa servisi" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 69f1076029..864c0276cf 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 20:41+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-15 17:00+0000\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -444,7 +444,7 @@ msgstr "Jūsu e-pasta adrese" #: templates/personal.php:73 msgid "Fill in an email address to enable password recovery" -msgstr "Ievadiet epasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība" +msgstr "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība" #: templates/personal.php:79 templates/personal.php:80 msgid "Language" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index e0fa965920..cb752e480c 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Датотеки" @@ -93,8 +93,8 @@ msgstr "Избриши" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Чека" @@ -148,74 +148,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Грешка при преземање" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Затвои" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} датотеки се подигаат" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "Адресата неможе да биде празна." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Име" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Големина" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Променето" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 папка" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 датотека" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} датотеки" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 476a84415f..347270a86a 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "fail" @@ -94,8 +94,8 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Dalam proses" @@ -149,74 +149,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Tutup" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nama " -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Saiz" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index eb63447721..7acafa50aa 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 21:30+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Filer" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 5443fe2eb4..63ffcce8d5 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 20:10+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "Niet genoeg opslagruimte beschikbaar" msgid "Invalid directory." msgstr "Ongeldige directory." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Bestanden" @@ -102,8 +102,8 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Wachten" @@ -157,74 +157,74 @@ msgstr "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Sluit" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} bestanden aan het uploaden" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL kan niet leeg zijn." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Naam" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 map" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 bestand" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} bestanden" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 576b1aad49..95e625729f 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Filer" @@ -92,8 +92,8 @@ msgstr "Slett" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "" @@ -147,74 +147,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Lukk" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Namn" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Storleik" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Endra" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 6500ddb024..ec2bb4923f 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Fichièrs" @@ -91,8 +91,8 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Al esperar" @@ -146,74 +146,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet." -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Error d'amontcargar" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nom" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Talha" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modificat" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index aa0c7c7b15..4a05bed983 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "Za mało dostępnego miejsca" msgid "Invalid directory." msgstr "Zła ścieżka." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Pliki" @@ -100,8 +100,8 @@ msgstr "Usuń" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Oczekujące" @@ -155,74 +155,74 @@ msgstr "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchro msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Twój magazyn jest prawie pełny ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nie można wczytać pliku, ponieważ jest on katalogiem lub ma 0 bajtów" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Zamknij" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 plik wczytywany" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "Ilość przesyłanych plików: {count}" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL nie może być pusty." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nieprawidłowa nazwa folderu. Korzystanie z nazwy „Shared” jest zarezerwowane dla ownCloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nazwa" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Rozmiar" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modyfikacja" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 folder" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "Ilość folderów: {count}" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 plik" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "Ilość plików: {count}" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 9bf36d8620..eac875f955 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 12:10+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: dudanogueira \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "Espaço de armazenamento insuficiente" msgid "Invalid directory." msgstr "Diretório inválido." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Arquivos" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 3a972374e6..8358424df5 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:20+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-15 15:40+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -25,24 +25,24 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:85 +#: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" msgstr "O utilizador %s partilhou um ficheiro consigo." -#: ajax/share.php:87 +#: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" msgstr "O utilizador %s partilhou uma pasta consigo." -#: ajax/share.php:89 +#: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" msgstr "O utilizador %s partilhou o ficheiro \"%s\" consigo. Está disponível para download aqui: %s" -#: ajax/share.php:91 +#: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " @@ -88,79 +88,79 @@ msgstr "Nenhuma categoria seleccionada para apagar" msgid "Error removing %s from favorites." msgstr "Erro a remover %s dos favoritos." -#: js/config.php:32 +#: js/config.php:34 msgid "Sunday" msgstr "Domingo" -#: js/config.php:32 +#: js/config.php:35 msgid "Monday" msgstr "Segunda" -#: js/config.php:32 +#: js/config.php:36 msgid "Tuesday" msgstr "Terça" -#: js/config.php:32 +#: js/config.php:37 msgid "Wednesday" msgstr "Quarta" -#: js/config.php:32 +#: js/config.php:38 msgid "Thursday" msgstr "Quinta" -#: js/config.php:32 +#: js/config.php:39 msgid "Friday" msgstr "Sexta" -#: js/config.php:32 +#: js/config.php:40 msgid "Saturday" msgstr "Sábado" -#: js/config.php:33 +#: js/config.php:45 msgid "January" msgstr "Janeiro" -#: js/config.php:33 +#: js/config.php:46 msgid "February" msgstr "Fevereiro" -#: js/config.php:33 +#: js/config.php:47 msgid "March" msgstr "Março" -#: js/config.php:33 +#: js/config.php:48 msgid "April" msgstr "Abril" -#: js/config.php:33 +#: js/config.php:49 msgid "May" msgstr "Maio" -#: js/config.php:33 +#: js/config.php:50 msgid "June" msgstr "Junho" -#: js/config.php:33 +#: js/config.php:51 msgid "July" msgstr "Julho" -#: js/config.php:33 +#: js/config.php:52 msgid "August" msgstr "Agosto" -#: js/config.php:33 +#: js/config.php:53 msgid "September" msgstr "Setembro" -#: js/config.php:33 +#: js/config.php:54 msgid "October" msgstr "Outubro" -#: js/config.php:33 +#: js/config.php:55 msgid "November" msgstr "Novembro" -#: js/config.php:33 +#: js/config.php:56 msgid "December" msgstr "Dezembro" @@ -168,55 +168,55 @@ msgstr "Dezembro" msgid "Settings" msgstr "Definições" -#: js/js.js:767 +#: js/js.js:777 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:768 +#: js/js.js:778 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:769 +#: js/js.js:779 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:770 +#: js/js.js:780 msgid "1 hour ago" msgstr "Há 1 hora" -#: js/js.js:771 +#: js/js.js:781 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:772 +#: js/js.js:782 msgid "today" msgstr "hoje" -#: js/js.js:773 +#: js/js.js:783 msgid "yesterday" msgstr "ontem" -#: js/js.js:774 +#: js/js.js:784 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:775 +#: js/js.js:785 msgid "last month" msgstr "ultímo mês" -#: js/js.js:776 +#: js/js.js:786 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:777 +#: js/js.js:787 msgid "months ago" msgstr "meses atrás" -#: js/js.js:778 +#: js/js.js:788 msgid "last year" msgstr "ano passado" -#: js/js.js:779 +#: js/js.js:789 msgid "years ago" msgstr "anos atrás" @@ -246,8 +246,8 @@ msgid "The object type is not specified." msgstr "O tipo de objecto não foi especificado" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:582 -#: js/share.js:594 +#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 +#: js/share.js:578 msgid "Error" msgstr "Erro" @@ -259,127 +259,127 @@ msgstr "O nome da aplicação não foi especificado" msgid "The required file {file} is not installed!" msgstr "O ficheiro necessário {file} não está instalado!" -#: js/share.js:29 js/share.js:43 js/share.js:90 +#: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Partilhado" -#: js/share.js:93 +#: js/share.js:90 msgid "Share" msgstr "Partilhar" -#: js/share.js:141 js/share.js:622 +#: js/share.js:125 js/share.js:606 msgid "Error while sharing" msgstr "Erro ao partilhar" -#: js/share.js:152 +#: js/share.js:136 msgid "Error while unsharing" msgstr "Erro ao deixar de partilhar" -#: js/share.js:159 +#: js/share.js:143 msgid "Error while changing permissions" msgstr "Erro ao mudar permissões" -#: js/share.js:168 +#: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" msgstr "Partilhado consigo e com o grupo {group} por {owner}" -#: js/share.js:170 +#: js/share.js:154 msgid "Shared with you by {owner}" msgstr "Partilhado consigo por {owner}" -#: js/share.js:175 +#: js/share.js:159 msgid "Share with" msgstr "Partilhar com" -#: js/share.js:180 +#: js/share.js:164 msgid "Share with link" msgstr "Partilhar com link" -#: js/share.js:183 +#: js/share.js:167 msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:185 templates/installation.php:44 templates/login.php:35 +#: js/share.js:169 templates/installation.php:47 templates/login.php:35 msgid "Password" msgstr "Palavra chave" -#: js/share.js:189 +#: js/share.js:173 msgid "Email link to person" msgstr "Enviar o link por e-mail" -#: js/share.js:190 +#: js/share.js:174 msgid "Send" msgstr "Enviar" -#: js/share.js:194 +#: js/share.js:178 msgid "Set expiration date" msgstr "Especificar data de expiração" -#: js/share.js:195 +#: js/share.js:179 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:227 +#: js/share.js:211 msgid "Share via email:" msgstr "Partilhar via email:" -#: js/share.js:229 +#: js/share.js:213 msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:256 +#: js/share.js:240 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:292 +#: js/share.js:276 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:313 +#: js/share.js:297 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:325 +#: js/share.js:309 msgid "can edit" msgstr "pode editar" -#: js/share.js:327 +#: js/share.js:311 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:330 +#: js/share.js:314 msgid "create" msgstr "criar" -#: js/share.js:333 +#: js/share.js:317 msgid "update" msgstr "actualizar" -#: js/share.js:336 +#: js/share.js:320 msgid "delete" msgstr "apagar" -#: js/share.js:339 +#: js/share.js:323 msgid "share" msgstr "partilhar" -#: js/share.js:373 js/share.js:569 +#: js/share.js:357 js/share.js:553 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:582 +#: js/share.js:566 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:594 +#: js/share.js:578 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:609 +#: js/share.js:593 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:620 +#: js/share.js:604 msgid "Email sent" msgstr "E-mail enviado" @@ -414,7 +414,7 @@ msgstr "E-mail de reinicialização enviado." msgid "Request failed!" msgstr "O pedido falhou!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:41 #: templates/login.php:28 msgid "Username" msgstr "Utilizador" @@ -475,85 +475,86 @@ msgstr "Editar categorias" msgid "Add" msgstr "Adicionar" -#: templates/installation.php:23 templates/installation.php:30 +#: templates/installation.php:24 templates/installation.php:31 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/installation.php:24 +#: templates/installation.php:25 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Não existe nenhum gerador seguro de números aleatórios, por favor, active a extensão OpenSSL no PHP." -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sem nenhum gerador seguro de números aleatórios, uma pessoa mal intencionada pode prever a sua password, reiniciar as seguranças adicionais e tomar conta da sua conta. " -#: templates/installation.php:31 +#: templates/installation.php:32 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "A pasta de dados do ownCloud e os respectivos ficheiros, estarão provavelmente acessíveis a partir da internet, pois o ficheiros .htaccess não funciona." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "For information how to properly configure your server, please see the documentation." msgstr "Para obter informações de como configurar correctamente o servidor, veja em: documentation." -#: templates/installation.php:36 +#: templates/installation.php:37 msgid "Create an admin account" msgstr "Criar uma conta administrativa" -#: templates/installation.php:52 +#: templates/installation.php:55 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:54 +#: templates/installation.php:57 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:61 +#: templates/installation.php:66 msgid "Configure the database" msgstr "Configure a base de dados" -#: templates/installation.php:66 templates/installation.php:77 -#: templates/installation.php:87 templates/installation.php:97 +#: templates/installation.php:71 templates/installation.php:83 +#: templates/installation.php:94 templates/installation.php:105 +#: templates/installation.php:117 msgid "will be used" msgstr "vai ser usada" -#: templates/installation.php:109 +#: templates/installation.php:129 msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:113 +#: templates/installation.php:134 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:117 +#: templates/installation.php:139 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:125 +#: templates/installation.php:149 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:131 +#: templates/installation.php:156 msgid "Database host" msgstr "Anfitrião da base de dados" -#: templates/installation.php:136 +#: templates/installation.php:162 msgid "Finish setup" msgstr "Acabar instalação" -#: templates/layout.guest.php:33 +#: templates/layout.guest.php:40 msgid "web services under your control" msgstr "serviços web sob o seu controlo" -#: templates/layout.user.php:48 +#: templates/layout.user.php:58 msgid "Log out" msgstr "Sair" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 55c2ec26ca..ea5d986e8b 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 11:39+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-15 15:40+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "Não há espaço suficiente em disco" msgid "Invalid directory." msgstr "Directório Inválido" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Ficheiros" @@ -98,8 +98,8 @@ msgstr "Apagar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Pendente" @@ -153,74 +153,74 @@ msgstr "O seu armazenamento está cheio, os ficheiros não podem ser sincronizad msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Erro no envio" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Fechar" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "A carregar {count} ficheiros" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "O URL não pode estar vazio." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nome" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Tamanho" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index e7f7597e8e..cad62ff609 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "" msgid "Invalid directory." msgstr "Director invalid." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Fișiere" @@ -96,8 +96,8 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "În așteptare" @@ -151,74 +151,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Se pregătește descărcarea. Aceasta poate să dureze ceva timp dacă fișierele sunt mari." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes." -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Eroare la încărcare" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Închide" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} fisiere incarcate" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "Adresa URL nu poate fi goală." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nume" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Dimensiune" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modificat" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 folder" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 fisier" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} fisiere" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 7748313329..d0965e9fa9 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ msgstr "Недостаточно доступного места в хранил msgid "Invalid directory." msgstr "Неправильный каталог." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Файлы" @@ -104,8 +104,8 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Ожидание" @@ -159,74 +159,74 @@ msgstr "Ваше дисковое пространство полностью з msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше хранилище почти заполнено ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Загрузка началась. Это может потребовать много времени, если файл большого размера." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не удается загрузить файл размером 0 байт в каталог" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Закрыть" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} файлов загружается" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "Ссылка не может быть пустой." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Название" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Размер" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Изменён" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 папка" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 файл" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} файлов" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 0ae9fc5384..35ff88db19 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "Недостаточно места в хранилище" msgid "Invalid directory." msgstr "Неверный каталог." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Файлы" @@ -94,8 +94,8 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Ожидающий решения" @@ -149,74 +149,74 @@ msgstr "Ваше хранилище переполнено, фалы больш msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше хранилище почти полно ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Идёт подготовка к скачке Вашего файла. Это может занять некоторое время, если фалы большие." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Закрыть" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "загрузка 1 файла" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{количество} загружено файлов" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Загрузка отменена" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL не должен быть пустым." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неверное имя папки. Использование наименования 'Опубликовано' зарезервировано Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Имя" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Размер" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Изменен" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 папка" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 файл" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{количество} файлов" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index c745c9d510..e3d1a4ef90 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "ගොනු" @@ -92,8 +92,8 @@ msgstr "මකන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "" @@ -147,74 +147,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "උඩුගත කිරීමේ දෝශයක්" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "වසන්න" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "යොමුව හිස් විය නොහැක" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "නම" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index f810df29b2..1899860d8e 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "Nedostatok dostupného úložného priestoru" msgid "Invalid directory." msgstr "Neplatný priečinok" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Súbory" @@ -96,8 +96,8 @@ msgstr "Odstrániť" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Čaká sa" @@ -151,74 +151,74 @@ msgstr "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchroniz msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložisko je takmer plné ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Chyba odosielania" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Zavrieť" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} súborov odosielaných" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Odosielanie zrušené" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL nemôže byť prázdne" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatné meno priečinka. Používanie mena 'Shared' je vyhradené len pre Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Meno" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Veľkosť" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Upravené" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 súbor" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} súborov" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index e12cdc3cf8..3b97d640ec 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 18:00+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-15 11:20+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 90690956b7..9eb4a2622a 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Датотеке" @@ -93,8 +93,8 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "На чекању" @@ -148,74 +148,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Грешка при отпремању" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Затвори" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "Отпремам {count} датотеке/а" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Назив" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Величина" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Измењено" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 датотека" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} датотеке/а" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index c965ecb646..1a59859ee3 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-07 00:16+0100\n" -"PO-Revision-Date: 2013-03-06 01:40+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: Lokal_Profil \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" msgid "Invalid directory." msgstr "Felaktig mapp." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Filer" @@ -97,8 +97,8 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Väntar" @@ -152,74 +152,74 @@ msgstr "Ditt lagringsutrymme är fullt, filer kan ej längre laddas upp eller sy msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes." -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Stäng" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} filer laddas upp" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL kan inte vara tom." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Namn" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Storlek" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Ändrad" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 fil" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 668ac3ce21..a76492c3c6 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "கோப்புகள்" @@ -91,8 +91,8 @@ msgstr "அழிக்க" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "நிலுவையிலுள்ள" @@ -146,74 +146,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "பதிவேற்றல் வழு" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "மூடுக" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL வெறுமையாக இருக்கமுடியாது." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "பெயர்" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "அளவு" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 71347fa976..73e419e234 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 11068c6144..e81522bd8c 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index d09ca11ec2..afe8ab8811 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 69603f84d7..9d01fcae0e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 0d442a8a41..cd66c56cae 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index eb9fdf8459..ce9c001647 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 3084b6ee6f..cfc96feaab 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 99241a5c25..4c0eb838bd 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 59a76e07b1..83da3241b9 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ea58fc87f7..95ba55fd71 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index c3ade802cc..59ee787dbc 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 71a7680255..4729727f37 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "เหลือพื้นที่ไม่เพียงสำหร msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "ไฟล์" @@ -92,8 +92,8 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" @@ -147,74 +147,74 @@ msgstr "พื้นที่จัดเก็บข้อมูลของค msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "เกิดข้อผิดพลาดในการอัพโหลด" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "ปิด" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "กำลังอัพโหลด {count} ไฟล์" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL ไม่สามารถเว้นว่างได้" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ชื่อโฟลเดอร์ไม่ถูกต้อง การใช้งาน 'แชร์' สงวนไว้สำหรับ Owncloud เท่านั้น" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "ชื่อ" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "ขนาด" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} ไฟล์" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index fdab97fa16..e3d992e609 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 09:20+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 58aae0590c..f52bb986ff 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 12:31+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "Місця більше немає" msgid "Invalid directory." msgstr "Невірний каталог." -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Файли" @@ -94,8 +94,8 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Очікування" @@ -149,74 +149,74 @@ msgstr "Ваше сховище переповнене, файли більше msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше сховище майже повне ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Помилка завантаження" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Закрити" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} файлів завантажується" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL не може бути пустим." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Невірне ім'я теки. Використання \"Shared\" зарезервовано Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Ім'я" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Розмір" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Змінено" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 папка" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 файл" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} файлів" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 960372e9db..6cd6a037fc 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "Không đủ không gian lưu trữ" msgid "Invalid directory." msgstr "Thư mục không hợp lệ" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "Tập tin" @@ -95,8 +95,8 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Chờ" @@ -150,74 +150,74 @@ msgstr "Your storage is full, files can not be updated or synced anymore!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Đóng" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} tập tin đang tải lên" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL không được để trống." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Tên" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} tập tin" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index af5d6f7522..54d098d1ad 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "文件" @@ -92,8 +92,8 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Pending" @@ -147,74 +147,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大小为0" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "关闭" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} 个文件正在上传" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传。关闭页面会取消上传。" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "网址不能为空。" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "名字" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "大小" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "修改日期" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 个文件" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 5ad45ec693..d2742e1157 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 18:12+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-16 14:00+0000\n" "Last-Translator: Xuetian Weng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 1ff4b293e7..d8b5948e5d 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 03:20+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: Xuetian Weng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index f4a457ca68..9ed723fdb8 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -5,13 +5,14 @@ # Translators: # , 2012. # Dianjin Wang <1132321739qq@gmail.com>, 2012. +# marguerite su , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-16 14:00+0000\n" +"Last-Translator: marguerite su \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" @@ -39,13 +40,13 @@ msgstr "请提供有效的Dropbox应用key和secret" msgid "Error configuring Google Drive storage" msgstr "配置Google Drive存储时出错" -#: lib/config.php:421 +#: lib/config.php:423 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" -#: lib/config.php:424 +#: lib/config.php:426 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " @@ -62,7 +63,7 @@ msgstr "目录名称" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "外部存储" #: templates/settings.php:11 msgid "Configuration" @@ -78,7 +79,7 @@ msgstr "适用的" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "添加存储" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 4d9a5122f2..70f4cbe501 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-16 14:30+0000\n" +"Last-Translator: marguerite su \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" @@ -21,23 +21,23 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "未能删除服务器配置" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "配置有效,能够建立连接!" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "配置有效但绑定失败。请检查服务器设置和认证信息。" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "配置无效。更多细节请查看 ownCloud 日志。" #: js/settings.js:66 msgid "Deletion failed" @@ -45,31 +45,31 @@ msgstr "删除失败" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "从近期的服务器配置中导入设置?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "保留设置吗?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "无法添加服务器配置" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "连接测试成功" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "连接测试失败" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "您真的想要删除当前服务器配置吗?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "确认删除" #: templates/settings.php:8 msgid "" @@ -82,254 +82,254 @@ msgstr "警告:应用 user_ldap 和 user_webdavauth 不兼容。您可 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "警告: PHP LDAP 模块未安装,后端将无法工作。请请求您的系统管理员安装该模块。" #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "服务器配置" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "" +msgstr "添加服务器配置" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "主机" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "可以忽略协议,但如要使用SSL,则需以ldaps://开头" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "Base DN" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" -msgstr "" +msgstr "每行一个基本判别名" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "您可以在高级选项卡里为用户和组指定Base DN" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "User DN" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "客户端使用的DN必须与绑定的相同,比如uid=agent,dc=example,dc=com\n如需匿名访问,将DN和密码保留为空" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "密码" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "启用匿名访问,将DN和密码保留为空" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "用户登录过滤" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "定义当尝试登录时的过滤器。 在登录过程中,%%uid将会被用户名替换" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "使用 %%uid作为占位符,例如“uid=%%uid”" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "用户列表过滤" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "定义拉取用户时的过滤器" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "没有任何占位符,如 \"objectClass=person\"." -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "组过滤" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "定义拉取组信息时的过滤器" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "无需占位符,例如\"objectClass=posixGroup\"" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" -msgstr "" +msgstr "连接设置" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" -msgstr "" +msgstr "现行配置" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "当反选后,此配置将被忽略。" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "端口" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "备份 (镜像) 主机" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "给出一个可选的备份主机。它必须为主 LDAP/AD 服务器的一个镜像。" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "" +msgstr "备份 (镜像) 端口" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" -msgstr "" +msgstr "禁用主服务器" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "当开启后,ownCloud 将仅连接到镜像服务器。" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "使用TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "对于 LDAPS 连接不要额外启用它,连接必然失败。" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "大小写敏感LDAP服务器(Windows)" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "关闭SSL证书验证" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "如果链接仅在此选项时可用,在您的ownCloud服务器中导入LDAP服务器的SSL证书。" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "暂不推荐,仅供测试" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "缓存存活时间" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "以秒计。修改将清空缓存。" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" -msgstr "" +msgstr "目录设置" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "用户显示名称字段" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "用来生成用户的ownCloud名称的 LDAP属性" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "基础用户树" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "" +msgstr "每行一个用户基准判别名" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" -msgstr "" +msgstr "用户搜索属性" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "" +msgstr "可选;每行一个属性" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "组显示名称字段" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "用来生成组的ownCloud名称的LDAP属性" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "基础组树" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "" +msgstr "每行一个群组基准判别名" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "" +msgstr "群组搜索属性" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "组成员关联" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" -msgstr "" +msgstr "特殊属性" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "配额字段" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "默认配额" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "字节数" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "电邮字段" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "用户主目录命名规则" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "将用户名称留空(默认)。否则指定一个LDAP/AD属性" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "测试配置" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "帮助" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 8a20a235c1..de6d2bfbc5 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"PO-Revision-Date: 2013-03-14 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "儲存空間不足" msgid "Invalid directory." msgstr "無效的資料夾。" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "檔案" @@ -96,8 +96,8 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "等候中" @@ -151,74 +151,74 @@ msgstr "您的儲存空間已滿,沒有辦法再更新或是同步檔案!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的儲存空間快要滿了 ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "上傳發生錯誤" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "關閉" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} 個檔案正在上傳" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中。離開此頁面將會取消上傳。" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL 不能為空白." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "名稱" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "大小" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "修改" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} 個檔案" diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index bbb04290a5..282a8a56cd 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -14,6 +14,7 @@ "Files" => "پرونده‌ها", "Text" => "متن", "Images" => "تصاویر", +"Specify a data folder." => "پوشه ای برای داده ها مشخص کنید.", "seconds ago" => "ثانیه‌ها پیش", "1 minute ago" => "1 دقیقه پیش", "%d minutes ago" => "%d دقیقه پیش", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 688374e8e3..b8a3051e00 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -4,6 +4,7 @@ "Unable to change display name" => "امکان تغییر نام نمایشی شما وجود ندارد", "Group already exists" => "این گروه در حال حاضر موجود است", "Unable to add group" => "افزودن گروه امکان پذیر نیست", +"Could not enable app. " => "برنامه را نمی توان فعال ساخت.", "Email saved" => "ایمیل ذخیره شد", "Invalid email" => "ایمیل غیر قابل قبول", "Unable to delete group" => "حذف گروه امکان پذیر نیست", @@ -11,19 +12,27 @@ "Language changed" => "زبان تغییر کرد", "Invalid request" => "درخواست غیر قابل قبول", "Admins can't remove themself from the admin group" => "مدیران نمی توانند خود را از گروه مدیریت حذف کنند", +"Unable to add user to group %s" => "امکان افزودن کاربر به گروه %s نیست", +"Unable to remove user from group %s" => "امکان حذف کاربر از گروه %s نیست", +"Couldn't update app." => "برنامه را نمی توان به هنگام ساخت.", +"Update to {appversion}" => "بهنگام شده به {appversion}", "Disable" => "غیرفعال", "Enable" => "فعال", "Please wait...." => "لطفا صبر کنید ...", "Updating...." => "در حال بروز رسانی...", +"Error while updating app" => "خطا در هنگام بهنگام سازی برنامه", "Error" => "خطا", "Updated" => "بروز رسانی انجام شد", "Saving..." => "درحال ذخیره ...", "deleted" => "حذف شده", "undo" => "بازگشت", +"Unable to remove user" => "حذف کاربر امکان پذیر نیست", "Groups" => "گروه ها", "Delete" => "پاک کردن", "add group" => "افزودن گروه", +"A valid username must be provided" => "نام کاربری صحیح باید وارد شود", "Error creating user" => "خطا در ایجاد کاربر", +"A valid password must be provided" => "رمز عبور صحیح باید وارد شود", "__language_name__" => "__language_name__", "Security Warning" => "اخطار امنیتی", "Setup Warning" => "هشدار راه اندازی", @@ -60,6 +69,7 @@ "Fill in an email address to enable password recovery" => "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود", "Language" => "زبان", "Help translate" => "به ترجمه آن کمک کنید", +"Use this address to connect to your ownCloud in your file manager" => "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید", "Login Name" => "نام کاربری", "Create" => "ایجاد کردن", "Default Storage" => "ذخیره سازی پیش فرض", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index d5a29d84cb..45f1ccb9b8 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -95,7 +95,7 @@ "Change display name" => "Mainīt redzamo vārdu", "Email" => "E-pasts", "Your email address" => "Jūsu e-pasta adrese", -"Fill in an email address to enable password recovery" => "Ievadiet epasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība", +"Fill in an email address to enable password recovery" => "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība", "Language" => "Valoda", "Help translate" => "Palīdzi tulkot", "WebDAV" => "WebDAV", From db69e2b3e8abf780706d7e73f9a48da3d6dfbed1 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 17 Mar 2013 00:02:13 +0100 Subject: [PATCH 60/61] [tx-robot] updated from transifex --- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 73e419e234..f95980f87c 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"POT-Creation-Date: 2013-03-17 00:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index e81522bd8c..1c7c800f77 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"POT-Creation-Date: 2013-03-17 00:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index afe8ab8811..18ca29a56b 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"POT-Creation-Date: 2013-03-17 00:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 9d01fcae0e..cbfda6392f 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"POT-Creation-Date: 2013-03-17 00:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index cd66c56cae..fedea83a4f 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"POT-Creation-Date: 2013-03-17 00:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index ce9c001647..b9bc69a180 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"POT-Creation-Date: 2013-03-17 00:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index cfc96feaab..773a44fdb5 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"POT-Creation-Date: 2013-03-17 00:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 4c0eb838bd..11f9e24810 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"POT-Creation-Date: 2013-03-17 00:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 83da3241b9..30118e4602 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"POT-Creation-Date: 2013-03-17 00:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 95ba55fd71..1b60b3aef3 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"POT-Creation-Date: 2013-03-17 00:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 59ee787dbc..0d4bbe219a 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" +"POT-Creation-Date: 2013-03-17 00:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From d3858e9f964344755e6137aaee3be4c6e66132aa Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 17 Mar 2013 00:48:10 +0100 Subject: [PATCH 61/61] Close sessions when doing background jobs --- cron.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cron.php b/cron.php index a202ca60ba..086f96f366 100644 --- a/cron.php +++ b/cron.php @@ -48,6 +48,8 @@ function handleUnexpectedShutdown() { $RUNTIME_NOSETUPFS = true; require_once 'lib/base.php'; +session_write_close(); + // Don't do anything if ownCloud has not been installed if( !OC_Config::getValue( 'installed', false )) { exit( 0 );