From 70b71338cd01b9c5018c63b713ad74c8f302dfa7 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Tue, 28 Aug 2012 07:22:31 +0200 Subject: beta 1 --- lib/util.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index 3b2f476ada2..0abdddcbf9b 100755 --- a/lib/util.php +++ b/lib/util.php @@ -75,7 +75,8 @@ class OC_Util { * @return array */ public static function getVersion(){ - return array(4,82,4); + // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4,9,0. This is not visible to the user + return array(4,83,4); } /** @@ -83,7 +84,7 @@ class OC_Util { * @return string */ public static function getVersionString(){ - return '5 pre alpha 1'; + return '4.5 beta 1'; } /** -- cgit v1.2.3 From fd2ca21fc24b6b73a6d75af2e7a7a226e5b186e9 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 28 Aug 2012 09:51:00 -0400 Subject: Allow share_with column to be null for links --- db_structure.xml | 2 +- lib/util.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/db_structure.xml b/db_structure.xml index 8c96fa7c39c..e42dc894e8d 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -479,7 +479,7 @@ share_with text - true + false 255 diff --git a/lib/util.php b/lib/util.php index 0abdddcbf9b..720f2cdeefd 100755 --- a/lib/util.php +++ b/lib/util.php @@ -76,7 +76,7 @@ class OC_Util { */ public static function getVersion(){ // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4,9,0. This is not visible to the user - return array(4,83,4); + return array(4,83,5); } /** -- cgit v1.2.3 From ff076caeee3ca29b1e4fb8c741e7525f30d921bf Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 28 Aug 2012 11:28:38 -0400 Subject: Check usernames in the database as case insensitive, they are still stored case sensitive. Bug fix for oc-422 and oc-1514 --- lib/user/database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/user/database.php b/lib/user/database.php index a4cffe5d0c1..dc11614cc57 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -121,7 +121,7 @@ class OC_User_Database extends OC_User_Backend { * returns the user id or false */ public function checkPassword( $uid, $password ){ - $query = OC_DB::prepare( 'SELECT `uid`, `password` FROM `*PREFIX*users` WHERE `uid` = ?' ); + $query = OC_DB::prepare( 'SELECT `uid`, `password` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); $result = $query->execute( array( $uid)); $row=$result->fetchRow(); @@ -170,7 +170,7 @@ class OC_User_Database extends OC_User_Backend { * @return boolean */ public function userExists($uid){ - $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*users` WHERE `uid` = ?' ); + $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); $result = $query->execute( array( $uid )); return $result->numRows() > 0; -- cgit v1.2.3 From 8a02a8852fc912398b5348b8e3263cd4048d5b1b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 28 Aug 2012 22:39:05 +0200 Subject: Add background job for global file cache cleanup --- lib/base.php | 3 +++ lib/cache/fileglobal.php | 34 ++++++++++++++++++++++++++++------ 2 files changed, 31 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index b4f3e667133..af860027c1d 100644 --- a/lib/base.php +++ b/lib/base.php @@ -346,6 +346,9 @@ class OC{ } } + // register cache cleanup + OC_BackgroundJob_RegularTask::register('OC_Cache_FileGlobal', 'gc'); + // Check for blacklisted files OC_Hook::connect('OC_Filesystem','write','OC_Filesystem','isBlacklisted'); OC_Hook::connect('OC_Filesystem', 'rename', 'OC_Filesystem', 'isBlacklisted'); diff --git a/lib/cache/fileglobal.php b/lib/cache/fileglobal.php index 1c2c9bdc82d..d4336553c38 100644 --- a/lib/cache/fileglobal.php +++ b/lib/cache/fileglobal.php @@ -8,7 +8,7 @@ class OC_Cache_FileGlobal{ - protected function getCacheDir() { + static protected function getCacheDir() { $cache_dir = get_temp_dir().'/owncloud-'.OC_Util::getInstanceId().'/'; if (!is_dir($cache_dir)) { mkdir($cache_dir); @@ -23,7 +23,7 @@ class OC_Cache_FileGlobal{ public function get($key) { $key = $this->fixKey($key); if ($this->hasKey($key)) { - $cache_dir = $this->getCacheDir(); + $cache_dir = self::getCacheDir(); return file_get_contents($cache_dir.$key); } return null; @@ -31,7 +31,7 @@ class OC_Cache_FileGlobal{ public function set($key, $value, $ttl=0) { $key = $this->fixKey($key); - $cache_dir = $this->getCacheDir(); + $cache_dir = self::getCacheDir(); if ($cache_dir and file_put_contents($cache_dir.$key, $value)) { if ($ttl === 0) { $ttl = 86400; // 60*60*24 @@ -43,7 +43,7 @@ class OC_Cache_FileGlobal{ public function hasKey($key) { $key = $this->fixKey($key); - $cache_dir = $this->getCacheDir(); + $cache_dir = self::getCacheDir(); if ($cache_dir && is_file($cache_dir.$key)) { $mtime = filemtime($cache_dir.$key); if ($mtime < time()) { @@ -56,7 +56,7 @@ class OC_Cache_FileGlobal{ } public function remove($key) { - $cache_dir = $this->getCacheDir(); + $cache_dir = self::getCacheDir(); if(!$cache_dir){ return false; } @@ -65,7 +65,7 @@ class OC_Cache_FileGlobal{ } public function clear(){ - $cache_dir = $this->getCacheDir(); + $cache_dir = self::getCacheDir(); if($cache_dir and is_dir($cache_dir)){ $dh=opendir($cache_dir); while($file=readdir($dh)){ @@ -75,4 +75,26 @@ class OC_Cache_FileGlobal{ } } } + + static public function gc() { + $last_run = OC_AppConfig::getValue('core', 'global_cache_gc_lastrun', 0); + $now = time(); + if (($now - $last_run) < 300) { + // only do cleanup every 5 minutes + return; + } + OC_AppConfig::setValue('core', 'global_cache_gc_lastrun', $now); + $cache_dir = self::getCacheDir(); + if($cache_dir and is_dir($cache_dir)) { + $dh=opendir($cache_dir); + while($file=readdir($dh)) { + if($file!='.' and $file!='..') { + $mtime = filemtime($cache_dir.$file); + if ($mtime < $now) { + unlink($cache_dir.$file); + } + } + } + } + } } -- cgit v1.2.3 From 53e51fe46b3a78b117bd43de922c0fea67d49670 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 28 Aug 2012 23:07:09 +0200 Subject: Clean user cache on login --- lib/base.php | 3 ++- lib/cache/file.php | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index af860027c1d..d3f3c5ba1c6 100644 --- a/lib/base.php +++ b/lib/base.php @@ -346,8 +346,9 @@ class OC{ } } - // register cache cleanup + // register cache cleanup jobs OC_BackgroundJob_RegularTask::register('OC_Cache_FileGlobal', 'gc'); + OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); // Check for blacklisted files OC_Hook::connect('OC_Filesystem','write','OC_Filesystem','isBlacklisted'); diff --git a/lib/cache/file.php b/lib/cache/file.php index 562c3d17167..7298ba9074c 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -74,4 +74,25 @@ class OC_Cache_File{ } return true; } + + public function gc() { + $storage = $this->getStorage(); + if($storage and $storage->is_dir('/')) { + $now = time(); + $dh=$storage->opendir('/'); + while($file=readdir($dh)) { + if($file!='.' and $file!='..') { + $mtime = $storage->filemtime('/'.$file); + if ($mtime < $now) { + $storage->unlink('/'.$file); + } + } + } + } + } + + public static function loginListener() { + $c = new self(); + $c->gc(); + } } -- cgit v1.2.3 From 32721e7b075f9bf0c625cb6f0a6e12d913abe6fc Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 28 Aug 2012 23:10:32 +0200 Subject: Remember storage view in OC_Cache_File --- lib/cache/file.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/cache/file.php b/lib/cache/file.php index 7298ba9074c..fa62dd3b162 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -8,14 +8,19 @@ class OC_Cache_File{ + protected $storage; protected function getStorage() { + if (isset(self::$storage)) { + return self::$storage; + } if(OC_User::isLoggedIn()){ $subdir = 'cache'; $view = new OC_FilesystemView('/'.OC_User::getUser()); if(!$view->file_exists($subdir)) { $view->mkdir($subdir); } - return new OC_FilesystemView('/'.OC_User::getUser().'/'.$subdir); + self::$storage = new OC_FilesystemView('/'.OC_User::getUser().'/'.$subdir); + return self::$storage; }else{ OC_Log::write('core','Can\'t get cache storage, user not logged in', OC_Log::ERROR); return false; -- cgit v1.2.3 From d786194ddc0c2f14cccc8bf80ecc2d397b684825 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 29 Aug 2012 01:39:21 +0200 Subject: fixing: apps/files/ajax/scan.php --- lib/cache/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/cache/file.php b/lib/cache/file.php index fa62dd3b162..a51f0d68f82 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -8,7 +8,7 @@ class OC_Cache_File{ - protected $storage; + protected static $storage; protected function getStorage() { if (isset(self::$storage)) { return self::$storage; -- cgit v1.2.3 From e5cbc532c300142e50f9a6ffb14229595dd74c78 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 29 Aug 2012 11:54:31 -0400 Subject: Fix password authentication for links and fix template problems for links by creating a new base layout --- apps/files_sharing/css/public.css | 9 +++++-- apps/files_sharing/public.php | 13 +++++++--- apps/files_sharing/templates/authenticate.php | 2 +- apps/files_sharing/templates/public.php | 12 ++++++--- core/templates/layout.base.php | 37 +++++++++++++++++++++++++++ lib/templatelayout.php | 10 +++++--- 6 files changed, 69 insertions(+), 14 deletions(-) create mode 100644 core/templates/layout.base.php (limited to 'lib') diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index aa76c06175b..f38afae3dd8 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -1,2 +1,7 @@ -#content { position:relative; } -#preview p { text-align: center; } \ No newline at end of file +body { background:#ddd; } +#header { position:fixed; top:0; left:0; right:0; z-index:100; height:2.5em; line-height:2.5em; padding:.5em; background:#1d2d44; -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; } +#details { color:#fff; } +#download { margin-left:2em; font-weight:bold; color:#fff; } +#preview { min-height:30em; margin:50px auto; border-bottom:1px solid #f8f8f8; background:#eee; text-align:center; } +p.info { width:22em; text-align: center; margin:2em auto; color:#777; text-shadow:#fff 0 1px 0; } +p.info a { font-weight:bold; color:#777; } \ No newline at end of file diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 15dac576d98..a4bf0230a3a 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -5,6 +5,7 @@ if (isset($_GET['file'])) { $pos = strpos($_GET['file'], '/', 1); $uidOwner = substr($_GET['file'], 1, $pos - 1); if (OCP\User::userExists($uidOwner)) { + OC_Util::tearDownFS(); OC_Util::setupFS($uidOwner); $file = substr($_GET['file'], $pos); $fileSource = OC_Filecache::getId($_GET['file'], ''); @@ -18,14 +19,19 @@ if (isset($_GET['file'])) { $hasher = new PasswordHash(8, $forcePortable); if (!($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), $storedHash))) { $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); + $tmpl->assign('URL', OCP\Util::linkToPublic('files').'&file='.$_GET['file']); $tmpl->assign('error', true); $tmpl->printPage(); exit(); + } else { + // Save item id in session for future requests + $_SESSION['public_link_authenticated'] = $linkItem['id']; } - // Continue on if password is valid - } else { + // Check if item id is set in session + } else if (!isset($_SESSION['public_link_authenticated']) || $_SESSION['public_link_authenticated'] !== $linkItem['id']) { // Prompt for password $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); + $tmpl->assign('URL', OCP\Util::linkToPublic('files').'&file='.$_GET['file']); $tmpl->printPage(); exit(); } @@ -45,7 +51,8 @@ if (isset($_GET['file'])) { OCP\Util::addStyle('files_sharing', 'public'); OCP\Util::addScript('files_sharing', 'public'); OCP\Util::addScript('files', 'fileactions'); - $tmpl = new OCP\Template('files_sharing', 'public', 'guest'); + $tmpl = new OCP\Template('files_sharing', 'public', 'base'); + $tmpl->assign('details', $uidOwner.' shared the file '.basename($path).' with you'); $tmpl->assign('owner', $uidOwner); $tmpl->assign('name', basename($path)); // Show file list diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 41064d51464..9695caebf18 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,4 +1,4 @@ -
+

diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 065818c2200..36e159dafee 100755 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -2,12 +2,16 @@ +

-

shared the file with you

-
-
-Download \ No newline at end of file +

ownCloudt('web services under your control'); ?>

\ No newline at end of file diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php new file mode 100644 index 00000000000..bfd23a9ce97 --- /dev/null +++ b/core/templates/layout.base.php @@ -0,0 +1,37 @@ + + + + ownCloud + + + + + + + + + + + + + + + + + $value) { + echo "$name='$value' "; + }; + echo '/>'; + ?> + + + + + + + diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 588a7845997..18fd23aac95 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -29,14 +29,16 @@ class OC_TemplateLayout extends OC_Template { break; } } - }else{ - parent::__construct( 'core', 'layout.guest' ); + } else if ($renderas == 'guest') { + parent::__construct('core', 'layout.guest'); + } else { + parent::__construct('core', 'layout.base'); } $apps_paths = array(); foreach(OC_App::getEnabledApps() as $app){ $apps_paths[$app] = OC_App::getAppWebPath($app); - } + } $this->assign( 'apps_paths', str_replace('\\/', '/',json_encode($apps_paths)),false ); // Ugly unescape slashes waiting for better solution // Add the js files @@ -63,7 +65,7 @@ class OC_TemplateLayout extends OC_Template { foreach(OC::$APPSROOTS as $app_root) { if($root == $app_root['path']) { $in_root = true; - break; + break; } } -- cgit v1.2.3 From 26501a0bc8c7c4fa8343f5fa0c6e42bae1c7f298 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 29 Aug 2012 13:58:39 -0400 Subject: Delete old link if user sets a password --- core/js/share.js | 2 -- lib/public/share.php | 10 ++++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/core/js/share.js b/core/js/share.js index cc862b1c5f5..59ff25ee763 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -417,8 +417,6 @@ $(document).ready(function() { if (event.keyCode == 13) { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); - // TODO Do this internally - OC.Share.unshare(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, ''); OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.Share.PERMISSION_READ); } }); diff --git a/lib/public/share.php b/lib/public/share.php index 165e3df452f..91b1bffc2d7 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -229,6 +229,16 @@ class Share { $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner)); } else if ($shareType === self::SHARE_TYPE_LINK) { if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { + if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1)) { + // If password is set delete the old link + if (isset($shareWith)) { + self::delete($checkExists['id']); + } else { + $message = 'Sharing '.$itemSource.' failed, because this item is already shared with a link'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } // Generate hash of password - same method as user passwords if (isset($shareWith)) { $forcePortable = (CRYPT_BLOWFISH != 1); -- cgit v1.2.3 From 52f2e7112ea985203eca16aa787bd75a7cf92194 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 29 Aug 2012 08:38:33 +0200 Subject: Whitespace fixes in lib --- lib/appconfig.php | 6 +-- lib/archive.php | 2 +- lib/archive/tar.php | 6 +-- lib/archive/zip.php | 2 +- lib/backgroundjob/worker.php | 10 ++--- lib/base.php | 4 +- lib/cache.php | 4 +- lib/connector/sabre/auth.php | 2 +- lib/connector/sabre/directory.php | 1 - lib/connector/sabre/file.php | 1 - lib/connector/sabre/locks.php | 6 +-- lib/connector/sabre/node.php | 10 ++--- lib/db.php | 63 +++++++++++++++--------------- lib/eventsource.php | 2 +- lib/filecache.php | 22 +++++------ lib/filecache/cached.php | 2 +- lib/filecache/update.php | 4 +- lib/fileproxy.php | 6 +-- lib/fileproxy/quota.php | 8 ++-- lib/files.php | 4 +- lib/filestorage/common.php | 62 +++++++++++++++--------------- lib/filestorage/commontest.php | 4 +- lib/filestorage/local.php | 4 +- lib/filesystem.php | 40 ++++++++++---------- lib/filesystemview.php | 8 ++-- lib/geo.php | 2 +- lib/group.php | 2 +- lib/hook.php | 1 - lib/image.php | 8 ++-- lib/json.php | 4 +- lib/l10n.php | 20 +++++----- lib/mail.php | 8 ++-- lib/migrate.php | 10 ++--- lib/migration/content.php | 80 +++++++++++++++++++-------------------- lib/migration/provider.php | 18 ++++----- lib/ocs.php | 12 +++--- lib/ocsclient.php | 16 ++++---- lib/preferences.php | 2 +- lib/public/app.php | 6 +-- lib/public/backgroundjob.php | 4 +- lib/public/config.php | 2 +- lib/public/db.php | 2 +- lib/public/files.php | 2 +- lib/public/json.php | 54 +++++++++++++------------- lib/public/response.php | 2 +- lib/public/template.php | 10 ++--- lib/public/user.php | 2 +- lib/search.php | 8 ++-- lib/search/provider.php | 4 +- lib/setup.php | 20 +++++----- lib/subadmin.php | 14 +++---- lib/template.php | 10 ++--- lib/user.php | 6 +-- lib/user/database.php | 6 +-- lib/user/http.php | 10 ++--- lib/util.php | 18 ++++----- lib/vcategories.php | 2 +- 57 files changed, 322 insertions(+), 326 deletions(-) (limited to 'lib') diff --git a/lib/appconfig.php b/lib/appconfig.php index 372cded9a5f..0e608b540bd 100644 --- a/lib/appconfig.php +++ b/lib/appconfig.php @@ -100,7 +100,7 @@ class OC_Appconfig{ return $default; } } - + /** * @brief check if a key is set in the appconfig * @param string $app @@ -111,7 +111,7 @@ class OC_Appconfig{ $exists = self::getKeys( $app ); return in_array( $key, $exists ); } - + /** * @brief sets a value in the appconfig * @param $app app @@ -163,7 +163,7 @@ class OC_Appconfig{ return true; } - + /** * get multiply values, either the app or key can be used as wildcard by setting it to false * @param app diff --git a/lib/archive.php b/lib/archive.php index fabd7cc7a51..5ac4edbfd1e 100644 --- a/lib/archive.php +++ b/lib/archive.php @@ -28,7 +28,7 @@ abstract class OC_Archive{ return new OC_Archive_TAR($path); } } - + abstract function __construct($source); /** * add an empty folder to the archive diff --git a/lib/archive/tar.php b/lib/archive/tar.php index f6efd6d0ecc..095362d0cd6 100644 --- a/lib/archive/tar.php +++ b/lib/archive/tar.php @@ -14,7 +14,7 @@ class OC_Archive_TAR extends OC_Archive{ const BZIP=2; private $fileList; - + /** * @var Archive_Tar tar */ @@ -127,7 +127,7 @@ class OC_Archive_TAR extends OC_Archive{ } return null; } - + /** * get the uncompressed size of a file in the archive * @param string path @@ -254,7 +254,7 @@ class OC_Archive_TAR extends OC_Archive{ return false; } } - + /** * remove a file or folder from the archive * @param string path diff --git a/lib/archive/zip.php b/lib/archive/zip.php index c1a5c35738b..396b1f6c054 100644 --- a/lib/archive/zip.php +++ b/lib/archive/zip.php @@ -12,7 +12,7 @@ class OC_Archive_ZIP extends OC_Archive{ */ private $zip=null; private $path; - + function __construct($source){ $this->path=$source; $this->zip=new ZipArchive(); diff --git a/lib/backgroundjob/worker.php b/lib/backgroundjob/worker.php index b4f0429b319..8684e0df117 100644 --- a/lib/backgroundjob/worker.php +++ b/lib/backgroundjob/worker.php @@ -22,7 +22,7 @@ /** * This class does the dirty work. - * + * * TODO: locking in doAllSteps */ class OC_BackgroundJob_Worker{ @@ -56,7 +56,7 @@ class OC_BackgroundJob_Worker{ OC_BackgroundJob_QueuedTask::delete( $task['id'] ); call_user_func( array( $task['klass'], $task['method'] ), $task['parameters'] ); } - + return true; } @@ -70,7 +70,7 @@ class OC_BackgroundJob_Worker{ */ public static function doNextStep(){ $laststep = OC_Appconfig::getValue( 'core', 'backgroundjobs_step', 'regular_tasks' ); - + if( $laststep == 'regular_tasks' ){ // get last app $lasttask = OC_Appconfig::getValue( 'core', 'backgroundjobs_task', '' ); @@ -79,7 +79,7 @@ class OC_BackgroundJob_Worker{ $regular_tasks = OC_BackgroundJob_RegularTask::all(); ksort( $regular_tasks ); $done = false; - + // search for next background job foreach( $regular_tasks as $key => $value ){ if( strcmp( $key, $lasttask ) > 0 ){ @@ -112,7 +112,7 @@ class OC_BackgroundJob_Worker{ OC_Appconfig::setValue( 'core', 'backgroundjobs_task', '' ); } } - + return true; } } diff --git a/lib/base.php b/lib/base.php index d3f3c5ba1c6..0c3ab8527a9 100644 --- a/lib/base.php +++ b/lib/base.php @@ -239,7 +239,7 @@ class OC{ OC_Util::addScript( 'backgroundjobs' ); } } - + OC_Util::addStyle( "styles" ); OC_Util::addStyle( "multiselect" ); OC_Util::addStyle( "jquery-ui-1.8.16.custom" ); @@ -473,7 +473,7 @@ class OC{ // Someone wants to log in : } elseif (OC::tryFormLogin()) { $error = true; - + // The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP } elseif (OC::tryBasicAuthLogin()) { $error = true; diff --git a/lib/cache.php b/lib/cache.php index 55f189a5da8..fed990b5b34 100644 --- a/lib/cache.php +++ b/lib/cache.php @@ -38,7 +38,7 @@ class OC_Cache { if (!self::$global_cache_fast && function_exists('apc_store')) { self::$global_cache_fast = new OC_Cache_APC(true); } - + self::$global_cache = new OC_Cache_FileGlobal(); if (self::$global_cache_fast) { self::$global_cache = new OC_Cache_Broker(self::$global_cache_fast, self::$global_cache); @@ -67,7 +67,7 @@ class OC_Cache { if (!self::$user_cache_fast && function_exists('apc_store')) { self::$user_cache_fast = new OC_Cache_APC(); } - + self::$user_cache = new OC_Cache_File(); if (self::$user_cache_fast) { self::$user_cache = new OC_Cache_Broker(self::$user_cache_fast, self::$user_cache); diff --git a/lib/connector/sabre/auth.php b/lib/connector/sabre/auth.php index 99f696e3a07..8197571e949 100644 --- a/lib/connector/sabre/auth.php +++ b/lib/connector/sabre/auth.php @@ -45,4 +45,4 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { } } } -} +} diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index cd3ed60292c..a7502446152 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -203,4 +203,3 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa return $props; } } - diff --git a/lib/connector/sabre/file.php b/lib/connector/sabre/file.php index 9d571fceb0d..5bd38240d44 100644 --- a/lib/connector/sabre/file.php +++ b/lib/connector/sabre/file.php @@ -126,4 +126,3 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D } } - diff --git a/lib/connector/sabre/locks.php b/lib/connector/sabre/locks.php index 0ddc8b18d2f..a01653d960a 100644 --- a/lib/connector/sabre/locks.php +++ b/lib/connector/sabre/locks.php @@ -42,7 +42,7 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { // pure sql. MySQL's non-standard string concatination prevents us // from doing this though. // NOTE: SQLite requires time() to be inserted directly. That's ugly - // but otherwise reading locks from SQLite Databases will return + // but otherwise reading locks from SQLite Databases will return // nothing $query = 'SELECT * FROM `*PREFIX*locks` WHERE `userid` = ? AND (`created` + `timeout`) > '.time().' AND (( `uri` = ?)'; $params = array(OC_User::getUser(),$uri); @@ -75,7 +75,7 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { $stmt = OC_DB::prepare( $query ); $result = $stmt->execute( $params ); - + $lockList = array(); while( $row = $result->fetchRow()){ @@ -114,7 +114,7 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { foreach($locks as $lock) { if ($lock->token == $lockInfo->token) $exists = true; } - + if ($exists) { $query = OC_DB::prepare( 'UPDATE `*PREFIX*locks` SET `owner` = ?, `timeout` = ?, `scope` = ?, `depth` = ?, `uri` = ?, `created` = ? WHERE `userid` = ? AND `token` = ?' ); $result = $query->execute( array($lockInfo->owner,$lockInfo->timeout,$lockInfo->scope,$lockInfo->depth,$uri,$lockInfo->created,OC_User::getUser(),$lockInfo->token)); diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index b9bf474a041..afcabe7bef6 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -80,9 +80,9 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr $oldPath = $this->path; OC_Filesystem::rename($this->path,$newPath); - + $this->path = $newPath; - + $query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertypath` = ? WHERE `userid` = ? AND `propertypath` = ?' ); $query->execute( array( $newPath,OC_User::getUser(), $oldPath )); @@ -123,8 +123,8 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr } - /** - * sets the last modification time of the file (mtime) to the value given + /** + * sets the last modification time of the file (mtime) to the value given * in the second parameter or to now if the second param is empty. * Even if the modification time is set to a custom value the access time is set to now. */ @@ -195,7 +195,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr if(count($properties) == 0){ return $this->property_cache; } - + $props = array(); foreach($properties as $property) { if (isset($this->property_cache[$property])) $props[$property] = $this->property_cache[$property]; diff --git a/lib/db.php b/lib/db.php index 4214451c85f..ecaf9e37ee5 100644 --- a/lib/db.php +++ b/lib/db.php @@ -27,7 +27,7 @@ class OC_DB { const BACKEND_PDO=0; const BACKEND_MDB2=1; - + static private $connection; //the prefered connection to use, either PDO or MDB2 static private $backend=null; static private $MDB2=false; @@ -55,7 +55,7 @@ class OC_DB { } return self::BACKEND_MDB2; } - + /** * @brief connects to the database * @returns true if connection can be established or nothing (die()) @@ -104,7 +104,7 @@ class OC_DB { } $opts = array(); $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); - + // do nothing if the connection already has been established if(!self::$PDO){ // Add the dsn according to the database type @@ -158,7 +158,7 @@ class OC_DB { } return true; } - + /** * connect to the database using mdb2 */ @@ -234,10 +234,10 @@ class OC_DB { } break; } - + // Try to establish connection self::$MDB2 = MDB2::factory( $dsn, $options ); - + // Die if we could not connect if( PEAR::isError( self::$MDB2 )){ echo( 'can not connect to database, using '.$type.'. ('.self::$MDB2->getUserInfo().')'); @@ -245,11 +245,11 @@ class OC_DB { OC_Log::write('core',self::$MDB2->getMessage(),OC_Log::FATAL); die( $error ); } - + // We always, really always want associative arrays self::$MDB2->setFetchMode(MDB2_FETCHMODE_ASSOC); } - + // we are done. great! return true; } @@ -262,7 +262,7 @@ class OC_DB { * SQL query via MDB2 prepare(), needs to be execute()'d! */ static public function prepare( $query , $limit=null, $offset=null ){ - + if (!is_null($limit) && $limit != -1) { if (self::$backend == self::BACKEND_MDB2) { //MDB2 uses or emulates limits & offset internally @@ -394,7 +394,7 @@ class OC_DB { // read file $content = file_get_contents( $file ); - + // Make changes and save them to an in-memory file $file2 = 'static://db_scheme'; $content = str_replace( '*dbname*', $CONFIG_DBNAME, $content ); @@ -414,7 +414,7 @@ class OC_DB { // Try to create tables $definition = self::$schema->parseDatabaseDefinitionFile( $file2 ); - + //clean up memory unlink( $file2 ); @@ -427,7 +427,7 @@ class OC_DB { $oldname = $definition['name']; $definition['name']=OC_Config::getValue( "dbuser", $oldname ); } - + $ret=self::$schema->createDatabase( $definition ); // Die in case something went wrong @@ -438,7 +438,7 @@ class OC_DB { return true; } - + /** * @brief update the database scheme * @param $file file to read structure from @@ -451,7 +451,7 @@ class OC_DB { // read file $content = file_get_contents( $file ); - + $previousSchema = self::$schema->getDefinitionFromDatabase(); if (PEAR::isError($previousSchema)) { $error = $previousSchema->getMessage(); @@ -475,10 +475,10 @@ class OC_DB { */ file_put_contents( $file2, $content ); $op = self::$schema->updateDatabase($file2, $previousSchema, array(), false); - + //clean up memory unlink( $file2 ); - + if (PEAR::isError($op)) { $error = $op->getMessage(); $detail = $op->getDebugInfo(); @@ -528,7 +528,7 @@ class OC_DB { self::$prefix=OC_Config::getValue( "dbtableprefix", "oc_" ); } $prefix = self::$prefix; - + // differences in escaping of table names ('`' for mysql) and getting the current timestamp if( $type == 'sqlite' || $type == 'sqlite3' ){ $query = str_replace( '`', '"', $query ); @@ -547,7 +547,7 @@ class OC_DB { return $query; } - + /** * @brief drop a table * @param string $tableNamme the table to drop @@ -557,7 +557,7 @@ class OC_DB { self::$MDB2->loadModule('Manager'); self::$MDB2->dropTable($tableName); } - + /** * remove all tables defined in a database structure xml file * @param string $file the xml file describing the tables @@ -578,7 +578,7 @@ class OC_DB { // get the tables $definition = self::$schema->parseDatabaseDefinitionFile( $file2 ); - + // Delete our temporary file unlink( $file2 ); $tables=array_keys($definition['tables']); @@ -586,7 +586,7 @@ class OC_DB { self::dropTable($table); } } - + /** * @brief replaces the owncloud tables with a new set * @param $file string path to the MDB2 xml db export file @@ -596,20 +596,20 @@ class OC_DB { self::beginTransaction(); // Delete the old tables self::removeDBStructure( OC::$SERVERROOT . '/db_structure.xml' ); - + foreach($apps as $app){ $path = OC_App::getAppPath($app).'/appinfo/database.xml'; if(file_exists($path)){ - self::removeDBStructure( $path ); + self::removeDBStructure( $path ); } } - + // Create new tables self::createDBFromStructure( $file ); self::commit(); - + } - + /** * Start a transaction */ @@ -660,7 +660,7 @@ class PDOStatementWrapper{ public function __construct($statement){ $this->statement=$statement; } - + /** * make execute return the result instead of a bool */ @@ -677,7 +677,7 @@ class PDOStatementWrapper{ return false; } } - + /** * provide numRows */ @@ -690,21 +690,21 @@ class PDOStatementWrapper{ return $this->statement->rowCount(); } } - + /** * provide an alias for fetch */ public function fetchRow(){ return $this->statement->fetch(); } - + /** * pass all other function directly to the PDOStatement */ public function __call($name,$arguments){ return call_user_func_array(array($this->statement,$name),$arguments); } - + /** * Provide a simple fetchOne. * fetch single column from the next row @@ -714,4 +714,3 @@ class PDOStatementWrapper{ return $this->statement->fetchColumn($colnum); } } - diff --git a/lib/eventsource.php b/lib/eventsource.php index 95af2e471bc..45a20806b6e 100644 --- a/lib/eventsource.php +++ b/lib/eventsource.php @@ -30,7 +30,7 @@ class OC_EventSource{ private $fallback; private $fallBackId=0; - + public function __construct(){ @ob_end_clean(); header('Cache-Control: no-cache'); diff --git a/lib/filecache.php b/lib/filecache.php index e85d6747f90..364b908bcfa 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -76,14 +76,14 @@ class OC_FileCache{ self::update($id,$data); return; } - + // add parent directory to the file cache if it does not exist yet. if ($parent == -1 && $fullpath != $root) { $parentDir = substr(dirname($path), 0, strrpos(dirname($path), DIRECTORY_SEPARATOR)); self::scanFile($parentDir); $parent = self::getParentId($fullpath); } - + if(!isset($data['size']) or !isset($data['mtime'])){//save incomplete data for the next time we write it OC_FileCache_Cached::$savedData[$fullpath]=$data; return; @@ -136,7 +136,7 @@ class OC_FileCache{ $queryParts[]='`mimepart`=?'; } $arguments[]=$id; - + $sql = 'UPDATE `*PREFIX*fscache` SET '.implode(' , ',$queryParts).' WHERE `id`=?'; $query=OC_DB::prepare($sql); $result=$query->execute($arguments); @@ -192,14 +192,14 @@ class OC_FileCache{ } $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE `path_hash`=?'); $query->execute(array(md5($root.$path))); - + //delete everything inside the folder $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE `path` LIKE ?'); $query->execute(array($root.$path.'/%')); OC_Cache::remove('fileid/'.$root.$path); } - + /** * return array of filenames matching the querty * @param string $query @@ -277,14 +277,14 @@ class OC_FileCache{ if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$fullPath)){ return $cache->get('fileid/'.$fullPath); } - + $query=OC_DB::prepare('SELECT `id` FROM `*PREFIX*fscache` WHERE `path_hash`=?'); $result=$query->execute(array(md5($fullPath))); if(OC_DB::isError($result)){ OC_Log::write('files','error while getting file id of '.$path,OC_Log::ERROR); return -1; } - + $result=$result->fetchRow(); if(is_array($result)){ $id=$result['id']; @@ -294,10 +294,10 @@ class OC_FileCache{ if($cache=OC_Cache::getUserCache(true)){ $cache->set('fileid/'.$fullPath,$id); } - + return $id; } - + /** * get the file path from the id, relative to the home folder of the user * @param int id @@ -331,7 +331,7 @@ class OC_FileCache{ return self::getId(dirname($path),''); } } - + /** * adjust the size of the parent folders * @param string $path @@ -390,7 +390,7 @@ class OC_FileCache{ } } } - + OC_FileCache_Update::cleanFolder($path,$root); self::increaseSize($path,$totalSize,$root); } diff --git a/lib/filecache/cached.php b/lib/filecache/cached.php index 95cc0ac300e..505f1a5e2a0 100644 --- a/lib/filecache/cached.php +++ b/lib/filecache/cached.php @@ -12,7 +12,7 @@ */ class OC_FileCache_Cached{ public static $savedData=array(); - + public static function get($path,$root=false){ if($root===false){ $root=OC_Filesystem::getRoot(); diff --git a/lib/filecache/update.php b/lib/filecache/update.php index 0b5ff8e2446..7b5f18fe5c1 100644 --- a/lib/filecache/update.php +++ b/lib/filecache/update.php @@ -42,7 +42,7 @@ class OC_FileCache_Update{ return true; } } - + /** * delete non existing files from the cache */ @@ -148,7 +148,7 @@ class OC_FileCache_Update{ } $mimetype=$view->getMimeType($path); - + $size=0; $cached=OC_FileCache_Cached::get($path,$root); $cachedSize=isset($cached['size'])?$cached['size']:0; diff --git a/lib/fileproxy.php b/lib/fileproxy.php index ec04faa9bc5..a1c79874bf7 100644 --- a/lib/fileproxy.php +++ b/lib/fileproxy.php @@ -43,7 +43,7 @@ class OC_FileProxy{ private static $proxies=array(); public static $enabled=true; - + /** * fallback function when a proxy operation is not implemented * @param string $function the name of the proxy operation @@ -58,7 +58,7 @@ class OC_FileProxy{ return $arguments[1]; } } - + /** * register a proxy to be used * @param OC_FileProxy $proxy @@ -66,7 +66,7 @@ class OC_FileProxy{ public static function register($proxy){ self::$proxies[]=$proxy; } - + public static function getProxies($operation){ $proxies=array(); foreach(self::$proxies as $proxy){ diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php index 7316224cc61..4c6261fc514 100644 --- a/lib/fileproxy/quota.php +++ b/lib/fileproxy/quota.php @@ -27,7 +27,7 @@ class OC_FileProxy_Quota extends OC_FileProxy{ private $userQuota=-1; - + /** * get the quota for the current user * @return int @@ -46,9 +46,9 @@ class OC_FileProxy_Quota extends OC_FileProxy{ $this->userQuota=OC_Helper::computerFileSize($userQuota); } return $this->userQuota; - + } - + /** * get the free space in the users home folder * @return int @@ -69,7 +69,7 @@ class OC_FileProxy_Quota extends OC_FileProxy{ } return $totalSpace-$usedSpace; } - + public function postFree_space($path,$space){ $free=$this->getFreeSpace(); if($free==0){ diff --git a/lib/files.php b/lib/files.php index 1a1fffa0a50..0c71f6e5e42 100644 --- a/lib/files.php +++ b/lib/files.php @@ -406,9 +406,9 @@ class OC_Files { //check for write permissions if(is_writable(OC::$SERVERROOT.'/.htaccess')) { file_put_contents(OC::$SERVERROOT.'/.htaccess', $htaccess); - return OC_Helper::computerFileSize($size); + return OC_Helper::computerFileSize($size); } else { OC_Log::write('files','Can\'t write upload limit to '.OC::$SERVERROOT.'/.htaccess. Please check the file permissions',OC_Log::WARN); } - + return false; } diff --git a/lib/filestorage/common.php b/lib/filestorage/common.php index c829be62f74..e2828e56170 100644 --- a/lib/filestorage/common.php +++ b/lib/filestorage/common.php @@ -21,11 +21,11 @@ */ /** - * Storage backend class for providing common filesystem operation methods + * Storage backend class for providing common filesystem operation methods * which are not storage-backend specific. * * OC_Filestorage_Common is never used directly; it is extended by all other - * storage backends, where its methods may be overridden, and additional + * storage backends, where its methods may be overridden, and additional * (backend-specific) methods are defined. * * Some OC_Filestorage_Common methods call functions which are first defined @@ -115,71 +115,71 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { * @param $empty Flag indicating whether directory will be emptied * @returns true/false * - * @note By default the directory specified by $directory will be + * @note By default the directory specified by $directory will be * deleted together with its contents. To avoid this set $empty to true */ public function deleteAll( $directory, $empty = false ) { - + // strip leading slash if( substr( $directory, 0, 1 ) == "/" ) { - + $directory = substr( $directory, 1 ); - + } - + // strip trailing slash if( substr( $directory, -1) == "/" ) { - + $directory = substr( $directory, 0, -1 ); - + } - + if ( !$this->file_exists( \OCP\USER::getUser() . '/' . $directory ) || !$this->is_dir( \OCP\USER::getUser() . '/' . $directory ) ) { - + return false; - + } elseif( !$this->is_readable( \OCP\USER::getUser() . '/' . $directory ) ) { - + return false; - + } else { - + $directoryHandle = $this->opendir( \OCP\USER::getUser() . '/' . $directory ); - + while ( $contents = readdir( $directoryHandle ) ) { - + if ( $contents != '.' && $contents != '..') { - + $path = $directory . "/" . $contents; - + if ( $this->is_dir( $path ) ) { - + deleteAll( $path ); - + } else { - + $this->unlink( \OCP\USER::getUser() .'/' . $path ); // TODO: make unlink use same system path as is_dir - + } } - + } - + //$this->closedir( $directoryHandle ); // TODO: implement closedir in OC_FSV if ( $empty == false ) { - + if ( !$this->rmdir( $directory ) ) { - + return false; - + } - + } - + return true; } - + } public function getMimeType($path){ if(!$this->file_exists($path)){ diff --git a/lib/filestorage/commontest.php b/lib/filestorage/commontest.php index b5126a407b3..4d06e4fa321 100644 --- a/lib/filestorage/commontest.php +++ b/lib/filestorage/commontest.php @@ -31,11 +31,11 @@ class OC_Filestorage_CommonTest extends OC_Filestorage_Common{ * @var OC_FileStorage_Local */ private $storage; - + public function __construct($params){ $this->storage=new OC_Filestorage_Local($params); } - + public function mkdir($path){ return $this->storage->mkdir($path); } diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index 22d17469df3..b19205f45b1 100644 --- a/lib/filestorage/local.php +++ b/lib/filestorage/local.php @@ -61,7 +61,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ return filemtime($this->datadir.$path); } public function touch($path, $mtime=null){ - // sets the modification time of the file to the given value. + // sets the modification time of the file to the given value. // If mtime is nil the current time is set. // note that the access time of the file always changes to the current time. if(!is_null($mtime)){ @@ -72,7 +72,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ if( $result ) { clearstatcache( true, $this->datadir.$path ); } - + return $result; } public function file_get_contents($path){ diff --git a/lib/filesystem.php b/lib/filesystem.php index fbb02900456..327329f9d91 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -3,22 +3,22 @@ /** * ownCloud * -* @author Frank Karlitschek -* @copyright 2012 Frank Karlitschek frank@owncloud.org -* +* @author Frank Karlitschek +* @copyright 2012 Frank Karlitschek frank@owncloud.org +* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE -* License as published by the Free Software Foundation; either +* License as published by the Free Software Foundation; either * version 3 of the License, or any later version. -* +* * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU AFFERO GENERAL PUBLIC LICENSE for more details. -* -* You should have received a copy of the GNU Affero General Public +* +* You should have received a copy of the GNU Affero General Public * License along with this library. If not, see . -* +* */ @@ -193,7 +193,7 @@ class OC_Filesystem{ return OC_Filesystem::$storages[$mountpoint]; } } - + static public function init($root){ if(self::$defaultInstance){ return false; @@ -237,7 +237,7 @@ class OC_Filesystem{ } } } - + self::$loaded=true; } @@ -257,14 +257,14 @@ class OC_Filesystem{ static public function getView(){ return self::$defaultInstance; } - + /** * tear down the filesystem, removing all storage providers */ static public function tearDown(){ self::$storages=array(); } - + /** * create a new storage of a specific type * @param string type @@ -284,7 +284,7 @@ class OC_Filesystem{ return false; } } - + /** * change the root to a fake root * @param string fakeRoot @@ -326,7 +326,7 @@ class OC_Filesystem{ } self::$mounts[$mountpoint]=array('class'=>$class,'arguments'=>$arguments); } - + /** * return the path to a local version of the file * we need this because we can't know if a file is stored local or not from outside the filestorage and for some purposes a local file is needed @@ -343,7 +343,7 @@ class OC_Filesystem{ static public function getLocalFolder($path){ return self::$defaultInstance->getLocalFolder($path); } - + /** * return path to file which reflects one visible in browser * @param string path @@ -357,7 +357,7 @@ class OC_Filesystem{ } return $newpath; } - + /** * check if the requested path is valid * @param string path @@ -372,7 +372,7 @@ class OC_Filesystem{ } return true; } - + /** * checks if a file is blacklsited for storage in the filesystem * Listens to write and rename hooks @@ -392,7 +392,7 @@ class OC_Filesystem{ } } } - + /** * following functions are equivilent to their php buildin equivilents for arguments/return values. */ @@ -496,11 +496,11 @@ class OC_Filesystem{ static public function hash($type,$path, $raw = false){ return self::$defaultInstance->hash($type,$path, $raw); } - + static public function free_space($path='/'){ return self::$defaultInstance->free_space($path); } - + static public function search($query){ return OC_FileCache::search($query); } diff --git a/lib/filesystemview.php b/lib/filesystemview.php index a888e5340ea..461a0262560 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -56,7 +56,7 @@ class OC_FilesystemView { } return $this->fakeRoot.$path; } - + /** * change the root to a fake toor * @param string fakeRoot @@ -325,7 +325,7 @@ class OC_FilesystemView { if(OC_FileProxy::runPreProxies('rename', $absolutePath1, $absolutePath2) and OC_Filesystem::isValidPath($path2)) { $path1 = $this->getRelativePath($absolutePath1); $path2 = $this->getRelativePath($absolutePath2); - + if($path1 == null or $path2 == null) { return false; } @@ -352,7 +352,7 @@ class OC_FilesystemView { $storage1 = $this->getStorage($path1); $storage1->unlink($this->getInternalPath($path1.$postFix1)); $result = $count>0; - } + } OC_Hook::emit( OC_Filesystem::CLASSNAME, OC_Filesystem::signal_post_rename, @@ -373,7 +373,7 @@ class OC_FilesystemView { if(OC_FileProxy::runPreProxies('copy', $absolutePath1, $absolutePath2) and OC_Filesystem::isValidPath($path2)) { $path1 = $this->getRelativePath($absolutePath1); $path2 = $this->getRelativePath($absolutePath2); - + if($path1 == null or $path2 == null) { return false; } diff --git a/lib/geo.php b/lib/geo.php index a967ab28a96..964605b1c1c 100644 --- a/lib/geo.php +++ b/lib/geo.php @@ -12,7 +12,7 @@ class OC_Geo{ * @param (string) $longitude - Longitude * @return (string) $timezone - closest timezone */ - public static function timezone($latitude, $longitude){ + public static function timezone($latitude, $longitude){ $alltimezones = DateTimeZone::listIdentifiers(); $variances = array(); //calculate for all timezones the system know diff --git a/lib/group.php b/lib/group.php index 72cf5dc89af..dd70a94eb0d 100644 --- a/lib/group.php +++ b/lib/group.php @@ -271,7 +271,7 @@ class OC_Group { } return $users; } - + /** * @brief get a list of all users in several groups * @param array $gids diff --git a/lib/hook.php b/lib/hook.php index b53755310e0..ee390d6cd5a 100644 --- a/lib/hook.php +++ b/lib/hook.php @@ -83,4 +83,3 @@ class OC_Hook{ } } } - diff --git a/lib/image.php b/lib/image.php index 90c64320a7c..e87cf9e16d9 100644 --- a/lib/image.php +++ b/lib/image.php @@ -383,7 +383,7 @@ class OC_Image { /** * @brief Loads an image from an open file handle. * It is the responsibility of the caller to position the pointer at the correct place and to close the handle again. - * @param $handle + * @param $handle * @returns An image resource or false on error */ public function loadFromFileHandle($handle) { @@ -468,7 +468,7 @@ class OC_Image { break; */ default: - + // this is mostly file created from encrypted file $this->resource = imagecreatefromstring(\OC_Filesystem::file_get_contents(\OC_Filesystem::getLocalPath($imagepath))); $itype = IMAGETYPE_PNG; @@ -534,7 +534,7 @@ class OC_Image { $width_orig=imageSX($this->resource); $height_orig=imageSY($this->resource); $ratio_orig = $width_orig/$height_orig; - + if ($ratio_orig > 1) { $new_height = round($maxsize/$ratio_orig); $new_width = $maxsize; @@ -564,7 +564,7 @@ class OC_Image { public function preciseResize($width, $height) { if (!$this->valid()) { OC_Log::write('core',__METHOD__.'(): No image loaded', OC_Log::ERROR); - return false; + return false; } $width_orig=imageSX($this->resource); $height_orig=imageSY($this->resource); diff --git a/lib/json.php b/lib/json.php index 3d9d5c96fa3..32ae734e4a5 100644 --- a/lib/json.php +++ b/lib/json.php @@ -52,7 +52,7 @@ class OC_JSON{ exit(); } } - + /** * Check if the user is a admin, send json error msg if not */ @@ -64,7 +64,7 @@ class OC_JSON{ exit(); } } - + /** * Check if the user is a subadmin, send json error msg if not */ diff --git a/lib/l10n.php b/lib/l10n.php index e7f5ffea0e4..cfa0e26486b 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -28,17 +28,17 @@ class OC_L10N{ * cached instances */ protected static $instances=array(); - + /** * cache */ protected static $cache = array(); - + /** * The best language */ protected static $language = ''; - + /** * App of this object */ @@ -53,7 +53,7 @@ class OC_L10N{ * Translations */ private $translations = array(); - + /** * Localization */ @@ -61,7 +61,7 @@ class OC_L10N{ 'date' => 'd.m.Y', 'datetime' => 'd.m.Y H:i:s', 'time' => 'H:i:s'); - + /** * get an L10N instance * @return OC_L10N @@ -76,7 +76,7 @@ class OC_L10N{ return new OC_L10N($app,$lang); } } - + /** * @brief The constructor * @param $app the app requesting l10n @@ -90,7 +90,7 @@ class OC_L10N{ $this->app = $app; $this->lang = $lang; } - + protected function init(){ if ($this->app === true) { return; @@ -119,7 +119,7 @@ class OC_L10N{ if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)){ $this->translations = $TRANSLATIONS; } - } + } if(file_exists(OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php')){ // Include the file, save the data from $CONFIG @@ -188,7 +188,7 @@ class OC_L10N{ * @returns String or false * * Returns the localized data. - * + * * Implemented types: * - date * - Creates a date @@ -241,7 +241,7 @@ class OC_L10N{ * @returns language * * If $app is an array, ownCloud assumes that these are the available - * languages. Otherwise ownCloud tries to find the files in the l10n + * languages. Otherwise ownCloud tries to find the files in the l10n * folder. * * If nothing works it returns 'en' diff --git a/lib/mail.php b/lib/mail.php index 0ac9a97c1bf..acdadeffd33 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -17,7 +17,7 @@ require_once('class.phpmailer.php'); class OC_Mail { /** - * send an email + * send an email * * @param string $toaddress * @param string $toname @@ -31,9 +31,9 @@ class OC_Mail { $SMTPMODE = OC_Config::getValue( 'mail_smtpmode', 'sendmail' ); $SMTPHOST = OC_Config::getValue( 'mail_smtphost', '127.0.0.1' ); - $SMTPAUTH = OC_Config::getValue( 'mail_smtpauth', false ); - $SMTPUSERNAME = OC_Config::getValue( 'mail_smtpname', '' ); - $SMTPPASSWORD = OC_Config::getValue( 'mail_smtppassword', '' ); + $SMTPAUTH = OC_Config::getValue( 'mail_smtpauth', false ); + $SMTPUSERNAME = OC_Config::getValue( 'mail_smtpname', '' ); + $SMTPPASSWORD = OC_Config::getValue( 'mail_smtppassword', '' ); $mailo = new PHPMailer(true); diff --git a/lib/migrate.php b/lib/migrate.php index e998cf1f4a8..7d7169c4e46 100644 --- a/lib/migrate.php +++ b/lib/migrate.php @@ -196,7 +196,7 @@ class OC_Migrate{ * @param optional $uid userid of new user */ public static function import( $path, $type='user', $uid=null ){ - + $datadir = OC_Config::getValue( 'datadirectory' ); // Extract the zip if( !$extractpath = self::extractZip( $path ) ){ @@ -222,13 +222,13 @@ class OC_Migrate{ if( self::$exporttype == 'user' ){ self::$uid = !is_null($uid) ? $uid : $currentuser; } - + // We need to be an admin if we are not importing our own data if(($type == 'user' && self::$uid != $currentuser) || $type != 'user' ){ if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )){ // Naughty. OC_Log::write( 'migration', 'Import not permitted.', OC_Log::ERROR ); - return json_encode( array( 'success' => false ) ); + return json_encode( array( 'success' => false ) ); } } @@ -411,7 +411,7 @@ class OC_Migrate{ $success = false; } } - + // Run the export function? if( $success ){ // Set the provider properties @@ -421,7 +421,7 @@ class OC_Migrate{ $return['apps'][$provider->getID()]['success'] = false; $return['apps'][$provider->getID()]['message'] = 'failed to create the app tables'; } - + // Now add some app info the the return array $appinfo = OC_App::getAppInfo( $provider->getID() ); $return['apps'][$provider->getID()]['version'] = OC_App::getAppVersion($provider->getID()); diff --git a/lib/migration/content.php b/lib/migration/content.php index 5c89e6bacd6..e04ac224f79 100644 --- a/lib/migration/content.php +++ b/lib/migration/content.php @@ -25,13 +25,13 @@ * provides methods to add and access data from the migration */ class OC_Migration_Content{ - + private $zip=false; // Holds the MDB2 object private $db=null; // Holds an array of tmpfiles to delete after zip creation private $tmpfiles=false; - + /** * @brief sets up the * @param $zip ZipArchive object @@ -42,25 +42,25 @@ class OC_Migration_Content{ $this->zip = $zip; $this->db = $db; - + if( !is_null( $db ) ){ // Get db path $db = $this->db->getDatabase(); $this->tmpfiles[] = $db; } - + } - + // @brief prepares the db // @param $query the sql query to prepare public function prepare( $query ){ - + // Optimize the query $query = $this->processQuery( $query ); - + // Optimize the query $query = $this->db->prepare( $query ); - + // Die if we have an error (error means: bad query, not 0 results!) if( PEAR::isError( $query ) ) { $entry = 'DB Error: "'.$result->getMessage().'"
'; @@ -68,11 +68,11 @@ class OC_Migration_Content{ OC_Log::write( 'migration', $entry, OC_Log::FATAL ); return false; } else { - return $query; + return $query; } - + } - + /** * @brief processes the db query * @param $query the query to process @@ -86,7 +86,7 @@ class OC_Migration_Content{ $query = str_replace( '*PREFIX*', '', $query ); return $query; } - + /** * @brief copys rows to migration.db from the main database * @param $options array of options. @@ -94,19 +94,19 @@ class OC_Migration_Content{ */ public function copyRows( $options ){ if( !array_key_exists( 'table', $options ) ){ - return false; + return false; } - + $return = array(); - + // Need to include 'where' in the query? if( array_key_exists( 'matchval', $options ) && array_key_exists( 'matchcol', $options ) ){ - + // If only one matchval, create an array if(!is_array($options['matchval'])){ - $options['matchval'] = array( $options['matchval'] ); + $options['matchval'] = array( $options['matchval'] ); } - + foreach( $options['matchval'] as $matchval ){ // Run the query for this match value (where x = y value) $sql = 'SELECT * FROM `*PREFIX*' . $options['table'] . '` WHERE `' . $options['matchcol'] . '` LIKE ?'; @@ -122,13 +122,13 @@ class OC_Migration_Content{ $query = OC_DB::prepare( $sql ); $results = $query->execute(); $return = $this->insertData( $results, $options ); - + } - + return $return; - + } - + /** * @brief saves a sql data set into migration.db * @param $data a sql data set returned from self::prepare()->query() @@ -144,7 +144,7 @@ class OC_Migration_Content{ $fields[] = $field; $values[] = $value; } - + // Generate some sql $sql = "INSERT INTO `" . $options['table'] . '` ( `'; $fieldssql = implode( '`, `', $fields ); @@ -154,7 +154,7 @@ class OC_Migration_Content{ // Make the query $query = $this->prepare( $sql ); if( !$query ){ - OC_Log::write( 'migration', 'Invalid sql produced: '.$sql, OC_Log::FATAL ); + OC_Log::write( 'migration', 'Invalid sql produced: '.$sql, OC_Log::FATAL ); return false; exit(); } else { @@ -162,10 +162,10 @@ class OC_Migration_Content{ // Do we need to return some values? if( array_key_exists( 'idcol', $options ) ){ // Yes we do - $return[] = $row[$options['idcol']]; + $return[] = $row[$options['idcol']]; } else { // Take a guess and return the first field :) - $return[] = reset($row); + $return[] = reset($row); } } $fields = ''; @@ -173,11 +173,11 @@ class OC_Migration_Content{ } return $return; } - + /** * @brief adds a directory to the zip object * @param $dir string path of the directory to add - * @param $recursive bool + * @param $recursive bool * @param $internaldir string path of folder to add dir to in zip * @return bool */ @@ -186,13 +186,13 @@ class OC_Migration_Content{ $this->zip->addEmptyDir($internaldir . $dirname); $internaldir.=$dirname.='/'; if( !file_exists( $dir ) ){ - return false; + return false; } if ($dirhandle = opendir($dir)) { while (false !== ( $file = readdir($dirhandle))) { - + if (( $file != '.' ) && ( $file != '..' )) { - + if (is_dir($dir . '/' . $file) && $recursive) { $this->addDir($dir . '/' . $file, $recursive, $internaldir); } elseif (is_file($dir . '/' . $file)) { @@ -207,7 +207,7 @@ class OC_Migration_Content{ } return true; } - + /** * @brief adds a file to the zip from a given string * @param $data string of data to add @@ -220,13 +220,13 @@ class OC_Migration_Content{ $this->tmpfiles[] = $file; if( !file_put_contents( $file, $data ) ){ OC_Log::write( 'migation', 'Failed to save data to a temporary file', OC_Log::ERROR ); - return false; + return false; } // Add file to the zip $this->zip->addFile( $file, $path ); return true; } - + /** * @brief closes the zip, removes temp files * @return bool @@ -234,19 +234,19 @@ class OC_Migration_Content{ public function finish(){ if( !$this->zip->close() ){ OC_Log::write( 'migration', 'Failed to write the zip file with error: '.$this->zip->getStatusString(), OC_Log::ERROR ); - return false; + return false; } $this->cleanup(); - return true; - } - + return true; + } + /** * @brief cleans up after the zip */ private function cleanup(){ // Delete tmp files foreach($this->tmpfiles as $i){ - unlink( $i ); - } + unlink( $i ); + } } } diff --git a/lib/migration/provider.php b/lib/migration/provider.php index 91336f3019d..259b1fe7ae6 100644 --- a/lib/migration/provider.php +++ b/lib/migration/provider.php @@ -3,37 +3,37 @@ * provides search functionalty */ abstract class OC_Migration_Provider{ - + protected $id=false; - protected $content=false; + protected $content=false; protected $uid=false; protected $olduid=false; protected $appinfo=false; - + public function __construct( $appid ){ // Set the id $this->id = $appid; OC_Migrate::registerProvider( $this ); } - + /** * @brief exports data for apps * @return array appdata to be exported */ abstract function export( ); - + /** * @brief imports data for the app * @return void */ abstract function import( ); - + /** * @brief sets the OC_Migration_Content object to $this->content * @param $content a OC_Migration_Content object */ public function setData( $uid, $content, $info=null ){ - $this->content = $content; + $this->content = $content; $this->uid = $uid; $id = $this->id; if( !is_null( $info ) ){ @@ -41,12 +41,12 @@ abstract class OC_Migration_Provider{ $this->appinfo = $info->apps->$id; } } - + /** * @brief returns the appid of the provider * @return string */ public function getID(){ - return $this->id; + return $this->id; } } diff --git a/lib/ocs.php b/lib/ocs.php index 3157aae99e6..ad01e5c42fa 100644 --- a/lib/ocs.php +++ b/lib/ocs.php @@ -153,27 +153,27 @@ class OC_OCS { OC_OCS::privatedatadelete($format, $app, $key); // CLOUD - // systemWebApps + // systemWebApps }elseif(($method=='get') and ($ex[$paracount-5] == 'v1.php') and ($ex[$paracount-4]=='cloud') and ($ex[$paracount-3] == 'system') and ($ex[$paracount-2] == 'webapps')){ OC_OCS::systemwebapps($format); - // quotaget + // quotaget }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'quota')){ $user=$ex[$paracount-3]; OC_OCS::quotaget($format,$user); - // quotaset + // quotaset }elseif(($method=='post') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'quota')){ $user=$ex[$paracount-3]; $quota = self::readData('post', 'quota', 'int'); OC_OCS::quotaset($format,$user,$quota); - // keygetpublic + // keygetpublic }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'publickey')){ $user=$ex[$paracount-3]; OC_OCS::publicKeyGet($format,$user); - // keygetprivate + // keygetprivate }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'privatekey')){ $user=$ex[$paracount-3]; OC_OCS::privateKeyGet($format,$user); @@ -501,7 +501,7 @@ class OC_OCS { echo(OC_OCS::generatexml($format,'ok',100,'')); } } - + /** * get private data * @param string $user diff --git a/lib/ocsclient.php b/lib/ocsclient.php index ae35470cff6..9d510046697 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -29,7 +29,7 @@ class OC_OCSClient{ /** - * @brief Get the url of the OCS AppStore server. + * @brief Get the url of the OCS AppStore server. * @returns string of the AppStore server * * This function returns the url of the OCS AppStore server. It´s possible to set it in the config file or it will fallback to the default @@ -40,7 +40,7 @@ class OC_OCSClient{ } /** - * @brief Get the url of the OCS KB server. + * @brief Get the url of the OCS KB server. * @returns string of the KB server * This function returns the url of the OCS knowledge base server. It´s possible to set it in the config file or it will fallback to the default */ @@ -61,13 +61,13 @@ class OC_OCSClient{ return NULL; } $url=OC_OCSClient::getAppStoreURL().'/content/categories'; - + $xml=@file_get_contents($url); if($xml==FALSE){ return NULL; } $data=simplexml_load_string($xml); - + $tmp=$data->data; $cats=array(); @@ -119,9 +119,9 @@ class OC_OCSClient{ $app['preview']=(string)$tmp[$i]->smallpreviewpic1; $app['changed']=strtotime($tmp[$i]->changed); $app['description']=(string)$tmp[$i]->description; - + $apps[]=$app; - } + } return $apps; } @@ -184,7 +184,7 @@ class OC_OCSClient{ $tmp=$data->data->content; $app=array(); - if(isset($tmp->downloadlink)) { + if(isset($tmp->downloadlink)) { $app['downloadlink']=$tmp->downloadlink; }else{ $app['downloadlink']=''; @@ -199,7 +199,7 @@ class OC_OCSClient{ * * This function returns a list of all the knowledgebase entries from the OCS server */ - public static function getKnownledgebaseEntries($page,$pagesize,$search=''){ + public static function getKnownledgebaseEntries($page,$pagesize,$search=''){ if(OC_Config::getValue('knowledgebaseenabled', true)==false){ $kbe=array(); $kbe['totalitems']=0; diff --git a/lib/preferences.php b/lib/preferences.php index b6c4c3a163f..de5747fcccc 100644 --- a/lib/preferences.php +++ b/lib/preferences.php @@ -116,7 +116,7 @@ class OC_Preferences{ // Try to fetch the value, return default if not exists. $query = OC_DB::prepare( 'SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?' ); $result = $query->execute( array( $user, $app, $key )); - + $row = $result->fetchRow(); if($row){ return $row["configvalue"]; diff --git a/lib/public/app.php b/lib/public/app.php index e74f1550740..be38bbff98a 100644 --- a/lib/public/app.php +++ b/lib/public/app.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; @@ -130,7 +130,7 @@ class App { /** - * @brief Check if the app is enabled, redirects to home if not + * @brief Check if the app is enabled, redirects to home if not * @param $app app * @returns true/false */ @@ -140,7 +140,7 @@ class App { /** - * @brief Get the last version of the app, either from appinfo/version or from appinfo/info.xml + * @brief Get the last version of the app, either from appinfo/version or from appinfo/info.xml * @param $app app * @returns true/false */ diff --git a/lib/public/backgroundjob.php b/lib/public/backgroundjob.php index 834bebb5c3c..2962346dbc9 100644 --- a/lib/public/backgroundjob.php +++ b/lib/public/backgroundjob.php @@ -24,7 +24,7 @@ * Public interface of ownCloud forbackground jobs. */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; @@ -42,7 +42,7 @@ namespace OCP; * An example of the queued task would be the creation of the thumbnail. As * soon as the user uploads a picture the gallery app registers the queued * task "create thumbnail" and saves the path in the parameter instead of doing - * the work right away. This makes the app more responsive. As soon as the task + * the work right away. This makes the app more responsive. As soon as the task * is done it will be deleted from the list. */ class BackgroundJob { diff --git a/lib/public/config.php b/lib/public/config.php index ab01902ffe6..f3120b9aaa2 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -27,7 +27,7 @@ */ /** - * @brief use OCP namespace for all classes that are considered public. + * @brief use OCP namespace for all classes that are considered public. * * Classes that use this namespace are for use by apps, and not for use by internal * OC classes diff --git a/lib/public/db.php b/lib/public/db.php index 23c670cf442..e1da62e2d27 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; diff --git a/lib/public/files.php b/lib/public/files.php index 32b3f036744..be5952d362a 100644 --- a/lib/public/files.php +++ b/lib/public/files.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; diff --git a/lib/public/json.php b/lib/public/json.php index 99df79173eb..2a74535f417 100644 --- a/lib/public/json.php +++ b/lib/public/json.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; @@ -47,17 +47,17 @@ class JSON { /** * Check if the user is logged in, send json error msg if not. - * + * * This method checks if a user is logged in. If not, a json error * response will be return and the method will exit from execution * of the script. * The returned json will be in the format: - * + * * {"status":"error","data":{"message":"Authentication error."}} - * + * * Add this call to the start of all ajax method files that requires * an authenticated user. - * + * * @return string json formatted error string if not authenticated. */ public static function checkLoggedIn(){ @@ -66,22 +66,22 @@ class JSON { /** * Check an ajax get/post call if the request token is valid. - * + * * This method checks for a valid variable 'requesttoken' in $_GET, * $_POST and $_SERVER. If a valid token is not found, a json error * response will be return and the method will exit from execution * of the script. * The returned json will be in the format: - * + * * {"status":"error","data":{"message":"Token expired. Please reload page."}} - * - * Add this call to the start of all ajax method files that creates, + * + * Add this call to the start of all ajax method files that creates, * updates or deletes anything. * In cases where you e.g. use an ajax call to load a dialog containing * a submittable form, you will need to add the requesttoken first as a * parameter to the ajax call, then assign it to the template and finally * add a hidden input field also named 'requesttoken' containing the value. - * + * * @return string json formatted error string if not valid. */ public static function callCheck(){ @@ -90,10 +90,10 @@ class JSON { /** * Send json success msg - * + * * Return a json success message with optional extra data. * @see OCP\JSON::error() for the format to use. - * + * * @param array $data The data to use * @return string json formatted string. */ @@ -103,19 +103,19 @@ class JSON { /** * Send json error msg - * - * Return a json error message with optional extra data for + * + * Return a json error message with optional extra data for * error message or app specific data. - * + * * Example use: - * + * * $id = [some value] * OCP\JSON::error(array('data':array('message':'An error happened', 'id': $id))); - * + * * Will return the json formatted string: - * + * * {"status":"error","data":{"message":"An error happened", "id":[some value]}} - * + * * @param array $data The data to use * @return string json formatted error string. */ @@ -134,17 +134,17 @@ class JSON { /** * Check if the App is enabled and send JSON error message instead - * + * * This method checks if a specific app is enabled. If not, a json error * response will be return and the method will exit from execution * of the script. * The returned json will be in the format: - * + * * {"status":"error","data":{"message":"Application is not enabled."}} - * + * * Add this call to the start of all ajax method files that requires * a specific app to be enabled. - * + * * @param string $app The app to check * @return string json formatted string if not enabled. */ @@ -154,17 +154,17 @@ class JSON { /** * Check if the user is a admin, send json error msg if not - * + * * This method checks if the current user has admin rights. If not, a json error * response will be return and the method will exit from execution * of the script. * The returned json will be in the format: - * + * * {"status":"error","data":{"message":"Authentication error."}} - * + * * Add this call to the start of all ajax method files that requires * administrative rights. - * + * * @return string json formatted string if not admin user. */ public static function checkAdminUser(){ diff --git a/lib/public/response.php b/lib/public/response.php index 8dff3bcd354..febb3f14361 100644 --- a/lib/public/response.php +++ b/lib/public/response.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; diff --git a/lib/public/template.php b/lib/public/template.php index a0ed618cb2c..11c740d13ac 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; @@ -88,13 +88,13 @@ function simple_file_size($bytes) { /** * @brief Generate html code for an options block. - * @param $options the options - * @param $selected which one is selected? - * @param $params the parameters + * @param $options the options + * @param $selected which one is selected? + * @param $params the parameters * @returns html options */ function html_select_options($options, $selected, $params=array()) { - return(\html_select_options($options, $selected, $params)); + return(\html_select_options($options, $selected, $params)); } diff --git a/lib/public/user.php b/lib/public/user.php index 2fa599488a7..6228268d75b 100644 --- a/lib/public/user.php +++ b/lib/public/user.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; diff --git a/lib/search.php b/lib/search.php index f8a4b8e96eb..9dfd0cf69ef 100644 --- a/lib/search.php +++ b/lib/search.php @@ -27,7 +27,7 @@ class OC_Search{ static private $providers=array(); static private $registeredProviders=array(); - + /** * remove all registered search providers */ @@ -35,7 +35,7 @@ class OC_Search{ self::$providers=array(); self::$registeredProviders=array(); } - + /** * register a new search provider to be used * @param string $provider class name of a OC_Search_Provider @@ -43,7 +43,7 @@ class OC_Search{ public static function registerProvider($class,$options=array()){ self::$registeredProviders[]=array('class'=>$class,'options'=>$options); } - + /** * search all provider for $query * @param string query @@ -57,7 +57,7 @@ class OC_Search{ } return $results; } - + /** * create instances of all the registered search providers */ diff --git a/lib/search/provider.php b/lib/search/provider.php index b3ee79b4770..b83c5aa61b6 100644 --- a/lib/search/provider.php +++ b/lib/search/provider.php @@ -4,11 +4,11 @@ */ abstract class OC_Search_Provider { private $options; - + public function __construct($options){ $this->options=$options; } - + /** * search for $query * @param string $query diff --git a/lib/setup.php b/lib/setup.php index f7e8c6950ce..e60a461debf 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -18,7 +18,7 @@ if(isset($_POST['install']) AND $_POST['install']=='true') { // We have to launch the installation process : $e = OC_Setup::install($_POST); $errors = array('errors' => $e); - + if(count($e) > 0) { //OC_Template::printGuestPage("", "error", array("errors" => $errors)); $options = array_merge($_POST, $opts, $errors); @@ -37,7 +37,7 @@ class OC_Setup { public static function install($options) { $error = array(); $dbtype = $options['dbtype']; - + if(empty($options['adminlogin'])) { $error[] = 'Set an admin username.'; } @@ -72,7 +72,7 @@ class OC_Setup { $username = htmlspecialchars_decode($options['adminlogin']); $password = htmlspecialchars_decode($options['adminpass']); $datadir = htmlspecialchars_decode($options['directory']); - + //use sqlite3 when available, otherise sqlite2 will be used. if($dbtype=='sqlite' and class_exists('SQLite3')){ $dbtype='sqlite3'; @@ -107,7 +107,7 @@ class OC_Setup { } else { $oldUser=OC_Config::getValue('dbuser', false); - + $query="SELECT user FROM mysql.user WHERE user='$dbuser'"; //this should be enough to check for admin rights in mysql if(mysql_query($query, $connection)) { //use the admin login data for the new database user @@ -184,9 +184,9 @@ class OC_Setup { $dbusername='oc_'.$username; //create a new password so we don't need to store the admin config in the config file $dbpassword=md5(time()); - + self::pg_createDBUser($dbusername, $dbpassword, $connection); - + OC_CONFIG::setValue('dbuser', $dbusername); OC_CONFIG::setValue('dbpassword', $dbpassword); @@ -257,7 +257,7 @@ class OC_Setup { ); return $error; } else { - //check for roles creation rights in oracle + //check for roles creation rights in oracle $query="SELECT count(*) FROM user_role_privs, role_sys_privs WHERE user_role_privs.granted_role = role_sys_privs.role AND privilege = 'CREATE ROLE'"; $stmt = oci_parse($connection, $query); @@ -342,7 +342,7 @@ class OC_Setup { } } } - } + } else { //delete the old sqlite database first, might cause infinte loops otherwise if(file_exists("$datadir/owncloud.db")){ @@ -428,7 +428,7 @@ class OC_Setup { } } $query = "REVOKE ALL PRIVILEGES ON DATABASE \"$e_name\" FROM PUBLIC"; - $result = pg_query($connection, $query); + $result = pg_query($connection, $query); } private static function pg_createDBUser($name,$password,$connection) { @@ -463,7 +463,7 @@ class OC_Setup { } } /** - * + * * @param String $name * @param String $password * @param String $tablespace diff --git a/lib/subadmin.php b/lib/subadmin.php index 718fe922ffe..4752492df30 100644 --- a/lib/subadmin.php +++ b/lib/subadmin.php @@ -3,7 +3,7 @@ * ownCloud * * @author Georg Ehrke - * @copyright 2012 Georg Ehrke + * @copyright 2012 Georg Ehrke * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -85,7 +85,7 @@ class OC_SubAdmin{ } return $uids; } - + /** * @brief get all SubAdmins * @return array @@ -99,7 +99,7 @@ class OC_SubAdmin{ } return $subadmins; } - + /** * @brief checks if a user is a SubAdmin of a group * @param $uid uid of the subadmin @@ -115,7 +115,7 @@ class OC_SubAdmin{ } return false; } - + /** * @brief checks if a user is a SubAdmin * @param $uid uid of the subadmin @@ -130,7 +130,7 @@ class OC_SubAdmin{ } return false; } - + /** * @brief checks if a user is a accessible by a subadmin * @param $subadmin uid of the subadmin @@ -152,7 +152,7 @@ class OC_SubAdmin{ } return false; } - + /* * @brief alias for self::isSubAdminofGroup() */ @@ -162,7 +162,7 @@ class OC_SubAdmin{ /** * @brief delete all SubAdmins by uid - * @param $parameters + * @param $parameters * @return boolean */ public static function post_deleteUser($parameters){ diff --git a/lib/template.php b/lib/template.php index a10ddcd5c33..609c8da9763 100644 --- a/lib/template.php +++ b/lib/template.php @@ -161,7 +161,7 @@ class OC_Template{ header('X-Frame-Options: Sameorigin'); header('X-XSS-Protection: 1; mode=block'); header('X-Content-Type-Options: nosniff'); - + $this->findTemplate($name); } @@ -208,13 +208,13 @@ class OC_Template{ $_SESSION['formfactor']=$_GET['formfactor']; } $formfactor=$_SESSION['formfactor']; - if($formfactor=='default') { + if($formfactor=='default') { $fext=''; - }elseif($formfactor=='mobile') { + }elseif($formfactor=='mobile') { $fext='.mobile'; - }elseif($formfactor=='tablet') { + }elseif($formfactor=='tablet') { $fext='.tablet'; - }elseif($formfactor=='standalone') { + }elseif($formfactor=='standalone') { $fext='.standalone'; }else{ $fext=''; diff --git a/lib/user.php b/lib/user.php index c14ef2d6ca6..c432f6074a6 100644 --- a/lib/user.php +++ b/lib/user.php @@ -385,7 +385,7 @@ class OC_User { } return false; } - + /** * disables a user * @param string $userid the user to disable @@ -395,7 +395,7 @@ class OC_User { $query = OC_DB::prepare($query); $query->execute(array($userid, 'core', 'enabled', 'false')); } - + /** * enable a user * @param string $userid @@ -405,7 +405,7 @@ class OC_User { $query = OC_DB::prepare($query); $query->execute(array($userid, 'core', 'enabled', 'false')); } - + /** * checks if a user is enabled * @param string $userid diff --git a/lib/user/database.php b/lib/user/database.php index dc11614cc57..52f3b35fa5c 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -43,7 +43,7 @@ class OC_User_Database extends OC_User_Backend { * @var PasswordHash */ static private $hasher=null; - + private function getHasher(){ if(!self::$hasher){ //we don't want to use DES based crypt(), since it doesn't return a has with a recognisable prefix @@ -53,7 +53,7 @@ class OC_User_Database extends OC_User_Backend { return self::$hasher; } - + /** * @brief Create a new user * @param $uid The username of the user to create @@ -172,7 +172,7 @@ class OC_User_Database extends OC_User_Backend { public function userExists($uid){ $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); $result = $query->execute( array( $uid )); - + return $result->numRows() > 0; } diff --git a/lib/user/http.php b/lib/user/http.php index 547c0201b69..5149678e4ed 100644 --- a/lib/user/http.php +++ b/lib/user/http.php @@ -41,9 +41,9 @@ class OC_User_HTTP extends OC_User_Backend { $url.='?'.$parts['query']; } return array($parts['user'],$url); - + } - + /** * check if an url is a valid login * @param string url @@ -52,7 +52,7 @@ class OC_User_HTTP extends OC_User_Backend { private function matchUrl($url){ return ! is_null(parse_url($url,PHP_URL_USER)); } - + /** * @brief Check if the password is correct * @param $uid The username @@ -67,7 +67,7 @@ class OC_User_HTTP extends OC_User_Backend { return false; } list($user,$url)=$this->parseUrl($uid); - + $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_USERPWD, $user.':'.$password); @@ -76,7 +76,7 @@ class OC_User_HTTP extends OC_User_Backend { curl_exec($ch); $status = curl_getinfo($ch, CURLINFO_HTTP_CODE); - + curl_close($ch); return $status==200; diff --git a/lib/util.php b/lib/util.php index 720f2cdeefd..f543f742ac1 100755 --- a/lib/util.php +++ b/lib/util.php @@ -40,7 +40,7 @@ class OC_Util { mkdir( $userdirectory, 0755, true ); } OC_Filesystem::mount('OC_Filestorage_Local',array('datadir'=>$user_root), $user); - + //jail the user into his "home" directory OC_Filesystem::init($user_dir); $quotaProxy=new OC_FileProxy_Quota(); @@ -62,9 +62,9 @@ class OC_Util { public static function setupFS4all(){ foreach(OC_User::getUsers() as $user){ OC_Filesystem::mount('OC_Filestorage_Local',array('datadir'=>OC_User::getHome($singleuser)), $user); - } + } } - + public static function tearDownFS(){ OC_Filesystem::tearDown(); self::$fsSetup=false; @@ -211,7 +211,7 @@ class OC_Util { // Check if there is a writable install folder. if(OC_Config::getValue('appstoreenabled', true)) { if( OC_App::getInstallPath() === null || !is_writable(OC_App::getInstallPath())) { - $errors[]=array('error'=>"Can't write into apps directory",'hint'=>"You can usually fix this by giving the webserver user write access to the apps directory + $errors[]=array('error'=>"Can't write into apps directory",'hint'=>"You can usually fix this by giving the webserver user write access to the apps directory in owncloud or disabling the appstore in the config file."); } } @@ -410,15 +410,15 @@ class OC_Util { // cleanup old tokens garbage collector // only run every 20th time so we don't waste cpu cycles - if(rand(0,20)==0) { + if(rand(0,20)==0) { foreach($_SESSION as $key=>$value) { // search all tokens in the session if(substr($key,0,12)=='requesttoken') { if($value+$maxtime Date: Wed, 29 Aug 2012 08:45:27 +0200 Subject: Remove php close at end of file --- apps/files_external/ajax/addRootCertificate.php | 1 - apps/files_external/ajax/dropbox.php | 2 -- apps/files_external/ajax/google.php | 2 -- apps/files_external/ajax/removeRootCertificate.php | 1 - apps/files_external/lib/amazons3.php | 2 -- apps/files_external/lib/dropbox.php | 2 -- apps/files_external/personal.php | 2 -- apps/files_external/settings.php | 2 -- apps/files_external/tests/test.php | 1 - apps/files_versions/appinfo/api.php | 2 -- apps/files_versions/settings-personal.php | 1 - apps/user_webdavauth/appinfo/app.php | 1 - apps/user_webdavauth/settings.php | 4 ---- apps/user_webdavauth/user_webdavauth.php | 2 -- lib/MDB2/Driver/Datatype/sqlite3.php | 2 -- lib/MDB2/Driver/Native/sqlite3.php | 1 - lib/MDB2/Driver/Reverse/sqlite3.php | 2 -- lib/public/share.php | 2 -- 18 files changed, 32 deletions(-) (limited to 'lib') diff --git a/apps/files_external/ajax/addRootCertificate.php b/apps/files_external/ajax/addRootCertificate.php index 1aa40bd8aa4..a8719fc7a3d 100644 --- a/apps/files_external/ajax/addRootCertificate.php +++ b/apps/files_external/ajax/addRootCertificate.php @@ -25,4 +25,3 @@ OC_Mount_Config::createCertificateBundle(); header("Location: settings/personal.php"); exit; -?> \ No newline at end of file diff --git a/apps/files_external/ajax/dropbox.php b/apps/files_external/ajax/dropbox.php index 5f2ff17e625..f5923940dc9 100644 --- a/apps/files_external/ajax/dropbox.php +++ b/apps/files_external/ajax/dropbox.php @@ -37,5 +37,3 @@ if (isset($_POST['app_key']) && isset($_POST['app_secret'])) { } else { OCP\JSON::error(array('data' => array('message' => 'Please provide a valid Dropbox app key and secret.'))); } - -?> \ No newline at end of file diff --git a/apps/files_external/ajax/google.php b/apps/files_external/ajax/google.php index 23ecfc3708d..4cd01c06cc9 100644 --- a/apps/files_external/ajax/google.php +++ b/apps/files_external/ajax/google.php @@ -47,5 +47,3 @@ if (isset($_POST['step'])) { break; } } - -?> \ No newline at end of file diff --git a/apps/files_external/ajax/removeRootCertificate.php b/apps/files_external/ajax/removeRootCertificate.php index f78f85b8fe4..9b78e180d9e 100644 --- a/apps/files_external/ajax/removeRootCertificate.php +++ b/apps/files_external/ajax/removeRootCertificate.php @@ -9,4 +9,3 @@ $cert = $_POST['cert']; $file = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath("").'uploads/'.$cert; unlink($file); OC_Mount_Config::createCertificateBundle(); -?> \ No newline at end of file diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php index 34f8ba25574..41ec3c70b45 100644 --- a/apps/files_external/lib/amazons3.php +++ b/apps/files_external/lib/amazons3.php @@ -232,5 +232,3 @@ class OC_Filestorage_AmazonS3 extends OC_Filestorage_Common { } } - -?> \ No newline at end of file diff --git a/apps/files_external/lib/dropbox.php b/apps/files_external/lib/dropbox.php index b90563a5065..bb86894e55e 100755 --- a/apps/files_external/lib/dropbox.php +++ b/apps/files_external/lib/dropbox.php @@ -251,5 +251,3 @@ class OC_Filestorage_Dropbox extends OC_Filestorage_Common { } } - -?> \ No newline at end of file diff --git a/apps/files_external/personal.php b/apps/files_external/personal.php index dec501741b6..f0d76460f54 100755 --- a/apps/files_external/personal.php +++ b/apps/files_external/personal.php @@ -31,5 +31,3 @@ $tmpl->assign('mounts', OC_Mount_Config::getPersonalMountPoints()); $tmpl->assign('certs', OC_Mount_Config::getCertificates()); $tmpl->assign('backends', $backends); return $tmpl->fetchPage(); - -?> \ No newline at end of file diff --git a/apps/files_external/settings.php b/apps/files_external/settings.php index acc9036b299..b586ce1e8cd 100644 --- a/apps/files_external/settings.php +++ b/apps/files_external/settings.php @@ -30,5 +30,3 @@ $tmpl->assign('groups', OC_Group::getGroups()); $tmpl->assign('users', OCP\User::getUsers()); $tmpl->assign('allowUserMounting', OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes')); return $tmpl->fetchPage(); - -?> \ No newline at end of file diff --git a/apps/files_external/tests/test.php b/apps/files_external/tests/test.php index bd24404f3b9..5387279fb07 100644 --- a/apps/files_external/tests/test.php +++ b/apps/files_external/tests/test.php @@ -4,4 +4,3 @@ echo "
";
 print_r(OC_Mount_Config::getSystemMountPoints());
 echo "
"; // OC_Mount_Config::addMountPoint('Photos', 'OC_Filestorage_SWIFT', array('host' => 'gapinthecloud.com', 'user' => 'Gap', 'token' => '23423afdasFJEW22', 'secure' => 'true', 'root' => ''), OC_Mount_Config::MOUNT_TYPE_GROUP, 'admin', false); -?> diff --git a/apps/files_versions/appinfo/api.php b/apps/files_versions/appinfo/api.php index a7386bc2c9f..3c45ff52457 100644 --- a/apps/files_versions/appinfo/api.php +++ b/apps/files_versions/appinfo/api.php @@ -32,5 +32,3 @@ return array( ) ) ); - -?> \ No newline at end of file diff --git a/apps/files_versions/settings-personal.php b/apps/files_versions/settings-personal.php index db80172979d..4fb866bd999 100644 --- a/apps/files_versions/settings-personal.php +++ b/apps/files_versions/settings-personal.php @@ -5,4 +5,3 @@ $tmpl = new OCP\Template( 'files_versions', 'settings-personal'); OCP\Util::addscript('files_versions','settings-personal'); return $tmpl->fetchPage(); -?> \ No newline at end of file diff --git a/apps/user_webdavauth/appinfo/app.php b/apps/user_webdavauth/appinfo/app.php index db1087449a5..ebadcf30b6c 100755 --- a/apps/user_webdavauth/appinfo/app.php +++ b/apps/user_webdavauth/appinfo/app.php @@ -35,4 +35,3 @@ $entry = array( 'href' => OC_Helper::linkTo( "user_webdavauth", "settings.php" ), 'name' => 'WEBDAVAUTH' ); -?> diff --git a/apps/user_webdavauth/settings.php b/apps/user_webdavauth/settings.php index 5bd1af53c92..1b80b1bba34 100755 --- a/apps/user_webdavauth/settings.php +++ b/apps/user_webdavauth/settings.php @@ -34,7 +34,3 @@ $tmpl = new OC_Template( 'user_webdavauth', 'settings'); $tmpl->assign( 'webdav_url', OC_Config::getValue( "user_webdavauth_url" )); return $tmpl->fetchPage(); - - - -?> diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index 4490b1e4519..571aca2f70f 100755 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -81,5 +81,3 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { return $returnArray; } } - -?> diff --git a/lib/MDB2/Driver/Datatype/sqlite3.php b/lib/MDB2/Driver/Datatype/sqlite3.php index d74badbe4f1..66c68b93778 100644 --- a/lib/MDB2/Driver/Datatype/sqlite3.php +++ b/lib/MDB2/Driver/Datatype/sqlite3.php @@ -383,5 +383,3 @@ class MDB2_Driver_Datatype_sqlite3 extends MDB2_Driver_Datatype_Common // }}} } - -?> \ No newline at end of file diff --git a/lib/MDB2/Driver/Native/sqlite3.php b/lib/MDB2/Driver/Native/sqlite3.php index de650107238..344d523bdf3 100644 --- a/lib/MDB2/Driver/Native/sqlite3.php +++ b/lib/MDB2/Driver/Native/sqlite3.php @@ -31,4 +31,3 @@ require_once 'MDB2/Driver/Native/Common.php'; class MDB2_Driver_Native_sqlite extends MDB2_Driver_Native_Common { } -?> \ No newline at end of file diff --git a/lib/MDB2/Driver/Reverse/sqlite3.php b/lib/MDB2/Driver/Reverse/sqlite3.php index 33e5b590268..e5c758e3503 100644 --- a/lib/MDB2/Driver/Reverse/sqlite3.php +++ b/lib/MDB2/Driver/Reverse/sqlite3.php @@ -584,5 +584,3 @@ class MDB2_Driver_Reverse_sqlite3 extends MDB2_Driver_Reverse_Common 'This DBMS can not obtain tableInfo from result sets', __FUNCTION__); } } - -?> \ No newline at end of file diff --git a/lib/public/share.php b/lib/public/share.php index 91b1bffc2d7..9ad0f0f68f6 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -1119,5 +1119,3 @@ interface Share_Backend_Collection extends Share_Backend { public function getChildren($itemSource); } - -?> -- cgit v1.2.3 From 9e32e0730644a4340b2f88b0d8750fd1f8e8903a Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 29 Aug 2012 17:25:37 +0200 Subject: Fix OC_Cache_File --- lib/cache/file.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/cache/file.php b/lib/cache/file.php index a51f0d68f82..ed5212bc3d7 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -10,8 +10,8 @@ class OC_Cache_File{ protected static $storage; protected function getStorage() { - if (isset(self::$storage)) { - return self::$storage; + if (isset($this->storage)) { + return $this->storage; } if(OC_User::isLoggedIn()){ $subdir = 'cache'; @@ -19,8 +19,8 @@ class OC_Cache_File{ if(!$view->file_exists($subdir)) { $view->mkdir($subdir); } - self::$storage = new OC_FilesystemView('/'.OC_User::getUser().'/'.$subdir); - return self::$storage; + $this->storage = new OC_FilesystemView('/'.OC_User::getUser().'/'.$subdir); + return $this->storage; }else{ OC_Log::write('core','Can\'t get cache storage, user not logged in', OC_Log::ERROR); return false; -- cgit v1.2.3 From db18218a1bba86e364fd4fec08c2e1a0eb4e7b16 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 29 Aug 2012 20:34:44 +0200 Subject: Space before tab fixes --- apps/files/templates/part.breadcrumb.php | 2 +- apps/files_external/templates/settings.php | 2 +- apps/files_versions/appinfo/update.php | 15 +++++++-------- apps/files_versions/history.php | 2 +- apps/user_ldap/tests/group_ldap.php | 2 +- lib/app.php | 4 ++-- lib/base.php | 2 +- lib/db.php | 30 +++++++++++++++--------------- lib/ocsclient.php | 2 +- lib/public/json.php | 2 +- lib/public/util.php | 2 +- lib/setup.php | 6 +++--- lib/template.php | 4 ++-- lib/util.php | 2 +- lib/vcategories.php | 2 +- 15 files changed, 39 insertions(+), 40 deletions(-) (limited to 'lib') diff --git a/apps/files/templates/part.breadcrumb.php b/apps/files/templates/part.breadcrumb.php index 22d9bb4490d..875fc747bb7 100644 --- a/apps/files/templates/part.breadcrumb.php +++ b/apps/files/templates/part.breadcrumb.php @@ -1,6 +1,6 @@
svg" data-dir='' style='background-image:url("")'> - "> + ">
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 7da96135721..c44b09b180f 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -82,7 +82,7 @@
- '> +
'> diff --git a/apps/files_versions/appinfo/update.php b/apps/files_versions/appinfo/update.php index e289b927b3c..52a4850758a 100644 --- a/apps/files_versions/appinfo/update.php +++ b/apps/files_versions/appinfo/update.php @@ -5,12 +5,11 @@ $installedVersion=OCP\Config::getAppValue('files_versions', 'installed_version') if (version_compare($installedVersion, '1.0.2', '<')) { $users = \OCP\User::getUsers(); $datadir = \OCP\Config::getSystemValue('datadirectory').'/'; - foreach ($users as $user) { - $oldPath = $datadir.$user.'/versions'; - $newPath = $datadir.$user.'/files_versions'; - if(is_dir($oldPath)) { - rename($oldPath, $newPath); - } - } - + foreach ($users as $user) { + $oldPath = $datadir.$user.'/versions'; + $newPath = $datadir.$user.'/files_versions'; + if(is_dir($oldPath)) { + rename($oldPath, $newPath); + } + } } diff --git a/apps/files_versions/history.php b/apps/files_versions/history.php index ea36d6d9f88..0ebb34f45e4 100644 --- a/apps/files_versions/history.php +++ b/apps/files_versions/history.php @@ -35,7 +35,7 @@ if ( isset( $_GET['path'] ) ) { // roll back to old version if button clicked if( isset( $_GET['revert'] ) ) { - if( $versions->rollback( $path, $_GET['revert'] ) ) { + if( $versions->rollback( $path, $_GET['revert'] ) ) { $tmpl->assign( 'outcome_stat', 'success' ); diff --git a/apps/user_ldap/tests/group_ldap.php b/apps/user_ldap/tests/group_ldap.php index 106459580fa..ac66a608b76 100644 --- a/apps/user_ldap/tests/group_ldap.php +++ b/apps/user_ldap/tests/group_ldap.php @@ -29,7 +29,7 @@ class Test_Group_Ldap extends UnitTestCase { OC_Group::useBackend(new OCA\user_ldap\GROUP_LDAP()); $group_ldap = new OCA\user_ldap\GROUP_LDAP(); - $this->assertIsA(OC_Group::getGroups(),gettype(array())); + $this->assertIsA(OC_Group::getGroups(),gettype(array())); $this->assertIsA($group_ldap->getGroups(),gettype(array())); $this->assertFalse(OC_Group::inGroup('john','dosers'),gettype(false)); diff --git a/lib/app.php b/lib/app.php index 74315903467..f6708ecb3df 100755 --- a/lib/app.php +++ b/lib/app.php @@ -286,7 +286,7 @@ class OC_App{ if(OC_Config::getValue('knowledgebaseenabled', true)==true){ $settings = array( array( "id" => "help", "order" => 1000, "href" => OC_Helper::linkTo( "settings", "help.php" ), "name" => $l->t("Help"), "icon" => OC_Helper::imagePath( "settings", "help.svg" )) - ); + ); } // if the user is logged-in @@ -313,7 +313,7 @@ class OC_App{ $settings[]=array( "id" => "admin", "order" => 1000, "href" => OC_Helper::linkTo( "settings", "admin.php" ), "name" => $l->t("Admin"), "icon" => OC_Helper::imagePath( "settings", "admin.svg" )); } - } + } $navigation = self::proceedNavigation($settings); return $navigation; diff --git a/lib/base.php b/lib/base.php index 0c3ab8527a9..1798bf09b95 100644 --- a/lib/base.php +++ b/lib/base.php @@ -533,7 +533,7 @@ class OC{ protected static function tryBasicAuthLogin() { if (!isset($_SERVER["PHP_AUTH_USER"]) || !isset($_SERVER["PHP_AUTH_PW"])){ - return false; + return false; } OC_App::loadApps(array('authentication')); if (OC_User::login($_SERVER["PHP_AUTH_USER"],$_SERVER["PHP_AUTH_PW"])) { diff --git a/lib/db.php b/lib/db.php index ecaf9e37ee5..de72dee2554 100644 --- a/lib/db.php +++ b/lib/db.php @@ -592,21 +592,21 @@ class OC_DB { * @param $file string path to the MDB2 xml db export file */ public static function replaceDB( $file ){ - $apps = OC_App::getAllApps(); - self::beginTransaction(); - // Delete the old tables - self::removeDBStructure( OC::$SERVERROOT . '/db_structure.xml' ); - - foreach($apps as $app){ - $path = OC_App::getAppPath($app).'/appinfo/database.xml'; - if(file_exists($path)){ - self::removeDBStructure( $path ); - } - } - - // Create new tables - self::createDBFromStructure( $file ); - self::commit(); + $apps = OC_App::getAllApps(); + self::beginTransaction(); + // Delete the old tables + self::removeDBStructure( OC::$SERVERROOT . '/db_structure.xml' ); + + foreach($apps as $app){ + $path = OC_App::getAppPath($app).'/appinfo/database.xml'; + if(file_exists($path)){ + self::removeDBStructure( $path ); + } + } + + // Create new tables + self::createDBFromStructure( $file ); + self::commit(); } diff --git a/lib/ocsclient.php b/lib/ocsclient.php index 9d510046697..f05a9af31c2 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -187,7 +187,7 @@ class OC_OCSClient{ if(isset($tmp->downloadlink)) { $app['downloadlink']=$tmp->downloadlink; }else{ - $app['downloadlink']=''; + $app['downloadlink']=''; } return $app; } diff --git a/lib/public/json.php b/lib/public/json.php index 2a74535f417..c37b42c3f74 100644 --- a/lib/public/json.php +++ b/lib/public/json.php @@ -92,7 +92,7 @@ class JSON { * Send json success msg * * Return a json success message with optional extra data. - * @see OCP\JSON::error() for the format to use. + * @see OCP\JSON::error() for the format to use. * * @param array $data The data to use * @return string json formatted string. diff --git a/lib/public/util.php b/lib/public/util.php index 8d7303bf7a4..6ad578441e2 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -260,7 +260,7 @@ class Util { /** - * Register an get/post call. This is important to prevent CSRF attacks + * Register an get/post call. This is important to prevent CSRF attacks * TODO: write example */ public static function callRegister(){ diff --git a/lib/setup.php b/lib/setup.php index e60a461debf..271fe55fd70 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -84,8 +84,8 @@ class OC_Setup { //write the config file OC_Config::setValue('datadirectory', $datadir); - OC_Config::setValue('dbtype', $dbtype); - OC_Config::setValue('version',implode('.',OC_Util::getVersion())); + OC_Config::setValue('dbtype', $dbtype); + OC_Config::setValue('version',implode('.',OC_Util::getVersion())); if($dbtype == 'mysql') { $dbuser = $options['dbuser']; $dbpass = $options['dbpass']; @@ -552,7 +552,7 @@ class OC_Setup { $content.= "\n"; $content.= "\n"; $content.= "RewriteEngine on\n"; - $content.= "RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]\n"; + $content.= "RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]\n"; $content.= "RewriteRule ^.well-known/host-meta /public.php?service=host-meta [QSA,L]\n"; $content.= "RewriteRule ^.well-known/carddav /remote.php/carddav/ [R]\n"; $content.= "RewriteRule ^.well-known/caldav /remote.php/caldav/ [R]\n"; diff --git a/lib/template.php b/lib/template.php index 609c8da9763..fe8a3c79943 100644 --- a/lib/template.php +++ b/lib/template.php @@ -171,8 +171,8 @@ class OC_Template{ * mobile -> interface for smartphones * tablet -> interface for tablets * standalone -> the default interface but without header, footer and - * sidebar, just the application. Useful to use just a specific - * app on the desktop in a standalone window. + * sidebar, just the application. Useful to use just a specific + * app on the desktop in a standalone window. */ public static function detectFormfactor(){ // please add more useragent strings for other devices diff --git a/lib/util.php b/lib/util.php index f543f742ac1..24f80b93896 100755 --- a/lib/util.php +++ b/lib/util.php @@ -219,7 +219,7 @@ class OC_Util { $CONFIG_DATADIRECTORY = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); //check for correct file permissions if(!stristr(PHP_OS, 'WIN')){ - $permissionsModHint="Please change the permissions to 0770 so that the directory cannot be listed by other users."; + $permissionsModHint="Please change the permissions to 0770 so that the directory cannot be listed by other users."; $prems=substr(decoct(@fileperms($CONFIG_DATADIRECTORY)),-3); if(substr($prems,-1)!='0'){ OC_Helper::chmodr($CONFIG_DATADIRECTORY,0770); diff --git a/lib/vcategories.php b/lib/vcategories.php index 60cc034f780..05dfe18db6f 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -129,7 +129,7 @@ class OC_VCategories { * $objects[] = $row['carddata']; * } * } - * $categories->rescan($objects); + * $categories->rescan($objects); */ public function rescan($objects, $sync=true, $reset=true) { if($reset === true) { -- cgit v1.2.3 From 8d490b9880368a6fd5fcd65964e1f23e6ed350eb Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 29 Aug 2012 14:36:51 -0400 Subject: Fix shared storage working with user backend defined data directories --- apps/files_sharing/lib/sharedstorage.php | 3 ++- lib/util.php | 10 +--------- 2 files changed, 3 insertions(+), 10 deletions(-) (limited to 'lib') diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index df5d4d20aed..6a2905b52c9 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -30,7 +30,6 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { public function __construct($arguments) { $this->sharedFolder = $arguments['sharedFolder']; - OC_Util::setupFS4all(); } /** @@ -78,6 +77,8 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { private function getSourcePath($target) { $file = $this->getFile($target); if (isset($file['path'])) { + $uid = substr($file['path'], 1, strpos($file['path'], '/', 1) - 1); + OC_Filesystem::mount('OC_Filestorage_Local', array('datadir' => OC_User::getHome($uid)), $uid); return $file['path']; } return false; diff --git a/lib/util.php b/lib/util.php index 24f80b93896..b77d6cb1b65 100755 --- a/lib/util.php +++ b/lib/util.php @@ -35,13 +35,11 @@ class OC_Util { $user_dir = '/'.$user.'/files'; $user_root = OC_User::getHome($user); $userdirectory = $user_root . '/files'; - OC_Filesystem::mount('OC_Filestorage_Local',array('datadir'=>$user_root), $user); if( !is_dir( $userdirectory )){ mkdir( $userdirectory, 0755, true ); } - OC_Filesystem::mount('OC_Filestorage_Local',array('datadir'=>$user_root), $user); - //jail the user into his "home" directory + OC_Filesystem::mount('OC_Filestorage_Local', array('datadir' => $user_root), $user); OC_Filesystem::init($user_dir); $quotaProxy=new OC_FileProxy_Quota(); OC_FileProxy::register($quotaProxy); @@ -59,12 +57,6 @@ class OC_Util { } } - public static function setupFS4all(){ - foreach(OC_User::getUsers() as $user){ - OC_Filesystem::mount('OC_Filestorage_Local',array('datadir'=>OC_User::getHome($singleuser)), $user); - } - } - public static function tearDownFS(){ OC_Filesystem::tearDown(); self::$fsSetup=false; -- cgit v1.2.3 From 301baf0215cfa3046389b3369f3d43422ff80043 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 29 Aug 2012 14:42:40 -0400 Subject: $storage shouldn't be static in OC_Cache_File --- lib/cache/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/cache/file.php b/lib/cache/file.php index ed5212bc3d7..b9073dee09a 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -8,7 +8,7 @@ class OC_Cache_File{ - protected static $storage; + protected $storage; protected function getStorage() { if (isset($this->storage)) { return $this->storage; -- cgit v1.2.3 From c958d5ba808ce64083470f65f11d3f9e8b74f7a1 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 29 Aug 2012 21:35:55 +0200 Subject: Fix filesystem setup for shared public link with logged in user --- apps/files_sharing/public.php | 3 +-- lib/util.php | 18 ++++++++++++------ 2 files changed, 13 insertions(+), 8 deletions(-) (limited to 'lib') diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index a4bf0230a3a..7f72ef81bd3 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -5,7 +5,6 @@ if (isset($_GET['file'])) { $pos = strpos($_GET['file'], '/', 1); $uidOwner = substr($_GET['file'], 1, $pos - 1); if (OCP\User::userExists($uidOwner)) { - OC_Util::tearDownFS(); OC_Util::setupFS($uidOwner); $file = substr($_GET['file'], $pos); $fileSource = OC_Filecache::getId($_GET['file'], ''); @@ -73,4 +72,4 @@ if (isset($_GET['file'])) { } header('HTTP/1.0 404 Not Found'); $tmpl = new OCP\Template('', '404', 'guest'); -$tmpl->printPage(); \ No newline at end of file +$tmpl->printPage(); diff --git a/lib/util.php b/lib/util.php index b77d6cb1b65..10b88b24438 100755 --- a/lib/util.php +++ b/lib/util.php @@ -19,6 +19,18 @@ class OC_Util { return false; } + // If we are not forced to load a specific user we load the one that is logged in + if( $user == "" && OC_User::isLoggedIn()){ + $user = OC_User::getUser(); + } + + // the filesystem will finish when $user is not empty, + // mark fs setup here to avoid doing the setup from loading + // OC_Filesystem + if ($user != '') { + self::$fsSetup=true; + } + $CONFIG_DATADIRECTORY = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); //first set up the local "root" storage if(!self::$rootMounted){ @@ -26,11 +38,6 @@ class OC_Util { self::$rootMounted=true; } - // If we are not forced to load a specific user we load the one that is logged in - if( $user == "" && OC_User::isLoggedIn()){ - $user = OC_User::getUser(); - } - if( $user != "" ){ //if we aren't logged in, there is no use to set up the filesystem $user_dir = '/'.$user.'/files'; $user_root = OC_User::getHome($user); @@ -43,7 +50,6 @@ class OC_Util { OC_Filesystem::init($user_dir); $quotaProxy=new OC_FileProxy_Quota(); OC_FileProxy::register($quotaProxy); - self::$fsSetup=true; // Load personal mount config if (is_file($user_root.'/mount.php')) { $mountConfig = include($user_root.'/mount.php'); -- cgit v1.2.3 From 598815b21e94219eb66684c64802e165a35180ad Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 29 Aug 2012 22:38:06 +0200 Subject: More info about not compatible apps (app id) --- lib/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/app.php b/lib/app.php index f6708ecb3df..5c0ec2f01ef 100755 --- a/lib/app.php +++ b/lib/app.php @@ -571,7 +571,7 @@ class OC_App{ // check if the app is compatible with this version of ownCloud $info = OC_App::getAppInfo($app); if(!isset($info['require']) or ($version[0]>$info['require'])){ - OC_Log::write('core','App "'.$info['name'].'" can\'t be used because it is not compatible with this version of ownCloud',OC_Log::ERROR); + OC_Log::write('core','App "'.$info['name'].'" ('.$app.') can\'t be used because it is not compatible with this version of ownCloud',OC_Log::ERROR); OC_App::disable( $app ); } } -- cgit v1.2.3 From b5234a4f34def2087f6d39c50bf567359689bac0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 30 Aug 2012 22:17:54 +0200 Subject: allow html inside app descriptions --- lib/app.php | 3 +++ settings/js/apps.js | 4 ++-- settings/templates/apps.php | 6 +++--- 3 files changed, 8 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/app.php b/lib/app.php index 5c0ec2f01ef..006599e7dfc 100755 --- a/lib/app.php +++ b/lib/app.php @@ -437,6 +437,9 @@ class OC_App{ foreach($child->children() as $type){ $data['types'][]=$type->getName(); } + }elseif($child->getName()=='description'){ + $xml=(string)$child->asXML(); + $data[$child->getName()]=substr($xml,13,-14);//script tags }else{ $data[$child->getName()]=(string)$child; } diff --git a/settings/js/apps.js b/settings/js/apps.js index cfddf4a48a1..f9612482373 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -29,7 +29,7 @@ OC.Settings.Apps = OC.Settings.Apps || { } else { page.find('span.version').text(''); } - page.find('p.description').text(app.description); + page.find('p.description').html(app.description); page.find('img.preview').attr('src', app.preview); page.find('small.externalapp').attr('style', 'visibility:visible'); page.find('span.author').text(app.author); @@ -100,7 +100,7 @@ OC.Settings.Apps = OC.Settings.Apps || { $(document).ready(function(){ $('#leftcontent li').each(function(index,li){ - var app = $.parseJSON($(this).children('span').text()); + var app = OC.get('appData_'+$(li).data('id')); $(li).data('app',app); $(this).find('span.hidden').remove(); }); diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 83d63b6b417..8efbcf0a7e9 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -14,9 +14,9 @@
  • data-id="" data-type="" data-installed="1"> - + 3rd party' ?>
  • -- cgit v1.2.3 From 58b1e841f11559f462ce803a500105f0b64f6e36 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 30 Aug 2012 23:51:44 +0200 Subject: fix translations within subfolder /lib --- lib/app.php | 2 +- lib/files.php | 4 ++-- lib/json.php | 10 +++++----- lib/template.php | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) (limited to 'lib') diff --git a/lib/app.php b/lib/app.php index 006599e7dfc..261f0793994 100755 --- a/lib/app.php +++ b/lib/app.php @@ -279,7 +279,7 @@ class OC_App{ * entries are sorted by the key 'order' ascending. */ public static function getSettingsNavigation(){ - $l=OC_L10N::get('core'); + $l=OC_L10N::get('lib'); $settings = array(); // by default, settings only contain the help menu diff --git a/lib/files.php b/lib/files.php index 0c71f6e5e42..a303c078728 100644 --- a/lib/files.php +++ b/lib/files.php @@ -268,7 +268,7 @@ class OC_Files { */ static function validateZipDownload($dir, $files) { if(!OC_Config::getValue('allowZipDownload', true)) { - $l = OC_L10N::get('files'); + $l = OC_L10N::get('lib'); header("HTTP/1.0 409 Conflict"); $tmpl = new OC_Template( '', 'error', 'user' ); $errors = array( @@ -293,7 +293,7 @@ class OC_Files { $totalsize += OC_Filesystem::filesize($dir.'/'.$files); } if($totalsize > $zipLimit) { - $l = OC_L10N::get('files'); + $l = OC_L10N::get('lib'); header("HTTP/1.0 409 Conflict"); $tmpl = new OC_Template( '', 'error', 'user' ); $errors = array( diff --git a/lib/json.php b/lib/json.php index 32ae734e4a5..12442cc83d7 100644 --- a/lib/json.php +++ b/lib/json.php @@ -24,7 +24,7 @@ class OC_JSON{ */ public static function checkAppEnabled($app){ if( !OC_App::isEnabled($app)){ - $l = OC_L10N::get('core'); + $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Application is not enabled') ))); exit(); } @@ -35,7 +35,7 @@ class OC_JSON{ */ public static function checkLoggedIn(){ if( !OC_User::isLoggedIn()){ - $l = OC_L10N::get('core'); + $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } @@ -47,7 +47,7 @@ class OC_JSON{ */ public static function callCheck(){ if( !OC_Util::isCallRegistered()){ - $l = OC_L10N::get('core'); + $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Token expired. Please reload page.') ))); exit(); } @@ -59,7 +59,7 @@ class OC_JSON{ public static function checkAdminUser(){ self::checkLoggedIn(); if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )){ - $l = OC_L10N::get('core'); + $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } @@ -71,7 +71,7 @@ class OC_JSON{ public static function checkSubAdminUser(){ self::checkLoggedIn(); if(!OC_Group::inGroup(OC_User::getUser(),'admin') && !OC_SubAdmin::isSubAdmin(OC_User::getUser())){ - $l = OC_L10N::get('core'); + $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } diff --git a/lib/template.php b/lib/template.php index fe8a3c79943..fa8d4192615 100644 --- a/lib/template.php +++ b/lib/template.php @@ -76,7 +76,7 @@ function simple_file_size($bytes) { } function relative_modified_date($timestamp) { - $l=OC_L10N::get('template'); + $l=OC_L10N::get('lib'); $timediff = time() - $timestamp; $diffminutes = round($timediff/60); $diffhours = round($diffminutes/60); -- cgit v1.2.3 From bd809574dc06a68d5e1060fb8b9f0484e6a4f1f5 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 31 Aug 2012 00:43:50 +0200 Subject: fix translations within subfolder /lib --- lib/l10n.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/l10n.php b/lib/l10n.php index cfa0e26486b..4560cb7dbb0 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -113,7 +113,10 @@ class OC_L10N{ $i18ndir = self::findI18nDir($app); // Localization is in /l10n, Texts are in $i18ndir // (Just no need to define date/time format etc. twice) - if((OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC_App::getAppPath($app).'/l10n/') || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/core/l10n/') || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/settings')) && file_exists($i18ndir.$lang.'.php')) { + if((OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC_App::getAppPath($app).'/l10n/') || + OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/core/l10n/') || + OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/lib/l10n/') || + OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/settings')) && file_exists($i18ndir.$lang.'.php')) { // Include the file, save the data from $CONFIG include(strip_tags($i18ndir).strip_tags($lang).'.php'); if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)){ -- cgit v1.2.3 From 6f8efcfe6162cd7fea68dd0677b7d4a6f1120c1f Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 31 Aug 2012 10:51:35 +0200 Subject: l18n support lib/updater.php --- lib/updater.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/updater.php b/lib/updater.php index 967f64c0b30..1b1a4eab970 100644 --- a/lib/updater.php +++ b/lib/updater.php @@ -58,15 +58,17 @@ class OC_Updater{ } public static function ShowUpdatingHint(){ + $l = OC_L10N::get('lib'); + if(OC_Config::getValue('updatechecker', true)==true){ $data=OC_Updater::check(); if(isset($data['version']) and $data['version']<>'') { - $txt=''.$data['versionstring'].' is available. Get more information'; + $txt=''.$l->t('%s is available. Get more information',array($data['versionstring'], $data['web'])).''; }else{ - $txt='up to date'; + $txt=$l->t('up to date'); } }else{ - $txt='updates check is disabled'; + $txt=$l->t('updates check is disabled'); } return($txt); } -- cgit v1.2.3 From 72e80bf6bd7c1dfe8e6b23787c2ba8d8add098c9 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Fri, 31 Aug 2012 20:22:03 +0200 Subject: send the current owncloud version to the ocs server so that we can filter for compatible apps --- lib/ocsclient.php | 7 +++++-- settings/ajax/apps/ocs.php | 3 ++- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/ocsclient.php b/lib/ocsclient.php index f05a9af31c2..dde2545858d 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -88,7 +88,7 @@ class OC_OCSClient{ * * This function returns a list of all the applications on the OCS server */ - public static function getApplications($categories,$page){ + public static function getApplications($categories,$page,$filter){ if(OC_Config::getValue('appstoreenabled', true)==false){ return(array()); } @@ -98,7 +98,10 @@ class OC_OCSClient{ }else{ $categoriesstring=$categories; } - $url=OC_OCSClient::getAppStoreURL().'/content/data?categories='.urlencode($categoriesstring).'&sortmode=new&page='.urlencode($page).'&pagesize=100'; + + $version='&version='.implode('x',\OC_Util::getVersion()); + $filterurl='&filter='.urlencode($filter); + $url=OC_OCSClient::getAppStoreURL().'/content/data?categories='.urlencode($categoriesstring).'&sortmode=new&page='.urlencode($page).'&pagesize=100'.$filterurl.$version; $apps=array(); $xml=@file_get_contents($url); if($xml==FALSE){ diff --git a/settings/ajax/apps/ocs.php b/settings/ajax/apps/ocs.php index 082f1cfb922..f68843fac31 100644 --- a/settings/ajax/apps/ocs.php +++ b/settings/ajax/apps/ocs.php @@ -30,7 +30,8 @@ $catagoryNames=OC_OCSClient::getCategories(); if(is_array($catagoryNames)){ $categories=array_keys($catagoryNames); $page=0; - $externalApps=OC_OCSClient::getApplications($categories,$page); + $filter='approved'; + $externalApps=OC_OCSClient::getApplications($categories,$page,$filter); foreach($externalApps as $app){ // show only external apps that aren't enabled yet $local=false; -- cgit v1.2.3 From efa0478d2d6c78639d5839c9014f25dac1f11d98 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 31 Aug 2012 17:31:28 -0400 Subject: Remove share permission for encrypted files --- lib/files.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/files.php b/lib/files.php index a303c078728..b8af5e04b71 100644 --- a/lib/files.php +++ b/lib/files.php @@ -56,7 +56,11 @@ class OC_Files { foreach ($files as &$file) { $file['directory'] = $directory; $file['type'] = ($file['mimetype'] == 'httpd/unix-directory') ? 'dir' : 'file'; - $permissions = OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE; + $permissions = OCP\Share::PERMISSION_READ; + // NOTE: Remove check when new encryption is merged + if (!$file['encrypted']) { + $permissions |= OCP\Share::PERMISSION_SHARE; + } if ($file['type'] == 'dir' && $file['writable']) { $permissions |= OCP\Share::PERMISSION_CREATE; } -- cgit v1.2.3 From ab090d5277a836667d71e09d1ac5288de85a5434 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 1 Sep 2012 02:04:00 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 1 + apps/files/l10n/de.php | 1 + apps/files/l10n/es.php | 1 + apps/files/l10n/fr.php | 1 + apps/files/l10n/it.php | 1 + apps/files/l10n/ja_JP.php | 1 + apps/files/l10n/ru.php | 1 + apps/files/l10n/sl.php | 1 + apps/files/l10n/sv.php | 1 + apps/files/l10n/th_TH.php | 1 + apps/files/l10n/zh_TW.php | 9 ++++ apps/files_sharing/l10n/ca.php | 1 + apps/files_sharing/l10n/de.php | 1 + apps/files_sharing/l10n/es.php | 1 + apps/files_sharing/l10n/fr.php | 1 + apps/files_sharing/l10n/it.php | 1 + apps/files_sharing/l10n/ja_JP.php | 1 + apps/files_sharing/l10n/sl.php | 1 + apps/files_sharing/l10n/sv.php | 1 + apps/files_sharing/l10n/th_TH.php | 1 + apps/user_ldap/l10n/de.php | 3 +- apps/user_ldap/l10n/es.php | 25 +++++++++++ core/l10n/ca.php | 1 + core/l10n/de.php | 1 + core/l10n/es.php | 1 + core/l10n/fr.php | 1 + core/l10n/it.php | 1 + core/l10n/ja_JP.php | 1 + core/l10n/sl.php | 1 + core/l10n/sv.php | 1 + core/l10n/th_TH.php | 1 + core/l10n/tr.php | 1 + core/l10n/zh_TW.php | 20 +++++++++ l10n/af/lib.po | 39 +++++++++++------ l10n/ar/lib.po | 39 +++++++++++------ l10n/ar_SA/lib.po | 39 +++++++++++------ l10n/bg_BG/lib.po | 39 +++++++++++------ l10n/ca/core.po | 8 ++-- l10n/ca/files.po | 10 ++--- l10n/ca/files_sharing.po | 8 ++-- l10n/ca/lib.po | 39 +++++++++++------ l10n/ca/settings.po | 24 +++++------ l10n/cs_CZ/lib.po | 27 +++++++++--- l10n/da/lib.po | 84 +++++++++++++++++++++--------------- l10n/de/core.po | 8 ++-- l10n/de/files.po | 9 ++-- l10n/de/files_sharing.po | 8 ++-- l10n/de/lib.po | 27 +++++++++--- l10n/de/settings.po | 24 +++++------ l10n/de/user_ldap.po | 8 ++-- l10n/el/lib.po | 39 +++++++++++------ l10n/eo/lib.po | 41 ++++++++++++------ l10n/es/core.po | 9 ++-- l10n/es/files.po | 9 ++-- l10n/es/files_sharing.po | 9 ++-- l10n/es/lib.po | 39 +++++++++++------ l10n/es/settings.po | 25 +++++------ l10n/es/user_ldap.po | 58 +++++++++++++------------ l10n/et_EE/lib.po | 39 +++++++++++------ l10n/eu/lib.po | 84 +++++++++++++++++++++--------------- l10n/eu_ES/lib.po | 39 +++++++++++------ l10n/fa/lib.po | 27 +++++++++--- l10n/fi/lib.po | 27 +++++++++--- l10n/fi_FI/lib.po | 39 +++++++++++------ l10n/fr/core.po | 9 ++-- l10n/fr/files.po | 9 ++-- l10n/fr/files_sharing.po | 9 ++-- l10n/fr/lib.po | 39 +++++++++++------ l10n/fr/settings.po | 25 +++++------ l10n/gl/lib.po | 39 +++++++++++------ l10n/he/lib.po | 39 +++++++++++------ l10n/hi/lib.po | 27 +++++++++--- l10n/hr/lib.po | 39 +++++++++++------ l10n/hu_HU/lib.po | 84 +++++++++++++++++++++--------------- l10n/hy/lib.po | 39 +++++++++++------ l10n/ia/lib.po | 39 +++++++++++------ l10n/id/lib.po | 39 +++++++++++------ l10n/id_ID/lib.po | 39 +++++++++++------ l10n/it/core.po | 8 ++-- l10n/it/files.po | 8 ++-- l10n/it/files_sharing.po | 8 ++-- l10n/it/lib.po | 39 +++++++++++------ l10n/it/settings.po | 24 +++++------ l10n/ja_JP/core.po | 8 ++-- l10n/ja_JP/files.po | 9 ++-- l10n/ja_JP/files_sharing.po | 8 ++-- l10n/ja_JP/lib.po | 84 +++++++++++++++++++++--------------- l10n/ja_JP/settings.po | 24 +++++------ l10n/ko/lib.po | 39 +++++++++++------ l10n/lb/lib.po | 39 +++++++++++------ l10n/lt_LT/lib.po | 27 +++++++++--- l10n/lv/lib.po | 39 +++++++++++------ l10n/mk/lib.po | 39 +++++++++++------ l10n/ms_MY/lib.po | 39 +++++++++++------ l10n/nb_NO/lib.po | 27 +++++++++--- l10n/nl/lib.po | 27 +++++++++--- l10n/nn_NO/lib.po | 39 +++++++++++------ l10n/pl/lib.po | 84 +++++++++++++++++++++--------------- l10n/pl_PL/lib.po | 27 +++++++++--- l10n/pt_BR/lib.po | 39 +++++++++++------ l10n/pt_PT/lib.po | 39 +++++++++++------ l10n/ro/lib.po | 39 +++++++++++------ l10n/ru/files.po | 8 ++-- l10n/ru/lib.po | 27 +++++++++--- l10n/ru_RU/lib.po | 27 +++++++++--- l10n/sk_SK/lib.po | 39 +++++++++++------ l10n/sl/core.po | 8 ++-- l10n/sl/files.po | 8 ++-- l10n/sl/files_sharing.po | 8 ++-- l10n/sl/lib.po | 27 +++++++++--- l10n/sl/settings.po | 24 +++++------ l10n/so/lib.po | 39 +++++++++++------ l10n/sr/lib.po | 39 +++++++++++------ l10n/sr@latin/lib.po | 39 +++++++++++------ l10n/sv/core.po | 8 ++-- l10n/sv/files.po | 8 ++-- l10n/sv/files_sharing.po | 8 ++-- l10n/sv/lib.po | 27 +++++++++--- l10n/sv/settings.po | 24 +++++------ l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 23 +++++++--- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/core.po | 8 ++-- l10n/th_TH/files.po | 8 ++-- l10n/th_TH/files_sharing.po | 8 ++-- l10n/th_TH/lib.po | 27 +++++++++--- l10n/th_TH/settings.po | 24 +++++------ l10n/tr/core.po | 9 ++-- l10n/tr/lib.po | 39 +++++++++++------ l10n/uk/lib.po | 39 +++++++++++------ l10n/vi/lib.po | 39 +++++++++++------ l10n/zh_CN.GB2312/lib.po | 27 +++++++++--- l10n/zh_CN/lib.po | 27 +++++++++--- l10n/zh_TW/core.po | 47 ++++++++++---------- l10n/zh_TW/files.po | 25 +++++------ l10n/zh_TW/lib.po | 85 ++++++++++++++++++++++--------------- lib/l10n/da.php | 25 +++++++++++ lib/l10n/eo.php | 1 + lib/l10n/eu.php | 25 +++++++++++ lib/l10n/hu_HU.php | 25 +++++++++++ lib/l10n/ja_JP.php | 25 +++++++++++ lib/l10n/pl.php | 25 +++++++++++ lib/l10n/zh_TW.php | 25 +++++++++++ settings/l10n/ca.php | 9 ++++ settings/l10n/de.php | 9 ++++ settings/l10n/es.php | 9 ++++ settings/l10n/fr.php | 9 ++++ settings/l10n/it.php | 9 ++++ settings/l10n/ja_JP.php | 9 ++++ settings/l10n/sl.php | 9 ++++ settings/l10n/sv.php | 9 ++++ settings/l10n/th_TH.php | 9 ++++ 158 files changed, 2202 insertions(+), 1097 deletions(-) create mode 100644 lib/l10n/da.php create mode 100644 lib/l10n/eu.php create mode 100644 lib/l10n/hu_HU.php create mode 100644 lib/l10n/ja_JP.php create mode 100644 lib/l10n/pl.php create mode 100644 lib/l10n/zh_TW.php (limited to 'lib') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 81bbfe03a0c..d887c8a9521 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -20,6 +20,7 @@ "Upload Error" => "Error en la pujada", "Pending" => "Pendents", "Upload cancelled." => "La pujada s'ha cancel·lat.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", "Invalid name, '/' is not allowed." => "El nom no és vàlid, no es permet '/'.", "Size" => "Mida", "Modified" => "Modificat", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index aad89a6d4d4..7a3e61f9bec 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -20,6 +20,7 @@ "Upload Error" => "Fehler beim Hochladen", "Pending" => "Ausstehend", "Upload cancelled." => "Hochladen abgebrochen.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", "Invalid name, '/' is not allowed." => "Ungültiger Name: \"/\" ist nicht erlaubt.", "Size" => "Größe", "Modified" => "Bearbeitet", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 6cd51d60e27..8e17b7931b0 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -20,6 +20,7 @@ "Upload Error" => "Error al subir el archivo", "Pending" => "Pendiente", "Upload cancelled." => "Subida cancelada.", +"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.", "Invalid name, '/' is not allowed." => "Nombre no válido, '/' no está permitido.", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 6cedfe2f912..d0a4c020f38 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -20,6 +20,7 @@ "Upload Error" => "Erreur de chargement", "Pending" => "En cours", "Upload cancelled." => "Chargement annulé.", +"File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", "Invalid name, '/' is not allowed." => "Nom invalide, '/' n'est pas autorisé.", "Size" => "Taille", "Modified" => "Modifié", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 6fda30a8f35..607969746cf 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -20,6 +20,7 @@ "Upload Error" => "Errore di invio", "Pending" => "In corso", "Upload cancelled." => "Invio annullato", +"File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", "Invalid name, '/' is not allowed." => "Nome non valido", "Size" => "Dimensione", "Modified" => "Modificato", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 8c19e455012..6dbdf8215da 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -20,6 +20,7 @@ "Upload Error" => "アップロードエラー", "Pending" => "保留", "Upload cancelled." => "アップロードはキャンセルされました。", +"File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", "Invalid name, '/' is not allowed." => "無効な名前、'/' は使用できません。", "Size" => "サイズ", "Modified" => "更新日時", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 71b30d22df4..3976baeae38 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -20,6 +20,7 @@ "Upload Error" => "Ошибка загрузки", "Pending" => "Ожидание", "Upload cancelled." => "Загрузка отменена.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", "Invalid name, '/' is not allowed." => "Неверное имя, '/' не допускается.", "Size" => "Размер", "Modified" => "Изменён", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index f6322b2507d..fa506795d9a 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -20,6 +20,7 @@ "Upload Error" => "Napaka pri nalaganju", "Pending" => "Na čakanju", "Upload cancelled." => "Nalaganje je bilo preklicano.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalaganje preklicali.", "Invalid name, '/' is not allowed." => "Neveljavno ime. Znak '/' ni dovoljen.", "Size" => "Velikost", "Modified" => "Spremenjeno", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index a62b7522511..b76914b642e 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -20,6 +20,7 @@ "Upload Error" => "Uppladdningsfel", "Pending" => "Väntar", "Upload cancelled." => "Uppladdning avbruten.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", "Invalid name, '/' is not allowed." => "Ogiltigt namn, '/' är inte tillåten.", "Size" => "Storlek", "Modified" => "Ändrad", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index eed9c36e132..d80ec2d877d 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -20,6 +20,7 @@ "Upload Error" => "เกิดข้อผิดพลาดในการอัพโหลด", "Pending" => "อยู่ระหว่างดำเนินการ", "Upload cancelled." => "การอัพโหลดถูกยกเลิก", +"File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", "Invalid name, '/' is not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน", "Size" => "ขนาด", "Modified" => "ปรับปรุงล่าสุด", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index bc8aa4ff892..9652fb5a073 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -8,6 +8,15 @@ "Failed to write to disk" => "寫入硬碟失敗", "Files" => "檔案", "Delete" => "刪除", +"already exists" => "已經存在", +"replace" => "取代", +"cancel" => "取消", +"generating ZIP-file, it may take some time." => "產生壓縮檔, 它可能需要一段時間.", +"Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0", +"Upload Error" => "上傳發生錯誤", +"Upload cancelled." => "上傳取消", +"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", +"Invalid name, '/' is not allowed." => "無效的名稱, '/'是不被允許的", "Size" => "大小", "Modified" => "修改", "File handling" => "檔案處理", diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index b8a1110fe03..f00d0d72632 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -2,5 +2,6 @@ "Password" => "Contrasenya", "Submit" => "Envia", "Download" => "Baixa", +"No preview available for" => "No hi ha vista prèvia disponible per a", "web services under your control" => "controleu els vostres serveis web" ); diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index bfb0d076a31..90dce8ec623 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -2,5 +2,6 @@ "Password" => "Passwort", "Submit" => "Absenden", "Download" => "Download", +"No preview available for" => "Es ist keine Vorschau verfügbar für", "web services under your control" => "Web-Services unter Ihrer Kontrolle" ); diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index 0bc085c4d35..b1d44e5485e 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -2,5 +2,6 @@ "Password" => "Contraseña", "Submit" => "Enviar", "Download" => "Descargar", +"No preview available for" => "No hay vista previa disponible para", "web services under your control" => "Servicios web bajo su control" ); diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index 91a6e3e92c6..54d9e9ec567 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -2,5 +2,6 @@ "Password" => "Mot de passe", "Submit" => "Envoyer", "Download" => "Télécharger", +"No preview available for" => "Pas d'aperçu disponible pour", "web services under your control" => "services web sous votre contrôle" ); diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index de06afc2697..5bedabde9bb 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -2,5 +2,6 @@ "Password" => "Password", "Submit" => "Invia", "Download" => "Scarica", +"No preview available for" => "Nessuna anteprima disponibile per", "web services under your control" => "servizi web nelle tue mani" ); diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index 2ac295bdd3a..5d63f371d56 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -2,5 +2,6 @@ "Password" => "パスワード", "Submit" => "送信", "Download" => "ダウンロード", +"No preview available for" => "プレビューはありません", "web services under your control" => "管理下のウェブサービス" ); diff --git a/apps/files_sharing/l10n/sl.php b/apps/files_sharing/l10n/sl.php index 9ff8b079d71..5e7d2d5004b 100644 --- a/apps/files_sharing/l10n/sl.php +++ b/apps/files_sharing/l10n/sl.php @@ -2,5 +2,6 @@ "Password" => "Geslo", "Submit" => "Pošlji", "Download" => "Prenesi", +"No preview available for" => "Predogled ni na voljo za", "web services under your control" => "spletne storitve pod vašim nadzorom" ); diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index 7a580c36a5a..78b19836497 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -2,5 +2,6 @@ "Password" => "Lösenord", "Submit" => "Skicka", "Download" => "Ladda ner", +"No preview available for" => "Ingen förhandsgranskning tillgänglig för", "web services under your control" => "webbtjänster under din kontroll" ); diff --git a/apps/files_sharing/l10n/th_TH.php b/apps/files_sharing/l10n/th_TH.php index 41fa4aeddb4..8a3f1207db4 100644 --- a/apps/files_sharing/l10n/th_TH.php +++ b/apps/files_sharing/l10n/th_TH.php @@ -2,5 +2,6 @@ "Password" => "รหัสผ่าน", "Submit" => "ส่ง", "Download" => "ดาวน์โหลด", +"No preview available for" => "ไม่สามารถดูตัวอย่างได้สำหรับ", "web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" ); diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 9f917f277c4..2c178d0b4fd 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -23,7 +23,7 @@ "Use TLS" => "Nutze TLS", "Do not use it for SSL connections, it will fail." => "Verwenden Sie es nicht für SSL-Verbindungen, es wird fehlschlagen.", "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", -"Turn off SSL certificate validation." => "Schalte die SSL Zertifikatsprüfung aus.", +"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, wird das SSL-Zertifikat des LDAP-Server importiert werden.", "Not recommended, use for testing only." => "Nicht empfohlen, nur zu Testzwecken.", "User Display Name Field" => "Feld für den Anzeigenamen des Benutzers", @@ -32,5 +32,6 @@ "The LDAP attribute to use to generate the groups`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. ", "in bytes" => "in Bytes", "in seconds. A change empties the cache." => "in Sekunden. Eine Änderung leert den Cache.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls geben Sie ein LDAP/AD-Attribut an.", "Help" => "Hilfe" ); diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 55abf7b88e0..8d9c7f9ad38 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -1,7 +1,32 @@ "Servidor", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://", +"Base DN" => "DN base", +"You can specify Base DN for users and groups in the Advanced tab" => "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado", +"User DN" => "DN usuario", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "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, deje DN y contraseña vacíos.", "Password" => "Contraseña", +"For anonymous access, leave DN and Password empty." => "Para acceso anónimo, deje DN y contraseña vacíos.", +"User List Filter" => "Lista de filtros de usuario", +"Defines the filter to apply, when retrieving users." => "Define el filtro a aplicar, cuando se obtienen usuarios.", +"Group Filter" => "Filtro de grupo", +"Defines the filter to apply, when retrieving groups." => "Define el filtro a aplicar, cuando se obtienen grupos.", "Port" => "Puerto", +"Base User Tree" => "Árbol base de usuario", +"Base Group Tree" => "Árbol base de grupo", +"Group-Member association" => "Asociación Grupo-Miembro", "Use TLS" => "Usar TLS", +"Do not use it for SSL connections, it will fail." => "No usarlo para SSL, habrá error.", +"Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)", +"Turn off SSL certificate validation." => "Apagar 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, importe el certificado SSL del servidor LDAP en su servidor ownCloud.", +"Not recommended, use for testing only." => "No recomendado, sólo para pruebas.", +"User Display Name Field" => "Campo de nombre de usuario a mostrar", +"The LDAP attribute to use to generate the user`s ownCloud name." => "El atributo LDAP a usar para generar el nombre de usuario de ownCloud.", +"Group Display Name Field" => "Campo de nombre de grupo a mostrar", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud.", "in bytes" => "en bytes", +"in seconds. A change empties the cache." => "en segundos. Un cambio vacía la cache.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD.", "Help" => "Ayuda" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 9be2fe6adfc..52b6d68e47c 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -51,6 +51,7 @@ "Database user" => "Usuari de la base de dades", "Database password" => "Contrasenya de la base de dades", "Database name" => "Nom de la base de dades", +"Database tablespace" => "Espai de taula de la base de dades", "Database host" => "Ordinador central de la base de dades", "Finish setup" => "Acaba la configuració", "web services under your control" => "controleu els vostres serveis web", diff --git a/core/l10n/de.php b/core/l10n/de.php index 81f4b0082c2..fdd940ea39e 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -51,6 +51,7 @@ "Database user" => "Datenbank-Benutzer", "Database password" => "Datenbank-Passwort", "Database name" => "Datenbank-Name", +"Database tablespace" => "Datenbank-Tablespace", "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Ihrer Kontrolle", diff --git a/core/l10n/es.php b/core/l10n/es.php index 8766228ba89..3a7da551b60 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -51,6 +51,7 @@ "Database user" => "Usuario de la base de datos", "Database password" => "Contraseña de la base de datos", "Database name" => "Nombre de la base de datos", +"Database tablespace" => "Espacio de tablas de la base de datos", "Database host" => "Host de la base de datos", "Finish setup" => "Completar la instalación", "web services under your control" => "servicios web bajo tu control", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 095a2024734..a5632180840 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -51,6 +51,7 @@ "Database user" => "Utilisateur pour la base de données", "Database password" => "Mot de passe de la base de données", "Database name" => "Nom de la base de données", +"Database tablespace" => "Tablespaces de la base de données", "Database host" => "Serveur de la base de données", "Finish setup" => "Terminer l'installation", "web services under your control" => "services web sous votre contrôle", diff --git a/core/l10n/it.php b/core/l10n/it.php index ca80770a3c5..b7f174e57a2 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -51,6 +51,7 @@ "Database user" => "Utente del database", "Database password" => "Password del database", "Database name" => "Nome del database", +"Database tablespace" => "Spazio delle tabelle del database", "Database host" => "Host del database", "Finish setup" => "Termina la configurazione", "web services under your control" => "servizi web nelle tue mani", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 5f9b9da33a6..bef84b09d6c 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -51,6 +51,7 @@ "Database user" => "データベースのユーザ名", "Database password" => "データベースのパスワード", "Database name" => "データベース名", +"Database tablespace" => "データベースの表領域", "Database host" => "データベースのホスト名", "Finish setup" => "セットアップを完了します", "web services under your control" => "管理下にあるウェブサービス", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 2f998c95492..ad412314319 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -51,6 +51,7 @@ "Database user" => "Uporabnik zbirke", "Database password" => "Geslo podatkovne zbirke", "Database name" => "Ime podatkovne zbirke", +"Database tablespace" => "Razpredelnica podatkovne zbirke", "Database host" => "Gostitelj podatkovne zbirke", "Finish setup" => "Dokončaj namestitev", "web services under your control" => "spletne storitve pod vašim nadzorom", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 25ba95558e7..f459272eba0 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -51,6 +51,7 @@ "Database user" => "Databasanvändare", "Database password" => "Lösenord till databasen", "Database name" => "Databasnamn", +"Database tablespace" => "Databas tabellutrymme", "Database host" => "Databasserver", "Finish setup" => "Avsluta installation", "web services under your control" => "webbtjänster under din kontroll", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 8bd4d36524f..4bfdb524fe0 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -51,6 +51,7 @@ "Database user" => "ชื่อผู้ใช้งานฐานข้อมูล", "Database password" => "รหัสผ่านฐานข้อมูล", "Database name" => "ชื่อฐานข้อมูล", +"Database tablespace" => "พื้นที่ตารางในฐานข้อมูล", "Database host" => "Database host", "Finish setup" => "ติดตั้งเรียบร้อยแล้ว", "web services under your control" => "web services under your control", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index e2d0d9b073d..a34443e8dd7 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -51,6 +51,7 @@ "Database user" => "Veritabanı kullanıcı adı", "Database password" => "Veritabanı parolası", "Database name" => "Veritabanı adı", +"Database tablespace" => "Veritabanı tablo alanı", "Database host" => "Veritabanı sunucusu", "Finish setup" => "Kurulumu tamamla", "web services under your control" => "kontrolünüzdeki web servisleri", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 37c0d8cc9d1..753dde0a99c 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -2,7 +2,26 @@ "Application name not provided." => "未提供應用程式名稱", "No category to add?" => "無分類添加?", "This category already exists: " => "此分類已經存在:", +"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "設定", +"January" => "一月", +"February" => "二月", +"March" => "三月", +"April" => "四月", +"May" => "五月", +"June" => "六月", +"July" => "七月", +"August" => "八月", +"September" => "九月", +"October" => "十月", +"November" => "十一月", +"December" => "十二月", +"Cancel" => "取消", +"No" => "No", +"Yes" => "Yes", +"Ok" => "Ok", +"No categories selected for deletion." => "沒選擇要刪除的分類", +"Error" => "錯誤", "ownCloud password reset" => "ownCloud 密碼重設", "Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: (聯結) ", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱", @@ -32,6 +51,7 @@ "Database user" => "資料庫使用者", "Database password" => "資料庫密碼", "Database name" => "資料庫名稱", +"Database tablespace" => "資料庫 tablespace", "Database host" => "資料庫主機", "Finish setup" => "完成設定", "web services under your control" => "網路服務已在你控制", diff --git a/l10n/af/lib.po b/l10n/af/lib.po index a5cbac26247..a38949f2308 100644 --- a/l10n/af/lib.po +++ b/l10n/af/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 36dea95d346..562af94ac63 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ar_SA/lib.po b/l10n/ar_SA/lib.po index 1d1cba42b76..9b889a6e710 100644 --- a/l10n/ar_SA/lib.po +++ b/l10n/ar_SA/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ar_SA\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 04f21db7de6..f6ce9e2d638 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index e3c5dd92d5c..821e89c924c 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 11:29+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,7 +231,7 @@ msgstr "Nom de la base de dades" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Espai de taula de la base de dades" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 6ccc8e9492c..0857b5ed92e 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -4,14 +4,14 @@ # # Translators: # , 2012. -# , 2011, 2012. +# , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 11:28+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -108,7 +108,7 @@ msgstr "La pujada s'ha cancel·lat." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 1aa4ee0ad45..2424e26a3c5 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 11:34+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "Baixa" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "No hi ha vista prèvia disponible per a" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 397969d686a..2b24de63524 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-29 02:04+0200\n" -"PO-Revision-Date: 2012-07-28 13:42+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Ajuda" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Personal" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Configuració" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Usuaris" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Aplicacions" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Administració" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Torna a Fitxers" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." @@ -111,3 +111,16 @@ msgstr "l'any passat" #: template.php:97 msgid "years ago" msgstr "fa anys" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 5c73f9a9cac..35cb1e5db28 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 11:33+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,39 +89,39 @@ msgstr "usa el servei cron del sistema" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API de compartir" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Activa l'API de compartir" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Permet que les aplicacions usin l'API de compartir" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Permet enllaços" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Permet compartir de nou" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Permet als usuaris comparir elements ja compartits amb ells" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permet als usuaris compartir amb qualsevol" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permet als usuaris compartir només amb usuaris del seu grup" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index f6c62f88034..35f62dc63c9 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 09:24+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "Aplikace" msgid "Admin" msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Stahování ZIPu je vypnuto." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Soubory je nutno stahovat samostatně." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Zpět k souborům" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Vybarné soubory jsou pro vytvoření zipu příliš velké." @@ -111,3 +111,16 @@ msgstr "loni" #: template.php:97 msgid "years ago" msgstr "před lety" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 8d65f903fef..75cf36398bc 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Morten Juhl-Johansen Zölde-Fejér , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,96 +18,109 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "Hjælp" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "Personlig" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "Indstillinger" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "Brugere" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "Apps" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP-download er slået fra." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Filer skal downloades en for en." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "Tilbage til Filer" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "De markerede filer er for store til at generere en ZIP-fil." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Programmet er ikke aktiveret" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Adgangsfejl" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Adgang er udløbet. Genindlæs siden." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "sekunder siden" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1 minut siden" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d minutter siden" #: template.php:91 msgid "today" -msgstr "" +msgstr "I dag" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "I går" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d dage siden" #: template.php:94 msgid "last month" -msgstr "" +msgstr "Sidste måned" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "måneder siden" #: template.php:96 msgid "last year" -msgstr "" +msgstr "Sidste år" #: template.php:97 msgid "years ago" +msgstr "år siden" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/l10n/de/core.po b/l10n/de/core.po index c9a09ce63a0..9f06a2c9f42 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 09:48+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -240,7 +240,7 @@ msgstr "Datenbank-Name" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Datenbank-Tablespace" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/de/files.po b/l10n/de/files.po index eb9ea98a4c2..2f61acb8ec6 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,6 +9,7 @@ # Marcel Kühlhorn , 2012. # Michael Krell , 2012. # , 2012. +# , 2012. # Phi Lieb <>, 2012. # , 2012. # Thomas Müller <>, 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:32+0000\n" +"Last-Translator: JamFX \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,7 +117,7 @@ msgstr "Hochladen abgebrochen." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index f1fdd9e874b..7d11d393690 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 09:46+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +35,7 @@ msgstr "Download" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Es ist keine Vorschau verfügbar für" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 0e1b5201dcc..c2a625b076a 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:41+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,19 +44,19 @@ msgstr "Apps" msgid "Admin" msgstr "Administrator" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." @@ -113,3 +113,16 @@ msgstr "Letztes Jahr" #: template.php:97 msgid "years ago" msgstr "Vor Jahren" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 37cd269f546..df25c0b715f 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:39+0000\n" +"Last-Translator: JamFX \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,39 +96,39 @@ msgstr "Nutze System-Cron-Service" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "Teilungs-API" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Teilungs-API aktivieren" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Erlaubt Nutzern die Teilungs-API zu nutzen" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Links erlauben" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Erlaube Nutzern Dateien mithilfe von Links mit der Öffentlichkeit zu teilen" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Erneutes Teilen erlauben" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Erlaube Nutzern mit jedem zu Teilen" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Erlaube Nutzern nur das Teilen in ihrer Gruppe" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 18c835e0663..c8b3a60d6a6 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 11:12+0000\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 15:48+0000\n" "Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "Schalte die SSL Zertifikatsprüfung aus." +msgstr "Schalte die SSL-Zertifikatsprüfung aus." #: templates/settings.php:23 msgid "" @@ -168,7 +168,7 @@ msgstr "in Sekunden. Eine Änderung leert den Cache." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls geben Sie ein LDAP/AD-Attribut an." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index da331c0cb80..2a3ab249c25 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-29 02:04+0200\n" -"PO-Revision-Date: 2012-07-28 11:45+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Βοήθεια" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Προσωπικά" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Ρυθμίσεις" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Χρήστες" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Εφαρμογές" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Διαχειριστής" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Πίσω στα Αρχεία" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." @@ -111,3 +111,16 @@ msgstr "τον προηγούμενο χρόνο" #: template.php:97 msgid "years ago" msgstr "χρόνια πριν" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 83d78e5ea55..6b56eeafdea 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-04 02:02+0200\n" -"PO-Revision-Date: 2012-08-03 22:37+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Helpo" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Persona" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Agordo" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Uzantoj" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Aplikaĵoj" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "Administranto" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Reen al la dosieroj" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." @@ -111,3 +111,16 @@ msgstr "lasta jaro" #: template.php:97 msgid "years ago" msgstr "jarojn antaŭe" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/es/core.po b/l10n/es/core.po index e6464ac375e..fd0e4112ab5 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -9,14 +9,15 @@ # Raul Fernandez Garcia , 2012. # , 2012. # , 2011. +# Rubén Trujillo , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 22:41+0000\n" +"Last-Translator: Rubén Trujillo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -236,7 +237,7 @@ msgstr "Nombre de la base de datos" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Espacio de tablas de la base de datos" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/es/files.po b/l10n/es/files.po index 1e703f1a811..b8ef1ea5821 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -5,14 +5,15 @@ # Translators: # Javier Llorente , 2012. # , 2012. +# Rubén Trujillo , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 22:38+0000\n" +"Last-Translator: Rubén Trujillo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -109,7 +110,7 @@ msgstr "Subida cancelada." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 7d36e72c7dd..d6c7ffea13d 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -5,13 +5,14 @@ # Translators: # Javier Llorente , 2012. # , 2012. +# Rubén Trujillo , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 22:41+0000\n" +"Last-Translator: Rubén Trujillo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +34,7 @@ msgstr "Descargar" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "No hay vista previa disponible para" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index a8931cbabc6..016a35e522b 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-31 05:46+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Ayuda" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Personal" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Ajustes" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Usuarios" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Aplicaciones" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Administración" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Volver a Archivos" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." @@ -111,3 +111,16 @@ msgstr "este año" #: template.php:97 msgid "years ago" msgstr "hace años" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index de248b3617a..128b7d82b4e 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -10,14 +10,15 @@ # oSiNaReF <>, 2012. # , 2012. # , 2011. +# Rubén Trujillo , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 22:51+0000\n" +"Last-Translator: Rubén Trujillo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,39 +96,39 @@ msgstr "usar servicio cron del sistema" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API de compartición" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Activar API de compartición" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Permitir a las aplicaciones usar la API de compartición" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Permitir enlaces" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Permitir a los usuarios compartir elementos públicamente con enlaces" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Permitir re-compartir" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Permitir a los usuarios compartir elementos compartidos con ellos de nuevo" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permitir a los usuarios compartir con cualquiera" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permitir a los usuarios compartir con usuarios en sus grupos" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 49025f4606e..e87843eac9c 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -4,13 +4,15 @@ # # Translators: # Javier Llorente , 2012. +# Rubén Trujillo , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 23:04+0000\n" +"Last-Translator: Rubén Trujillo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,31 +22,31 @@ msgstr "" #: templates/settings.php:8 msgid "Host" -msgstr "" +msgstr "Servidor" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" #: templates/settings.php:9 msgid "Base DN" -msgstr "" +msgstr "DN base" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" #: templates/settings.php:10 msgid "User DN" -msgstr "" +msgstr "DN usuario" #: templates/settings.php:10 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "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, deje DN y contraseña vacíos." #: templates/settings.php:11 msgid "Password" @@ -52,7 +54,7 @@ msgstr "Contraseña" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Para acceso anónimo, deje DN y contraseña vacíos." #: templates/settings.php:12 msgid "User Login Filter" @@ -72,11 +74,11 @@ msgstr "" #: templates/settings.php:13 msgid "User List Filter" -msgstr "" +msgstr "Lista de filtros de usuario" #: templates/settings.php:13 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "Define el filtro a aplicar, cuando se obtienen usuarios." #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." @@ -84,11 +86,11 @@ msgstr "" #: templates/settings.php:14 msgid "Group Filter" -msgstr "" +msgstr "Filtro de grupo" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "Define el filtro a aplicar, cuando se obtienen grupos." #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." @@ -100,15 +102,15 @@ msgstr "Puerto" #: templates/settings.php:18 msgid "Base User Tree" -msgstr "" +msgstr "Árbol base de usuario" #: templates/settings.php:19 msgid "Base Group Tree" -msgstr "" +msgstr "Árbol base de grupo" #: templates/settings.php:20 msgid "Group-Member association" -msgstr "" +msgstr "Asociación Grupo-Miembro" #: templates/settings.php:21 msgid "Use TLS" @@ -116,41 +118,41 @@ msgstr "Usar TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "No usarlo para SSL, habrá error." #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Apagar la validación por certificado SSL." #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud." #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "No recomendado, sólo para pruebas." #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "Campo de nombre de usuario a mostrar" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud." #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "Campo de nombre de grupo a mostrar" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud." #: templates/settings.php:27 msgid "in bytes" @@ -158,13 +160,13 @@ msgstr "en bytes" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "en segundos. Un cambio vacía la cache." #: templates/settings.php:30 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 323ca131149..789beb732bf 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-31 10:25+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Abiinfo" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Isiklik" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Seaded" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Kasutajad" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Rakendused" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Tagasi failide juurde" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." @@ -111,3 +111,16 @@ msgstr "eelmisel aastal" #: template.php:97 msgid "years ago" msgstr "aastat tagasi" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index f8625e4759e..c083e4f8654 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,96 +18,109 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "Laguntza" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "Pertsonala" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "Ezarpenak" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "Erabiltzaileak" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "Aplikazioak" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP deskarga ez dago gaituta." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "Itzuli fitxategietara" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Aplikazioa ez dago gaituta" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Autentikazio errorea" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Tokena iraungitu da. Mesedez birkargatu orria." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "orain dela segundu batzuk" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "orain dela minutu 1" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "orain dela %d minutu" #: template.php:91 msgid "today" -msgstr "" +msgstr "gaur" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "atzo" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "orain dela %d egun" #: template.php:94 msgid "last month" -msgstr "" +msgstr "joan den hilabetea" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "orain dela hilabete batzuk" #: template.php:96 msgid "last year" -msgstr "" +msgstr "joan den urtea" #: template.php:97 msgid "years ago" +msgstr "orain dela urte batzuk" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/l10n/eu_ES/lib.po b/l10n/eu_ES/lib.po index 366fbd9fb9c..120167c8926 100644 --- a/l10n/eu_ES/lib.po +++ b/l10n/eu_ES/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 7e1c82ad5e1..589e967a94f 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 20:01+0000\n" -"Last-Translator: Mohammad Dashtizadeh \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "" msgid "Admin" msgstr "مدیر" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -111,3 +111,16 @@ msgstr "سال قبل" #: template.php:97 msgid "years ago" msgstr "سال‌های قبل" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/fi/lib.po b/l10n/fi/lib.po index eee9ac5f9e5..6ed65abd5e9 100644 --- a/l10n/fi/lib.po +++ b/l10n/fi/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-09 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 50d80dd63b7..4306f983386 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-03 02:02+0200\n" -"PO-Revision-Date: 2012-08-02 18:23+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Ohje" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Henkilökohtainen" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Asetukset" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Käyttäjät" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Sovellukset" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Ylläpitäjä" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Takaisin tiedostoihin" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." @@ -111,3 +111,16 @@ msgstr "viime vuonna" #: template.php:97 msgid "years ago" msgstr "vuotta sitten" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 44ac2aa06cd..9d16fe11ba3 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Guillaume Paumier , 2012. # Nahir Mohamed , 2012. # , 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 19:09+0000\n" +"Last-Translator: Florentin Le Moal \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" @@ -234,7 +235,7 @@ msgstr "Nom de la base de données" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Tablespaces de la base de données" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 6bc9f20b8b8..9131d0d3508 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -5,6 +5,7 @@ # Translators: # Cyril Glapa , 2012. # Geoffrey Guerrier , 2012. +# , 2012. # , 2012. # Guillaume Paumier , 2012. # Nahir Mohamed , 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 09:27+0000\n" +"Last-Translator: gp4004 \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" @@ -113,7 +114,7 @@ msgstr "Chargement annulé." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index d107f296193..13fe8b5a464 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. # Guillaume Paumier , 2012. # Romain DEP. , 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 19:11+0000\n" +"Last-Translator: Florentin Le Moal \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" @@ -35,7 +36,7 @@ msgstr "Télécharger" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Pas d'aperçu disponible pour" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 42c784ce915..5b9ac2ed7fa 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-31 00:22+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,43 +19,43 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Aide" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Personnel" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Paramètres" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Utilisateurs" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Applications" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Administration" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Retour aux Fichiers" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." @@ -112,3 +112,16 @@ msgstr "l'année dernière" #: template.php:97 msgid "years ago" msgstr "il y a plusieurs années" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 2fbf6fe41c3..2cde4d61037 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -5,6 +5,7 @@ # Translators: # Cyril Glapa , 2012. # , 2011. +# , 2012. # , 2012. # , 2012. # Jan-Christoph Borchardt , 2011. @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 18:08+0000\n" +"Last-Translator: Florentin Le Moal \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" @@ -96,39 +97,39 @@ msgstr "utiliser le service cron du système " #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API de partage" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Activer l'API de partage" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Autoriser les applications à utiliser l'API de partage" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Autoriser les liens" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Autoriser les utilisateurs à partager du contenu public avec des liens" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Autoriser le re-partage" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Autoriser les utilisateurs à partager des éléments déjà partagés entre eux" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Autoriser les utilisateurs à partager avec tout le monde" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Autoriser les utilisateurs à ne partager qu'avec les utilisateurs dans leurs groupes" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 2e675b5678c..a0531aaba0b 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 78686b991a1..eed328e6ce5 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 5dabd1411df..c7209b64c42 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index d38126e621c..a9682726b85 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index cd149d946d7..ddbcd4f2d02 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Adam Toth , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,96 +18,109 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "Súgó" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "Személyes" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "Beállítások" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "Felhasználók" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "Alkalmazások" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP-letöltés letiltva" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "A file-okat egyenként kell letölteni" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "Vissza a File-okhoz" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Túl nagy file-ok a zip-generáláshoz" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Az alkalmazás nincs engedélyezve" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Hitelesítési hiba" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "A token lejárt. Frissítsd az oldalt." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "másodperccel ezelőtt" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1 perccel ezelőtt" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d perccel ezelőtt" #: template.php:91 msgid "today" -msgstr "" +msgstr "ma" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "tegnap" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d évvel ezelőtt" #: template.php:94 msgid "last month" -msgstr "" +msgstr "múlt hónapban" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "hónappal ezelőtt" #: template.php:96 msgid "last year" -msgstr "" +msgstr "tavaly" #: template.php:97 msgid "years ago" +msgstr "évvel ezelőtt" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index 1a8aea0ebb4..a6359330b34 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 49508111104..ea036a26399 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 6c8b5a8c494..3193d5c4dd2 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/id_ID/lib.po b/l10n/id_ID/lib.po index 62fef73ca05..53350090786 100644 --- a/l10n/id_ID/lib.po +++ b/l10n/id_ID/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: id_ID\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index da546df81f8..281cd036adb 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 05:26+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,7 +234,7 @@ msgstr "Nome del database" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Spazio delle tabelle del database" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/it/files.po b/l10n/it/files.po index b4df0c65ff5..ccf33f1c454 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 05:43+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -110,7 +110,7 @@ msgstr "Invio annullato" #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 51aec56bcd2..b2494f4211e 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 05:29+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "Scarica" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Nessuna anteprima disponibile per" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index e34db2db96e..c4f2d4bd3b9 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-30 10:25+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Aiuto" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Personale" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Impostazioni" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Utenti" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Applicazioni" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Torna ai file" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "I file selezionati sono troppo grandi per generare un file zip." @@ -111,3 +111,16 @@ msgstr "l'anno scorso" #: template.php:97 msgid "years ago" msgstr "anni fa" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 9d79ed9ad65..0847f13efbb 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 10:32+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -94,39 +94,39 @@ msgstr "usa il servizio cron di sistema" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API di condivisione" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Abilita API di condivisione" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Consenti collegamenti" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Consenti agli utenti di condividere elementi al pubblico con collegamenti" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Consenti la ri-condivisione" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Consenti agli utenti di condividere elementi già condivisi" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Consenti agli utenti di condividere con chiunque" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Consenti agli utenti di condividere con gli utenti del proprio gruppo" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index a15ecce195d..d0d6924197f 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:44+0000\n" +"Last-Translator: ttyn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,7 +231,7 @@ msgstr "データベース名" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "データベースの表領域" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index a4c99fedccf..3fbe7f60e99 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -4,13 +4,14 @@ # # Translators: # Daisuke Deguchi , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:52+0000\n" +"Last-Translator: ttyn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -107,7 +108,7 @@ msgstr "アップロードはキャンセルされました。" #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index c47c870dc7b..648cb83f0f4 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:43+0000\n" +"Last-Translator: ttyn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +33,7 @@ msgstr "ダウンロード" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "プレビューはありません" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 30b50556235..a2197a29945 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daisuke Deguchi , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,96 +18,109 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "ヘルプ" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "個人設定" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "設定" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "ユーザ" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "アプリ" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "管理者" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIPダウンロードは無効です。" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "ファイルは1つずつダウンロードする必要があります。" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "ファイルに戻る" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "アプリケーションは無効です" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "認証エラー" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "トークンが無効になりました。ページを再読込してください。" #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "秒前" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1分前" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d 分前" #: template.php:91 msgid "today" -msgstr "" +msgstr "今日" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "昨日" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d 日前" #: template.php:94 msgid "last month" -msgstr "" +msgstr "先月" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "月前" #: template.php:96 msgid "last year" -msgstr "" +msgstr "昨年" #: template.php:97 msgid "years ago" +msgstr "年前" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index e7b829db825..2964354ae9c 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 08:06+0000\n" +"Last-Translator: ttyn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,39 +89,39 @@ msgstr "システムのcronサービスを使用" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "Share API" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Share APIを有効" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Share APIの使用をアプリケーションに許可" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "リンクを許可" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "ユーザーがリンクによる公開でアイテムを共有することが出来るようにする" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "再共有を許可" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "ユーザーが共有されているアイテムをさらに共有することが出来るようにする" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "ユーザーが誰にでも共有出来るようにする" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "ユーザーがグループの人にしか共有出来ないようにする" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 2308a069de8..bf494197c62 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index bb55ec5a6fa..8aa81edb8f7 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index cf1cc1edba5..4240cfb1d2e 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-22 12:43+0000\n" -"Last-Translator: Dr. ROX \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "Programos" msgid "Admin" msgstr "Administravimas" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Atgal į Failus" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." @@ -111,3 +111,16 @@ msgstr "pereitais metais" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 40959dcc424..b7c5c417809 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 713abb126dc..626e9dc54f2 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index cd3b8e2f803..35fe79aada3 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 52b02f78ee2..4a78161719d 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 22:57+0000\n" -"Last-Translator: runesudden \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,19 +43,19 @@ msgstr "Apper" msgid "Admin" msgstr "Admin" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Tilbake til filer" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" @@ -112,3 +112,16 @@ msgstr "i fjor" #: template.php:97 msgid "years ago" msgstr "år siden" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 2715403dba6..d7e354e9f4f 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 15:58+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "Apps" msgid "Admin" msgstr "Administrator" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Terug naar bestanden" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." @@ -111,3 +111,16 @@ msgstr "vorig jaar" #: template.php:97 msgid "years ago" msgstr "jaar geleden" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 17b3f9e58db..aa993826b37 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 5b7d557a682..cea78bc05fa 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki <>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,96 +18,109 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "Pomoc" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "Osobiste" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "Ustawienia" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "Użytkownicy" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "Aplikacje" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "Administrator" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "Pobieranie ZIP jest wyłączone." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Pliki muszą zostać pobrane pojedynczo." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "Wróć do plików" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Aplikacja nie jest włączona" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Błąd uwierzytelniania" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token wygasł. Proszę ponownie załadować stronę." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "sekund temu" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1 minutę temu" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d minut temu" #: template.php:91 msgid "today" -msgstr "" +msgstr "dzisiaj" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "wczoraj" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d dni temu" #: template.php:94 msgid "last month" -msgstr "" +msgstr "ostatni miesiąc" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "miesięcy temu" #: template.php:96 msgid "last year" -msgstr "" +msgstr "ostatni rok" #: template.php:97 msgid "years ago" +msgstr "lat temu" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index 27da662a78c..b39526b5c06 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index d9a3c6dbc4a..3ff7a35f895 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 70d233eab3d..c2f8bf858d1 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index b0fd2256d65..1c5698fa220 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 9ebfee3096b..2203f972c16 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 02:57+0000\n" +"Last-Translator: Denis \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -112,7 +112,7 @@ msgstr "Загрузка отменена." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 8c24f83b941..e345d2c9749 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 09:37+0000\n" -"Last-Translator: Denis \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "Приложения" msgid "Admin" msgstr "Admin" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Назад к файлам" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." @@ -111,3 +111,16 @@ msgstr "в прошлом году" #: template.php:97 msgid "years ago" msgstr "годы назад" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 2c2884966b3..9b7bced5422 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 1e1e954af89..b4ffed65379 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 3c5d0388314..5039ad2eacd 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 14:09+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -232,7 +232,7 @@ msgstr "Ime podatkovne zbirke" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Razpredelnica podatkovne zbirke" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 97c1b7d487e..10c581f9878 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 14:14+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -109,7 +109,7 @@ msgstr "Nalaganje je bilo preklicano." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalaganje preklicali." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index c5c7a7f2b65..54b84f8ba13 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 14:15+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "Prenesi" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Predogled ni na voljo za" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 58fda368690..8b9d7de0fa1 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-22 02:04+0200\n" -"PO-Revision-Date: 2012-08-21 13:10+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "Aplikacije" msgid "Admin" msgstr "Skrbnik" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP prenos je onemogočen." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Datoteke morajo biti prenešene posamezno." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Nazaj na datoteke" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Izbrane datoteke so prevelike, da bi lahko ustvarili zip datoteko." @@ -111,3 +111,16 @@ msgstr "lani" #: template.php:97 msgid "years ago" msgstr "let nazaj" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index d2fe502e3fd..6cb24d59f88 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 14:24+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,39 +90,39 @@ msgstr "uporabi sistemski servis za periodična opravila" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API souporabe" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Omogoči API souporabe" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Dovoli aplikacijam uporabo API-ja souporabe" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Dovoli povezave" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Uporabnikom dovoli souporabo z javnimi povezavami" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Dovoli nadaljnjo souporabo" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Uporabnikom dovoli nadaljnjo souporabo" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Uporabnikom dovoli souporabo s komerkoli" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Uporabnikom dovoli souporabo le znotraj njihove skupine" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/so/lib.po b/l10n/so/lib.po index a9d32f69499..0b922ce5c76 100644 --- a/l10n/so/lib.po +++ b/l10n/so/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: so\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 2ee133933bf..f8fa96c4864 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 7b9a1d577a7..8c7d9b18bd8 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index a42d5e9bdab..870dffe8a99 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 08:10+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -235,7 +235,7 @@ msgstr "Databasnamn" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Databas tabellutrymme" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index f5e62007888..719ccf3db60 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 08:09+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -112,7 +112,7 @@ msgstr "Uppladdning avbruten." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 8605c3d5d7b..1888512788b 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 08:24+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "Ladda ner" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Ingen förhandsgranskning tillgänglig för" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index b4e0a3e8656..711935d56e6 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-22 02:04+0200\n" -"PO-Revision-Date: 2012-08-21 08:40+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,19 +43,19 @@ msgstr "Program" msgid "Admin" msgstr "Admin" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Tillbaka till Filer" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Valda filer är för stora för att skapa zip-fil." @@ -112,3 +112,16 @@ msgstr "förra året" #: template.php:97 msgid "years ago" msgstr "år sedan" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 325053565a9..b2111ddb48a 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 08:23+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -94,39 +94,39 @@ msgstr "använd systemets cron-tjänst" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "Delat API" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Aktivera delat API" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Tillåt applikationer att använda delat API" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Tillåt länkar" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Tillåt delning till allmänheten via publika länkar" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Tillåt dela vidare" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Tillåt användare att dela vidare filer som delats med dom" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Tillåt delning med alla" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Tillåt bara delning med användare i egna grupper" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d43c24c59c6..5ec454483f1 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 1f2ea860e0c..aba316e6268 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 9aaa78f17f5..80c2aea915c 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index d1350464edc..e9739cd6a06 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 19c56ef174b..6cfc4adf2a9 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 934a3cccec0..8eb69462787 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index f74684b23e8..1024b00ff3b 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a326ab25b34..110d19e434a 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index bedad418089..7b87fc39d38 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 2c98916ec0d..80fbd9a5ac9 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 17:01+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,7 +231,7 @@ msgstr "ชื่อฐานข้อมูล" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "พื้นที่ตารางในฐานข้อมูล" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 4ff4ae0cd44..5068c75cf78 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 17:03+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -108,7 +108,7 @@ msgstr "การอัพโหลดถูกยกเลิก" #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 8f2587456ff..27aa8b2872a 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 17:05+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "ดาวน์โหลด" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 57847a06f6d..93925a0b0d9 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 13:40+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "แอปฯ" msgid "Admin" msgstr "ผู้ดูแล" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" @@ -111,3 +111,16 @@ msgstr "ปีที่แล้ว" #: template.php:97 msgid "years ago" msgstr "ปีที่ผ่านมา" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 2d94b32cab5..fa0161c36cf 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 17:08+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,39 +90,39 @@ msgstr "ใช้บริการ cron จากระบบ" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API สำหรับคุณสมบัติแชร์ข้อมูล" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "อนุญาตให้ใช้งานลิงก์ได้" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 40f3cba6d9f..8644c4df375 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -4,14 +4,15 @@ # # Translators: # Aranel Surion , 2011, 2012. +# Caner Başaran , 2012. # Necdet Yücel , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 21:48+0000\n" +"Last-Translator: Caner Başaran \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" @@ -231,7 +232,7 @@ msgstr "Veritabanı adı" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Veritabanı tablo alanı" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index a1b4a5a6642..61fec9e31f7 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" @@ -17,43 +17,43 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index a818ac7d1f4..d2a2e0eac4a 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-30 21:26+0000\n" -"Last-Translator: dzubchikd \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Допомога" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Особисте" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Налаштування" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Користувачі" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Додатки" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Адмін" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Повернутися до файлів" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Вибрані фали завеликі для генерування zip файлу." @@ -111,3 +111,16 @@ msgstr "минулого року" #: template.php:97 msgid "years ago" msgstr "роки тому" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 40d92269ac1..966ae227063 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 49d72542b8d..541a462fb8a 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 4a52e2838c8..7bb4a2e7860 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 12:13+0000\n" -"Last-Translator: leonfeng \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "应用" msgid "Admin" msgstr "管理" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "回到文件" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大,无法生成 zip 文件。" @@ -111,3 +111,16 @@ msgstr "上年" #: template.php:97 msgid "years ago" msgstr "几年前" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index feb9070fb42..7af51044d5f 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -4,13 +4,14 @@ # # Translators: # Donahue Chuang , 2012. +# Ming Yi Wu , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:35+0000\n" +"Last-Translator: Ming Yi Wu \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +33,7 @@ msgstr "此分類已經存在:" #: js/jquery-ui-1.8.16.custom.min.js:511 msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" +msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" #: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" @@ -40,75 +41,75 @@ msgstr "設定" #: js/js.js:591 msgid "January" -msgstr "" +msgstr "一月" #: js/js.js:591 msgid "February" -msgstr "" +msgstr "二月" #: js/js.js:591 msgid "March" -msgstr "" +msgstr "三月" #: js/js.js:591 msgid "April" -msgstr "" +msgstr "四月" #: js/js.js:591 msgid "May" -msgstr "" +msgstr "五月" #: js/js.js:591 msgid "June" -msgstr "" +msgstr "六月" #: js/js.js:592 msgid "July" -msgstr "" +msgstr "七月" #: js/js.js:592 msgid "August" -msgstr "" +msgstr "八月" #: js/js.js:592 msgid "September" -msgstr "" +msgstr "九月" #: js/js.js:592 msgid "October" -msgstr "" +msgstr "十月" #: js/js.js:592 msgid "November" -msgstr "" +msgstr "十一月" #: js/js.js:592 msgid "December" -msgstr "" +msgstr "十二月" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "取消" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "No" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Yes" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "Ok" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "沒選擇要刪除的分類" #: js/oc-vcategories.js:68 msgid "Error" -msgstr "" +msgstr "錯誤" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -230,7 +231,7 @@ msgstr "資料庫名稱" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "資料庫 tablespace" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index dc56f8de0c1..2bbfc8d8603 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -5,13 +5,14 @@ # Translators: # Donahue Chuang , 2012. # Eddy Chang , 2012. +# ywang , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 20:40+0000\n" +"Last-Translator: ywang \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -59,15 +60,15 @@ msgstr "刪除" #: js/filelist.js:141 msgid "already exists" -msgstr "" +msgstr "已經存在" #: js/filelist.js:141 msgid "replace" -msgstr "" +msgstr "取代" #: js/filelist.js:141 msgid "cancel" -msgstr "" +msgstr "取消" #: js/filelist.js:195 msgid "replaced" @@ -87,15 +88,15 @@ msgstr "" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "產生壓縮檔, 它可能需要一段時間." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0" #: js/files.js:208 msgid "Upload Error" -msgstr "" +msgstr "上傳發生錯誤" #: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" @@ -103,16 +104,16 @@ msgstr "" #: js/files.js:341 msgid "Upload cancelled." -msgstr "" +msgstr "上傳取消" #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "檔案上傳中. 離開此頁面將會取消上傳." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "無效的名稱, '/'是不被允許的" #: js/files.js:726 templates/index.php:55 msgid "Size" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 43e6429a60b..45a52a790a7 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. +# ywang , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,96 +19,109 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "說明" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "個人" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "設定" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "使用者" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "應用程式" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "管理" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP 下載已關閉" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "檔案需要逐一下載" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "回到檔案列表" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "選擇的檔案太大以致於無法產生壓縮檔" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "應用程式未啟用" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "認證錯誤" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token 過期. 請重新整理頁面" #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "幾秒前" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1 分鐘前" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d 分鐘前" #: template.php:91 msgid "today" -msgstr "" +msgstr "今天" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "昨天" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d 天前" #: template.php:94 msgid "last month" -msgstr "" +msgstr "上個月" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "幾個月前" #: template.php:96 msgid "last year" -msgstr "" +msgstr "去年" #: template.php:97 msgid "years ago" +msgstr "幾年前" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/lib/l10n/da.php b/lib/l10n/da.php new file mode 100644 index 00000000000..7a9ee26b477 --- /dev/null +++ b/lib/l10n/da.php @@ -0,0 +1,25 @@ + "Hjælp", +"Personal" => "Personlig", +"Settings" => "Indstillinger", +"Users" => "Brugere", +"Apps" => "Apps", +"Admin" => "Admin", +"ZIP download is turned off." => "ZIP-download er slået fra.", +"Files need to be downloaded one by one." => "Filer skal downloades en for en.", +"Back to Files" => "Tilbage til Filer", +"Selected files too large to generate zip file." => "De markerede filer er for store til at generere en ZIP-fil.", +"Application is not enabled" => "Programmet er ikke aktiveret", +"Authentication error" => "Adgangsfejl", +"Token expired. Please reload page." => "Adgang er udløbet. Genindlæs siden.", +"seconds ago" => "sekunder siden", +"1 minute ago" => "1 minut siden", +"%d minutes ago" => "%d minutter siden", +"today" => "I dag", +"yesterday" => "I går", +"%d days ago" => "%d dage siden", +"last month" => "Sidste måned", +"months ago" => "måneder siden", +"last year" => "Sidste år", +"years ago" => "år siden" +); diff --git a/lib/l10n/eo.php b/lib/l10n/eo.php index 96bcb06a8d7..3f89e2eca73 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -4,6 +4,7 @@ "Settings" => "Agordo", "Users" => "Uzantoj", "Apps" => "Aplikaĵoj", +"Admin" => "Administranto", "ZIP download is turned off." => "ZIP-elŝuto estas malkapabligita.", "Files need to be downloaded one by one." => "Dosieroj devas elŝutiĝi unuope.", "Back to Files" => "Reen al la dosieroj", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php new file mode 100644 index 00000000000..989b3694136 --- /dev/null +++ b/lib/l10n/eu.php @@ -0,0 +1,25 @@ + "Laguntza", +"Personal" => "Pertsonala", +"Settings" => "Ezarpenak", +"Users" => "Erabiltzaileak", +"Apps" => "Aplikazioak", +"Admin" => "Admin", +"ZIP download is turned off." => "ZIP deskarga ez dago gaituta.", +"Files need to be downloaded one by one." => "Fitxategiak banan-banan deskargatu behar dira.", +"Back to Files" => "Itzuli fitxategietara", +"Selected files too large to generate zip file." => "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko.", +"Application is not enabled" => "Aplikazioa ez dago gaituta", +"Authentication error" => "Autentikazio errorea", +"Token expired. Please reload page." => "Tokena iraungitu da. Mesedez birkargatu orria.", +"seconds ago" => "orain dela segundu batzuk", +"1 minute ago" => "orain dela minutu 1", +"%d minutes ago" => "orain dela %d minutu", +"today" => "gaur", +"yesterday" => "atzo", +"%d days ago" => "orain dela %d egun", +"last month" => "joan den hilabetea", +"months ago" => "orain dela hilabete batzuk", +"last year" => "joan den urtea", +"years ago" => "orain dela urte batzuk" +); diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php new file mode 100644 index 00000000000..eb074b79c61 --- /dev/null +++ b/lib/l10n/hu_HU.php @@ -0,0 +1,25 @@ + "Súgó", +"Personal" => "Személyes", +"Settings" => "Beállítások", +"Users" => "Felhasználók", +"Apps" => "Alkalmazások", +"Admin" => "Admin", +"ZIP download is turned off." => "ZIP-letöltés letiltva", +"Files need to be downloaded one by one." => "A file-okat egyenként kell letölteni", +"Back to Files" => "Vissza a File-okhoz", +"Selected files too large to generate zip file." => "Túl nagy file-ok a zip-generáláshoz", +"Application is not enabled" => "Az alkalmazás nincs engedélyezve", +"Authentication error" => "Hitelesítési hiba", +"Token expired. Please reload page." => "A token lejárt. Frissítsd az oldalt.", +"seconds ago" => "másodperccel ezelőtt", +"1 minute ago" => "1 perccel ezelőtt", +"%d minutes ago" => "%d perccel ezelőtt", +"today" => "ma", +"yesterday" => "tegnap", +"%d days ago" => "%d évvel ezelőtt", +"last month" => "múlt hónapban", +"months ago" => "hónappal ezelőtt", +"last year" => "tavaly", +"years ago" => "évvel ezelőtt" +); diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php new file mode 100644 index 00000000000..3552a525c99 --- /dev/null +++ b/lib/l10n/ja_JP.php @@ -0,0 +1,25 @@ + "ヘルプ", +"Personal" => "個人設定", +"Settings" => "設定", +"Users" => "ユーザ", +"Apps" => "アプリ", +"Admin" => "管理者", +"ZIP download is turned off." => "ZIPダウンロードは無効です。", +"Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", +"Back to Files" => "ファイルに戻る", +"Selected files too large to generate zip file." => "選択したファイルはZIPファイルの生成には大きすぎます。", +"Application is not enabled" => "アプリケーションは無効です", +"Authentication error" => "認証エラー", +"Token expired. Please reload page." => "トークンが無効になりました。ページを再読込してください。", +"seconds ago" => "秒前", +"1 minute ago" => "1分前", +"%d minutes ago" => "%d 分前", +"today" => "今日", +"yesterday" => "昨日", +"%d days ago" => "%d 日前", +"last month" => "先月", +"months ago" => "月前", +"last year" => "昨年", +"years ago" => "年前" +); diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php new file mode 100644 index 00000000000..169462fabb7 --- /dev/null +++ b/lib/l10n/pl.php @@ -0,0 +1,25 @@ + "Pomoc", +"Personal" => "Osobiste", +"Settings" => "Ustawienia", +"Users" => "Użytkownicy", +"Apps" => "Aplikacje", +"Admin" => "Administrator", +"ZIP download is turned off." => "Pobieranie ZIP jest wyłączone.", +"Files need to be downloaded one by one." => "Pliki muszą zostać pobrane pojedynczo.", +"Back to Files" => "Wróć do plików", +"Selected files too large to generate zip file." => "Wybrane pliki są zbyt duże, aby wygenerować plik zip.", +"Application is not enabled" => "Aplikacja nie jest włączona", +"Authentication error" => "Błąd uwierzytelniania", +"Token expired. Please reload page." => "Token wygasł. Proszę ponownie załadować stronę.", +"seconds ago" => "sekund temu", +"1 minute ago" => "1 minutę temu", +"%d minutes ago" => "%d minut temu", +"today" => "dzisiaj", +"yesterday" => "wczoraj", +"%d days ago" => "%d dni temu", +"last month" => "ostatni miesiąc", +"months ago" => "miesięcy temu", +"last year" => "ostatni rok", +"years ago" => "lat temu" +); diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php new file mode 100644 index 00000000000..008c9483a00 --- /dev/null +++ b/lib/l10n/zh_TW.php @@ -0,0 +1,25 @@ + "說明", +"Personal" => "個人", +"Settings" => "設定", +"Users" => "使用者", +"Apps" => "應用程式", +"Admin" => "管理", +"ZIP download is turned off." => "ZIP 下載已關閉", +"Files need to be downloaded one by one." => "檔案需要逐一下載", +"Back to Files" => "回到檔案列表", +"Selected files too large to generate zip file." => "選擇的檔案太大以致於無法產生壓縮檔", +"Application is not enabled" => "應用程式未啟用", +"Authentication error" => "認證錯誤", +"Token expired. Please reload page." => "Token 過期. 請重新整理頁面", +"seconds ago" => "幾秒前", +"1 minute ago" => "1 分鐘前", +"%d minutes ago" => "%d 分鐘前", +"today" => "今天", +"yesterday" => "昨天", +"%d days ago" => "%d 天前", +"last month" => "上個月", +"months ago" => "幾個月前", +"last year" => "去年", +"years ago" => "幾年前" +); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 7b95d6f9af1..29cad92715d 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "executa una tasca en carregar cada pàgina", "cron.php is registered at a webcron service" => "cron.php està registrat en un servei web cron", "use systems cron service" => "usa el servei cron del sistema", +"Share API" => "API de compartir", +"Enable Share API" => "Activa l'API de compartir", +"Allow apps to use the Share API" => "Permet que les aplicacions usin l'API de compartir", +"Allow links" => "Permet enllaços", +"Allow users to share items to the public with links" => "Permet als usuaris compartir elements amb el públic amb enllaços", +"Allow resharing" => "Permet compartir de nou", +"Allow users to share items shared with them again" => "Permet als usuaris comparir elements ja compartits amb ells", +"Allow users to share with anyone" => "Permet als usuaris compartir amb qualsevol", +"Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb usuaris del seu grup", "Log" => "Registre", "More" => "Més", "Add your App" => "Afegiu la vostra aplicació", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 8a9e4bd5682..6d1d28fa2e8 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.", "cron.php is registered at a webcron service" => "cron.php ist beim Webcron-Service registriert", "use systems cron service" => "Nutze System-Cron-Service", +"Share API" => "Teilungs-API", +"Enable Share API" => "Teilungs-API aktivieren", +"Allow apps to use the Share API" => "Erlaubt Nutzern die Teilungs-API zu nutzen", +"Allow links" => "Links erlauben", +"Allow users to share items to the public with links" => "Erlaube Nutzern Dateien mithilfe von Links mit der Öffentlichkeit zu teilen", +"Allow resharing" => "Erneutes Teilen erlauben", +"Allow users to share items shared with them again" => "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen", +"Allow users to share with anyone" => "Erlaube Nutzern mit jedem zu Teilen", +"Allow users to only share with users in their groups" => "Erlaube Nutzern nur das Teilen in ihrer Gruppe", "Log" => "Log", "More" => "Mehr", "Add your App" => "Fügen Sie Ihre App hinzu", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 8403b6d3883..d86dc3663ad 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "ejecutar una tarea con cada página cargada", "cron.php is registered at a webcron service" => "cron.php se registra en un servicio webcron", "use systems cron service" => "usar servicio cron del sistema", +"Share API" => "API de compartición", +"Enable Share API" => "Activar API de compartición", +"Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición", +"Allow links" => "Permitir enlaces", +"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos públicamente con enlaces", +"Allow resharing" => "Permitir re-compartir", +"Allow users to share items shared with them again" => "Permitir a los usuarios compartir elementos compartidos con ellos de nuevo", +"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera", +"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir con usuarios en sus grupos", "Log" => "Registro", "More" => "Más", "Add your App" => "Añade tu aplicación", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 89516b1c7fc..81fb9f56a2b 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "exécuter une tâche pour chaque page chargée", "cron.php is registered at a webcron service" => "cron.php est enregistré comme un service webcron", "use systems cron service" => "utiliser le service cron du système ", +"Share API" => "API de partage", +"Enable Share API" => "Activer l'API de partage", +"Allow apps to use the Share API" => "Autoriser les applications à utiliser l'API de partage", +"Allow links" => "Autoriser les liens", +"Allow users to share items to the public with links" => "Autoriser les utilisateurs à partager du contenu public avec des liens", +"Allow resharing" => "Autoriser le re-partage", +"Allow users to share items shared with them again" => "Autoriser les utilisateurs à partager des éléments déjà partagés entre eux", +"Allow users to share with anyone" => "Autoriser les utilisateurs à partager avec tout le monde", +"Allow users to only share with users in their groups" => "Autoriser les utilisateurs à ne partager qu'avec les utilisateurs dans leurs groupes", "Log" => "Journaux", "More" => "Plus", "Add your App" => "Ajoutez votre application", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index e33eddacb57..64df0cd9d42 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "esegui un'attività con ogni pagina caricata", "cron.php is registered at a webcron service" => "cron.php è registrato a un servizio webcron", "use systems cron service" => "usa il servizio cron di sistema", +"Share API" => "API di condivisione", +"Enable Share API" => "Abilita API di condivisione", +"Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", +"Allow links" => "Consenti collegamenti", +"Allow users to share items to the public with links" => "Consenti agli utenti di condividere elementi al pubblico con collegamenti", +"Allow resharing" => "Consenti la ri-condivisione", +"Allow users to share items shared with them again" => "Consenti agli utenti di condividere elementi già condivisi", +"Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", +"Allow users to only share with users in their groups" => "Consenti agli utenti di condividere con gli utenti del proprio gruppo", "Log" => "Registro", "More" => "Altro", "Add your App" => "Aggiungi la tua applicazione", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 93201a9dfe0..617020daa3f 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "ページを開く毎にタスクを1つ実行", "cron.php is registered at a webcron service" => "cron.phpをwebcronサービスに登録しました", "use systems cron service" => "システムのcronサービスを使用", +"Share API" => "Share API", +"Enable Share API" => "Share APIを有効", +"Allow apps to use the Share API" => "Share 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" => "ユーザーがグループの人にしか共有出来ないようにする", "Log" => "ログ", "More" => "もっと", "Add your App" => "アプリを追加", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index a2404d212b2..884acaf576d 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "izvedi eno nalogo z vsako naloženo stranjo", "cron.php is registered at a webcron service" => "cron.php je vpisan na storitev webcron", "use systems cron service" => "uporabi sistemski servis za periodična opravila", +"Share API" => "API souporabe", +"Enable Share API" => "Omogoči API souporabe", +"Allow apps to use the Share API" => "Dovoli aplikacijam uporabo API-ja souporabe", +"Allow links" => "Dovoli povezave", +"Allow users to share items to the public with links" => "Uporabnikom dovoli souporabo z javnimi povezavami", +"Allow resharing" => "Dovoli nadaljnjo souporabo", +"Allow users to share items shared with them again" => "Uporabnikom dovoli nadaljnjo souporabo", +"Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli", +"Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo le znotraj njihove skupine", "Log" => "Dnevnik", "More" => "Več", "Add your App" => "Dodajte vašo aplikacijo", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 7603b6b09f7..4a1d1b2c474 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "utför en uppgift vid varje sidladdning", "cron.php is registered at a webcron service" => "cron.php är registrerad på en webcron-tjänst", "use systems cron service" => "använd systemets cron-tjänst", +"Share API" => "Delat API", +"Enable Share API" => "Aktivera delat API", +"Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", +"Allow links" => "Tillåt länkar", +"Allow users to share items to the public with links" => "Tillåt delning till allmänheten via publika länkar", +"Allow resharing" => "Tillåt dela vidare", +"Allow users to share items shared with them again" => "Tillåt användare att dela vidare filer som delats med dom", +"Allow users to share with anyone" => "Tillåt delning med alla", +"Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Log" => "Logg", "More" => "Mera", "Add your App" => "Lägg till din applikation", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index a062c374c6a..6ab253362ef 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง", "cron.php is registered at a webcron service" => "cron.php ได้ถูกลงทะเบียนที่บริการ webcron", "use systems cron service" => "ใช้บริการ cron จากระบบ", +"Share API" => "API สำหรับคุณสมบัติแชร์ข้อมูล", +"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" => "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น", "Log" => "บันทึกการเปลี่ยนแปลง", "More" => "เพิ่มเติม", "Add your App" => "เพิ่มแอปของคุณ", -- cgit v1.2.3 From ebd813ae95a52e291576fe24cc8c631126584492 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 1 Sep 2012 01:46:31 +0200 Subject: don't throw errors in the autoloader when a class doesn't exist --- lib/base.php | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 1798bf09b95..f9adefd8b66 100644 --- a/lib/base.php +++ b/lib/base.php @@ -78,20 +78,25 @@ class OC{ require_once $path; } elseif(strpos($className,'OC_')===0){ - require_once strtolower(str_replace('_','/',substr($className,3)) . '.php'); + $path = strtolower(str_replace('_','/',substr($className,3)) . '.php'); } elseif(strpos($className,'OCP\\')===0){ - require_once 'public/'.strtolower(str_replace('\\','/',substr($className,3)) . '.php'); + $path = 'public/'.strtolower(str_replace('\\','/',substr($className,3)) . '.php'); } elseif(strpos($className,'OCA\\')===0){ - require_once 'apps/'.strtolower(str_replace('\\','/',substr($className,3)) . '.php'); + $path = 'apps/'.strtolower(str_replace('\\','/',substr($className,3)) . '.php'); } elseif(strpos($className,'Sabre_')===0) { - require_once str_replace('_','/',$className) . '.php'; + $path = str_replace('_','/',$className) . '.php'; } elseif(strpos($className,'Test_')===0){ - require_once 'tests/lib/'.strtolower(str_replace('_','/',substr($className,5)) . '.php'); + $path = 'tests/lib/'.strtolower(str_replace('_','/',substr($className,5)) . '.php'); } + + if($fullPath = stream_resolve_include_path($path)){ + require_once $path; + } + return false; } public static function initPaths(){ -- cgit v1.2.3 From f67aef608f7bbeb43be2c8d8c10dc91ea0cb5d4b Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 1 Sep 2012 01:54:13 +0200 Subject: load authentication apps on login --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index f9adefd8b66..8d605e52802 100644 --- a/lib/base.php +++ b/lib/base.php @@ -469,7 +469,7 @@ class OC{ } protected static function handleLogin() { - OC_App::loadApps(array('prelogin')); + OC_App::loadApps(array('prelogin','authentication')); $error = false; // remember was checked after last login if (OC::tryRememberLogin()) { -- cgit v1.2.3 From 3dacf149de2ac560328242666473533c81c4b418 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 1 Sep 2012 02:48:54 +0200 Subject: allow configuring user backends in config.php --- lib/base.php | 11 ++++++++++- lib/user.php | 25 +++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 8d605e52802..fb83f6ea0a4 100644 --- a/lib/base.php +++ b/lib/base.php @@ -351,6 +351,9 @@ class OC{ } } + //setup extra user backends + OC_User::setupBackends(); + // register cache cleanup jobs OC_BackgroundJob_RegularTask::register('OC_Cache_FileGlobal', 'gc'); OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); @@ -423,6 +426,7 @@ class OC{ // Someone is logged in : if(OC_User::isLoggedIn()) { OC_App::loadApps(); + OC_User::setupBackends(); if(isset($_GET["logout"]) and ($_GET["logout"])) { OC_User::logout(); header("Location: ".OC::$WEBROOT.'/'); @@ -469,7 +473,7 @@ class OC{ } protected static function handleLogin() { - OC_App::loadApps(array('prelogin','authentication')); + OC_App::loadApps(array('prelogin')); $error = false; // remember was checked after last login if (OC::tryRememberLogin()) { @@ -517,7 +521,12 @@ class OC{ || ($_SESSION['sectoken']!=$_POST['sectoken']) ) { return false; } + OC_App::loadApps(); + + //setup extra user backends + OC_User::setupBackends(); + if(OC_User::login($_POST["user"], $_POST["password"])) { if(!empty($_POST["remember_login"])){ if(defined("DEBUG") && DEBUG) { diff --git a/lib/user.php b/lib/user.php index c432f6074a6..305fb8ed3a2 100644 --- a/lib/user.php +++ b/lib/user.php @@ -39,6 +39,8 @@ class OC_User { // The backend used for user management private static $_usedBackends = array(); + + private static $_setupedBackends = array(); // Backends available (except database) private static $_backends = array(); @@ -114,6 +116,28 @@ class OC_User { self::$_usedBackends=array(); } + /** + * setup the configured backends in config.php + */ + public static function setupBackends(){ + $backends=OC_Config::getValue('user_backends',array()); + foreach($backends as $i=>$config){ + $class=$config['class']; + $arguments=$config['arguments']; + if(class_exists($class) and array_search($i,self::$_setupedBackends)===false){ + // make a reflection object + $reflectionObj = new ReflectionClass($class); + + // use Reflection to create a new instance, using the $args + $backend = $reflectionObj->newInstanceArgs($arguments); + self::useBackend($backend); + $_setupedBackends[]=$i; + }else{ + OC_Log::write('core','User backend '.$class.' not found.',OC_Log::ERROR); + } + } + } + /** * @brief Create a new user * @param $uid The username of the user to create @@ -253,6 +277,7 @@ class OC_User { public static function isLoggedIn(){ if( isset($_SESSION['user_id']) AND $_SESSION['user_id']) { OC_App::loadApps(array('authentication')); + self::setupBackends(); if (self::userExists($_SESSION['user_id']) ){ return true; } -- cgit v1.2.3 From c0c48cb3eeadc6cdb593ffb2a746c72b3f3b1430 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 1 Sep 2012 13:37:28 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/fi_FI.php | 1 + apps/files_sharing/l10n/nl.php | 8 ++--- l10n/af/files_versions.po | 16 ++++++--- l10n/af/settings.po | 53 ++++++++++++++++++--------- l10n/ar/files_versions.po | 16 ++++++--- l10n/ar/settings.po | 53 ++++++++++++++++++--------- l10n/ar_SA/files_versions.po | 16 ++++++--- l10n/ar_SA/settings.po | 53 ++++++++++++++++++--------- l10n/bg_BG/files_versions.po | 16 ++++++--- l10n/bg_BG/settings.po | 53 ++++++++++++++++++--------- l10n/ca/files_versions.po | 16 ++++++--- l10n/ca/settings.po | 55 ++++++++++++++++++---------- l10n/cs_CZ/files_versions.po | 16 ++++++--- l10n/cs_CZ/settings.po | 53 ++++++++++++++++++--------- l10n/da/files_versions.po | 16 ++++++--- l10n/da/settings.po | 53 ++++++++++++++++++--------- l10n/de/files_versions.po | 14 ++++++-- l10n/de/lib.po | 12 +++---- l10n/de/settings.po | 55 ++++++++++++++++++---------- l10n/el/files_versions.po | 16 ++++++--- l10n/el/settings.po | 53 ++++++++++++++++++--------- l10n/eo/files_versions.po | 16 ++++++--- l10n/eo/settings.po | 53 ++++++++++++++++++--------- l10n/es/files_versions.po | 16 ++++++--- l10n/es/settings.po | 55 ++++++++++++++++++---------- l10n/et_EE/files_versions.po | 16 ++++++--- l10n/et_EE/settings.po | 53 ++++++++++++++++++--------- l10n/eu/files_versions.po | 16 ++++++--- l10n/eu/settings.po | 53 ++++++++++++++++++--------- l10n/eu_ES/files_versions.po | 16 ++++++--- l10n/eu_ES/settings.po | 53 ++++++++++++++++++--------- l10n/fa/files_versions.po | 16 ++++++--- l10n/fa/settings.po | 53 ++++++++++++++++++--------- l10n/fi/files_versions.po | 16 ++++++--- l10n/fi/settings.po | 53 ++++++++++++++++++--------- l10n/fi_FI/files.po | 8 ++--- l10n/fi_FI/files_versions.po | 16 ++++++--- l10n/fi_FI/lib.po | 12 +++---- l10n/fi_FI/settings.po | 53 ++++++++++++++++++--------- l10n/fr/files_versions.po | 16 ++++++--- l10n/fr/settings.po | 55 ++++++++++++++++++---------- l10n/gl/files_versions.po | 16 ++++++--- l10n/gl/settings.po | 53 ++++++++++++++++++--------- l10n/he/files_versions.po | 16 ++++++--- l10n/he/settings.po | 53 ++++++++++++++++++--------- l10n/hi/files_versions.po | 16 ++++++--- l10n/hi/settings.po | 53 ++++++++++++++++++--------- l10n/hr/files_versions.po | 16 ++++++--- l10n/hr/settings.po | 53 ++++++++++++++++++--------- l10n/hu_HU/files_versions.po | 16 ++++++--- l10n/hu_HU/settings.po | 53 ++++++++++++++++++--------- l10n/hy/files_versions.po | 16 ++++++--- l10n/hy/settings.po | 53 ++++++++++++++++++--------- l10n/ia/files_versions.po | 16 ++++++--- l10n/ia/settings.po | 53 ++++++++++++++++++--------- l10n/id/files_versions.po | 16 ++++++--- l10n/id/settings.po | 53 ++++++++++++++++++--------- l10n/id_ID/files_versions.po | 16 ++++++--- l10n/id_ID/settings.po | 53 ++++++++++++++++++--------- l10n/it/files_versions.po | 16 ++++++--- l10n/it/lib.po | 12 +++---- l10n/it/settings.po | 55 ++++++++++++++++++---------- l10n/ja_JP/files_versions.po | 16 ++++++--- l10n/ja_JP/settings.po | 55 ++++++++++++++++++---------- l10n/ko/files_versions.po | 16 ++++++--- l10n/ko/settings.po | 53 ++++++++++++++++++--------- l10n/lb/files_versions.po | 16 ++++++--- l10n/lb/settings.po | 53 ++++++++++++++++++--------- l10n/lt_LT/files_versions.po | 16 ++++++--- l10n/lt_LT/settings.po | 53 ++++++++++++++++++--------- l10n/lv/files_versions.po | 16 ++++++--- l10n/lv/settings.po | 53 ++++++++++++++++++--------- l10n/mk/files_versions.po | 16 ++++++--- l10n/mk/settings.po | 53 ++++++++++++++++++--------- l10n/ms_MY/files_versions.po | 16 ++++++--- l10n/ms_MY/settings.po | 53 ++++++++++++++++++--------- l10n/nb_NO/files_versions.po | 16 ++++++--- l10n/nb_NO/settings.po | 53 ++++++++++++++++++--------- l10n/nl/files_sharing.po | 14 ++++---- l10n/nl/files_versions.po | 16 ++++++--- l10n/nl/settings.po | 71 +++++++++++++++++++++++-------------- l10n/nn_NO/files_versions.po | 16 ++++++--- l10n/nn_NO/settings.po | 53 ++++++++++++++++++--------- l10n/pl/files_versions.po | 16 ++++++--- l10n/pl/settings.po | 53 ++++++++++++++++++--------- l10n/pl_PL/files_versions.po | 16 ++++++--- l10n/pl_PL/settings.po | 53 ++++++++++++++++++--------- l10n/pt_BR/files_versions.po | 16 ++++++--- l10n/pt_BR/settings.po | 53 ++++++++++++++++++--------- l10n/pt_PT/files_versions.po | 16 ++++++--- l10n/pt_PT/settings.po | 53 ++++++++++++++++++--------- l10n/ro/files_versions.po | 16 ++++++--- l10n/ro/settings.po | 53 ++++++++++++++++++--------- l10n/ru/files_versions.po | 16 ++++++--- l10n/ru/settings.po | 53 ++++++++++++++++++--------- l10n/ru_RU/files_versions.po | 16 ++++++--- l10n/ru_RU/settings.po | 53 ++++++++++++++++++--------- l10n/sk_SK/files_versions.po | 16 ++++++--- l10n/sk_SK/settings.po | 53 ++++++++++++++++++--------- l10n/sl/files_versions.po | 16 ++++++--- l10n/sl/lib.po | 12 +++---- l10n/sl/settings.po | 55 ++++++++++++++++++---------- l10n/so/files_versions.po | 16 ++++++--- l10n/so/settings.po | 53 ++++++++++++++++++--------- l10n/sr/files_versions.po | 16 ++++++--- l10n/sr/settings.po | 53 ++++++++++++++++++--------- l10n/sr@latin/files_versions.po | 16 ++++++--- l10n/sr@latin/settings.po | 53 ++++++++++++++++++--------- l10n/sv/files_versions.po | 16 ++++++--- l10n/sv/lib.po | 12 +++---- l10n/sv/settings.po | 55 ++++++++++++++++++---------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 12 +++++-- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 50 +++++++++++++++++--------- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/files_versions.po | 16 ++++++--- l10n/th_TH/settings.po | 55 ++++++++++++++++++---------- l10n/tr/files_versions.po | 16 ++++++--- l10n/tr/settings.po | 53 ++++++++++++++++++--------- l10n/uk/files_versions.po | 16 ++++++--- l10n/uk/settings.po | 53 ++++++++++++++++++--------- l10n/vi/files_versions.po | 16 ++++++--- l10n/vi/settings.po | 60 ++++++++++++++++++++----------- l10n/zh_CN.GB2312/files_versions.po | 16 ++++++--- l10n/zh_CN.GB2312/settings.po | 53 ++++++++++++++++++--------- l10n/zh_CN/files_versions.po | 16 ++++++--- l10n/zh_CN/settings.po | 53 ++++++++++++++++++--------- l10n/zh_TW/files_versions.po | 16 ++++++--- l10n/zh_TW/settings.po | 53 ++++++++++++++++++--------- lib/l10n/de.php | 5 ++- lib/l10n/fi_FI.php | 5 ++- lib/l10n/it.php | 5 ++- lib/l10n/sl.php | 5 ++- lib/l10n/sv.php | 5 ++- settings/l10n/nl.php | 9 +++++ settings/l10n/vi.php | 4 +++ 141 files changed, 2935 insertions(+), 1313 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 902ea859a31..399adb0b1d7 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -20,6 +20,7 @@ "Upload Error" => "Lähetysvirhe.", "Pending" => "Odottaa", "Upload cancelled." => "Lähetys peruttu.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.", "Invalid name, '/' is not allowed." => "Virheellinen nimi, merkki '/' ei ole sallittu.", "Size" => "Koko", "Modified" => "Muutettu", diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index d357d66f674..a4da2723cae 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -1,6 +1,6 @@ "Grootte", -"Modified" => "Aangepast", -"Delete all" => "Verwijder alles", -"Delete" => "Vewijder" +"Password" => "Passeerwoord", +"Download" => "Downloaden", +"No preview available for" => "Geen voorbeeldweergave beschikbaar voor", +"web services under your control" => "Webdiensten in eigen beheer" ); diff --git a/l10n/af/files_versions.po b/l10n/af/files_versions.po index d7b621cc6f3..48efcf1e430 100644 --- a/l10n/af/files_versions.po +++ b/l10n/af/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/af/settings.po b/l10n/af/settings.po index 11af545b8c7..1595e659d4f 100644 --- a/l10n/af/settings.po +++ b/l10n/af/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -69,66 +69,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index de2471bc46e..ab6c4493898 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index c1af2bbd91a..4d45c84aa4d 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -71,66 +71,85 @@ msgstr "__language_name__" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/ar_SA/files_versions.po b/l10n/ar_SA/files_versions.po index 0b3630c5046..9596994e8a8 100644 --- a/l10n/ar_SA/files_versions.po +++ b/l10n/ar_SA/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: ar_SA\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po index cfa336caae1..beb499e9f24 100644 --- a/l10n/ar_SA/settings.po +++ b/l10n/ar_SA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -69,66 +69,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index 40a5fc5e9bf..bc5aaca01cc 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 123996f9b88..e05c9110f2c 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -72,66 +72,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index d0555a50f12..ae5ccd77e07 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 18:18+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Expira totes les versions" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Habilita les versions de fitxers" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 35cb1e5db28..7e9e39e072f 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 11:33+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,66 +71,85 @@ msgstr "Català" msgid "Security Warning" msgstr "Avís de seguretat" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "executa una tasca en carregar cada pàgina" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php està registrat en un servei web cron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "usa el servei cron del sistema" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "API de compartir" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "Activa l'API de compartir" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "Permet que les aplicacions usin l'API de compartir" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "Permet enllaços" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "Permet als usuaris comparir elements ja compartits amb ells" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "Permet als usuaris compartir amb qualsevol" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "Permet als usuaris compartir només amb usuaris del seu grup" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Registre" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Més" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Afegiu la vostra aplicació" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index cac58a2122d..a75fe502f68 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 10:32+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Vypršení všech verzí" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Povolit verzování souborů" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index aa8bbf08b2d..394d3ebe64b 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -74,66 +74,85 @@ msgstr "Česky" msgid "Security Warning" msgstr "Bezpečnostní upozornění" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "spustit jednu úlohu s každou nataženou stranou" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php je registrován jako služba webcron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "použijte systémovou službu cron" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Více" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Přidat vaší aplikaci" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 2aae166d774..667b5eef551 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index d2f0b1630e5..58ca661b315 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -76,66 +76,85 @@ msgstr "Dansk" msgid "Security Warning" msgstr "Sikkerhedsadvarsel" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php er tilmeldt en webcron tjeneste" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Mere" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Tilføj din App" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 789af981fbf..70c88c71005 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 08:15+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,18 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Alle Versionen löschen" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Datei-Versionierung aktivieren" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index c2a625b076a..b43e2799fd9 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 08:07+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -117,12 +117,12 @@ msgstr "Vor Jahren" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s ist verfügbar. Weitere Informationen" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "aktuell" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "Die Update-Überprüfung ist ausgeschaltet" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index df25c0b715f..a0b92971b1c 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 07:39+0000\n" -"Last-Translator: JamFX \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -78,66 +78,85 @@ msgstr "Deutsch" msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "Führe eine Aufgabe pro geladener Seite aus." -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php ist beim Webcron-Service registriert" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "Nutze System-Cron-Service" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "Teilungs-API" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "Teilungs-API aktivieren" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "Erlaubt Nutzern die Teilungs-API zu nutzen" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "Erlaube Nutzern Dateien mithilfe von Links mit der Öffentlichkeit zu teilen" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "Erneutes Teilen erlauben" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "Erlaube Nutzern mit jedem zu Teilen" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "Erlaube Nutzern nur das Teilen in ihrer Gruppe" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Mehr" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Fügen Sie Ihre App hinzu" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index 134edc89db3..df855bfec12 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 18:26+0000\n" -"Last-Translator: Nisok Kosin \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Λήξη όλων των εκδόσεων" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Ενεργοποίηση παρακολούθησης εκδόσεων αρχείων" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 9ecb275bd71..4953e4d3558 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -76,66 +76,85 @@ msgstr "__όνομα_γλώσσας__" msgid "Security Warning" msgstr "Προειδοποίηση Ασφαλείας" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "Εκτέλεση μίας εργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "Το cron.php έχει καταχωρηθεί σε μια webcron υπηρεσία" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "Χρήση της υπηρεσίας cron του συστήματος" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Αρχείο καταγραφής" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Περισσότερο" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Πρόσθεσε τη δικιά σου εφαρμογή " diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index 23851036eaa..d9e4f78ec13 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 20:20+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Eksvalidigi ĉiujn eldonojn" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Kapabligi dosiereldonkontrolon" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 776ade3f9e0..745ce72a47b 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -71,66 +71,85 @@ msgstr "Esperanto" msgid "Security Warning" msgstr "Sekureca averto" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "lanĉi unu taskon po ĉiu paĝo ŝargita" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php estas registrita kiel webcron-servilo" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "uzi la cron-servon de la sistemo" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Pli" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Aldonu vian aplikaĵon" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 544b3a53b04..0f7858a3de1 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-27 05:54+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,10 +19,18 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Expirar todas las versiones" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Habilitar versionamiento de archivos" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 128b7d82b4e..a55e35b1248 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 22:51+0000\n" -"Last-Translator: Rubén Trujillo \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -78,66 +78,85 @@ msgstr "Castellano" msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "ejecutar una tarea con cada página cargada" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php se registra en un servicio webcron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "usar servicio cron del sistema" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "API de compartición" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "Activar API de compartición" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la API de compartición" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos públicamente con enlaces" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "Permitir re-compartir" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir elementos compartidos con ellos de nuevo" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir con usuarios en sus grupos" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Registro" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Más" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Añade tu aplicación" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index fd569f5b70b..afd1bc89da2 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 06:33+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Kõikide versioonide aegumine" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Luba failide versioonihaldus" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index e0a595aa1a7..259a824537a 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -71,66 +71,85 @@ msgstr "Eesti" msgid "Security Warning" msgstr "Turvahoiatus" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Ajastatud töö" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "käivita iga laetud lehe juures üks ülesanne" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php on webcron teenuses registreeritud" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "kasuta süsteemide cron teenuseid" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Logi" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Veel" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Lisa oma rakendus" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 3279db24a33..357b26164df 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-27 08:55+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Iraungi bertsio guztiak" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Gaitu fitxategien bertsioak" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index bf2a28693e8..f069773c1d7 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -72,66 +72,85 @@ msgstr "Euskera" msgid "Security Warning" msgstr "Segurtasun abisua" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "exekutatu zeregina orri karga bakoitzean" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php webcron zerbitzu batean erregistratuta dago" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "erabili sistemaren cron zerbitzua" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Gehiago" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Gehitu zure aplikazioa" diff --git a/l10n/eu_ES/files_versions.po b/l10n/eu_ES/files_versions.po index e27dd7812a5..cf5651aa222 100644 --- a/l10n/eu_ES/files_versions.po +++ b/l10n/eu_ES/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 1b7b2386fa9..f3e0319075d 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -69,66 +69,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 10bdb927924..012dceedd11 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 20:14+0000\n" -"Last-Translator: Mohammad Dashtizadeh \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "انقضای تمامی نسخه‌ها" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "فعال‌کردن پرونده‌های نسخه‌بندی" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 639ac0d5399..d585c8edf8a 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -71,66 +71,85 @@ msgstr "__language_name__" msgid "Security Warning" msgstr "اخطار امنیتی" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "بیشتر" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "برنامه خود را بیافزایید" diff --git a/l10n/fi/files_versions.po b/l10n/fi/files_versions.po index 89bfb8144e6..cd80c0a4869 100644 --- a/l10n/fi/files_versions.po +++ b/l10n/fi/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/fi/settings.po b/l10n/fi/settings.po index 6b51b7912ac..47ea71f72ad 100644 --- a/l10n/fi/settings.po +++ b/l10n/fi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -69,66 +69,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 1faa1deb756..d9cca99c90c 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 10:00+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -110,7 +110,7 @@ msgstr "Lähetys peruttu." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index c4bdbdc5821..f5badf4ae77 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-17 00:44+0200\n" -"PO-Revision-Date: 2012-08-16 10:59+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Vanhenna kaikki versiot" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Käytä tiedostojen versiointia" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 4306f983386..961500dae1e 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 10:01+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,12 +115,12 @@ msgstr "vuotta sitten" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s on saatavilla. Lue lisätietoja" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "ajan tasalla" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "päivitysten tarkistus on pois käytöstä" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 5423bc6e94b..98c69430bb8 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -71,66 +71,85 @@ msgstr "_kielen_nimi_" msgid "Security Warning" msgstr "Turvallisuusvaroitus" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "käytä järjestelmän cron-palvelua" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Loki" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Lisää" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Lisää ohjelmasi" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index 74b1426e8c5..0a1701812e7 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 16:49+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Supprimer les versions intermédiaires" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Activer le versionnage" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 2cde4d61037..542a7ea0b02 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 18:08+0000\n" -"Last-Translator: Florentin Le Moal \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,66 +79,85 @@ msgstr "Français" msgid "Security Warning" msgstr "Alertes de sécurité" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "exécuter une tâche pour chaque page chargée" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php est enregistré comme un service webcron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "utiliser le service cron du système " -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "API de partage" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "Autoriser les utilisateurs à partager du contenu public avec des liens" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "Autoriser le re-partage" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "Autoriser les utilisateurs à partager des éléments déjà partagés entre eux" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à ne partager qu'avec les utilisateurs dans leurs groupes" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Journaux" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Plus" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Ajoutez votre application" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index 7c68c81752b..035f8080242 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index cd8e1f47a9b..b66625e6ad0 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -71,66 +71,85 @@ msgstr "Galego" msgid "Security Warning" msgstr "Aviso de seguridade" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "executar unha tarefa con cada páxina cargada" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php está rexistrada como un servizo webcron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "utilice o servizo cron do sistema" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Conectar" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Máis" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Engade o teu aplicativo" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index 824d188bfd6..bab655f32c2 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index faaab3bd668..93491b67a78 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -72,66 +72,85 @@ msgstr "עברית" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "יומן" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "עוד" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "הוספת היישום שלך" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index f35accb51d3..c1e27c1c31d 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 967800015d6..6868b2aab15 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -69,66 +69,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index f49ed486081..46ae1068273 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 5a912d160e5..88b5f981c65 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -72,66 +72,85 @@ msgstr "__ime_jezika__" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php je registriran kod webcron servisa" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "koristi sistemski cron servis" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "više" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Dodajte vašu aplikaciju" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index c7ef6a41ba6..8110815df5c 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 3c7c74c9779..07e242e85e8 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -71,66 +71,85 @@ msgstr "__language_name__" msgid "Security Warning" msgstr "Biztonsági figyelmeztetés" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Napló" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Tovább" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "App hozzáadása" diff --git a/l10n/hy/files_versions.po b/l10n/hy/files_versions.po index 756f8887dd8..7ac5f7649e7 100644 --- a/l10n/hy/files_versions.po +++ b/l10n/hy/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 2ec80355b8f..7f4518b1f1c 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -69,66 +69,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index d98c59df09f..c874ecb7e46 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f280838090d..56b7b320705 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -71,66 +71,85 @@ msgstr "Interlingua" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Registro" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Plus" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Adder tu application" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index 2014a3f2f1b..b28e40950f1 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 0f56ddfbc09..48dcb7d7197 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -72,66 +72,85 @@ msgstr "__language_name__" msgid "Security Warning" msgstr "Peringatan Keamanan" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Lebih" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Tambahkan App anda" diff --git a/l10n/id_ID/files_versions.po b/l10n/id_ID/files_versions.po index f8b53c2af4e..027df71e5ea 100644 --- a/l10n/id_ID/files_versions.po +++ b/l10n/id_ID/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: id_ID\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po index f396f6be327..98ce6547b56 100644 --- a/l10n/id_ID/settings.po +++ b/l10n/id_ID/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -69,66 +69,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 54f176fb2e3..586c50a741d 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 12:12+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Scadenza di tutte le versioni" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Abilita controllo di versione" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index c4f2d4bd3b9..c8853c8257d 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 08:39+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,12 +115,12 @@ msgstr "anni fa" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s è disponibile. Ottieni ulteriori informazioni" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "aggiornato" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "il controllo degli aggiornamenti è disabilitato" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 0847f13efbb..34568001b5d 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 10:32+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,66 +76,85 @@ msgstr "Italiano" msgid "Security Warning" msgstr "Avviso di sicurezza" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "esegui un'attività con ogni pagina caricata" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php è registrato a un servizio webcron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "usa il servizio cron di sistema" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "API di condivisione" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere elementi al pubblico con collegamenti" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "Consenti agli utenti di condividere elementi già condivisi" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere con gli utenti del proprio gruppo" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Registro" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Altro" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Aggiungi la tua applicazione" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 893e07db20b..bed89934fbc 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 02:41+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "すべてのバージョンを削除する" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "ファイルのバージョン管理を有効にする" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 2964354ae9c..90fcca014b1 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 08:06+0000\n" -"Last-Translator: ttyn \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,66 +71,85 @@ msgstr "Japanese (日本語)" msgid "Security Warning" msgstr "セキュリティ警告" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "cron(自動定期実行)" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "ページを開く毎にタスクを1つ実行" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.phpをwebcronサービスに登録しました" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "システムのcronサービスを使用" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "Share API" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "Share APIを有効" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "Share APIの使用をアプリケーションに許可" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "リンクを許可" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "ユーザーがリンクによる公開でアイテムを共有することが出来るようにする" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "再共有を許可" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "ユーザーが共有されているアイテムをさらに共有することが出来るようにする" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "ユーザーが誰にでも共有出来るようにする" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "ユーザーがグループの人にしか共有出来ないようにする" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "ログ" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "もっと" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "アプリを追加" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 7646c3ad8eb..bf42a0a8c89 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 66e8cb31bfa..a07aecc3b96 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -71,66 +71,85 @@ msgstr "한국어" msgid "Security Warning" msgstr "보안 경고" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "크론" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "각 페이지가 로드 된 하나의 작업을 실행" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php는 webcron 서비스에 등록이 되어 있습니다." -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "cron 시스템 서비스를 사용" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "로그" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "더" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "앱 추가" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index 1ecdf054fe4..b2a52fe3680 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 05eb7eea105..46b0f23beb3 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -70,66 +70,85 @@ msgstr "__language_name__" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Méi" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Setz deng App bei" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index 78d03bc0515..02e8567562e 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-22 12:34+0000\n" -"Last-Translator: Dr. ROX \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Panaikinti visų versijų galiojimą" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Įjungti failų versijų vedimą" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 89933ccb883..7f3126ba761 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -70,66 +70,85 @@ msgstr "Kalba" msgid "Security Warning" msgstr "Saugumo įspėjimas" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "naudoti sistemos cron servisą" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Daugiau" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Pridėti programėlę" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index 5802b0782b6..11755dfbc98 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index b518362de95..e9a03d16bee 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -70,66 +70,85 @@ msgstr "__valodas_nosaukums__" msgid "Security Warning" msgstr "Brīdinājums par drošību" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Vairāk" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Pievieno savu aplikāciju" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index cafc33279cf..a19a0758d7e 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 8d491633f3b..346d808cac7 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -71,66 +71,85 @@ msgstr "__language_name__" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Записник" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Повеќе" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Додадете ја Вашата апликација" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index 3e40393f2ae..d8056fb58ec 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index f88b49ab738..47b3ac00c24 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -73,66 +73,85 @@ msgstr "_nama_bahasa_" msgid "Security Warning" msgstr "Amaran keselamatan" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Lanjutan" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Tambah apps anda" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index 9b44f482736..536b4d262ea 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 17:25+0000\n" -"Last-Translator: Arvid Nornes \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Slå på versjonering" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 74b34751ae2..80cb20c73de 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -75,66 +75,85 @@ msgstr "__language_name__" msgid "Security Warning" msgstr "Sikkerhetsadvarsel" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "utfør en oppgave med hver side som blir lastet" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php er registrert som en webcron tjeneste" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "benytt systemets cron tjeneste" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Logg" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Mer" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Legg til din App" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 98f93a33de1..48b5c0641ae 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 08:29+0000\n" +"Last-Translator: Richard Bos \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Passeerwoord" #: templates/authenticate.php:6 msgid "Submit" @@ -28,12 +28,12 @@ msgstr "" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Downloaden" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Geen voorbeeldweergave beschikbaar voor" #: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "Webdiensten in eigen beheer" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index cd671208493..257098e81fb 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 16:58+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Alle versies laten verlopen" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Activeer file versioning" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 7abf382c2c9..80f22f6088b 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -76,66 +76,85 @@ msgstr "Nederlands" msgid "Security Warning" msgstr "Veiligheidswaarschuwing" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "Voer 1 taak uit bij elke geladen pagina" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php is geregistreerd bij een webcron service" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "gebruik de systeem cron service" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Deel API" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Zet de Deel API aan" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Sta apps toe om de Deel API te gebruiken" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Sta links toe" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Sta gebruikers toe om items via links publiekelijk te maken" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Sta verder delen toe" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Sta gebruikers toe om items nogmaals te delen" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Sta gebruikers toe om met iedereen te delen" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Sta gebruikers toe om alleen met gebruikers in hun groepen te delen" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Meer" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Voeg je App toe" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index 3ae26d5f131..d440d7524f0 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 6eeb5919695..f4c70907993 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -71,66 +71,85 @@ msgstr "Nynorsk" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index bdacd74f04a..9db71f8d1a4 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 12:35+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Wygasają wszystkie wersje" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Włącz wersjonowanie plików" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 887143014b2..8afec9db2af 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -76,66 +76,85 @@ msgstr "Polski" msgid "Security Warning" msgstr "Ostrzeżenia bezpieczeństwa" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "wykonanie jednego zadania z każdej załadowanej strony" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php jest zarejestrowany w usłudze webcron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "korzystaj z usługi systemowej cron" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Więcej" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Dodaj aplikacje" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po index 1e254812458..5f9feef04fd 100644 --- a/l10n/pl_PL/files_versions.po +++ b/l10n/pl_PL/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index d87991490d3..6d84ed791ad 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -69,66 +69,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index 5c59fa16330..14e3834e40f 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 14:35+0000\n" -"Last-Translator: tbsoares \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Expirar todas as versões" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Habilitar versionamento de arquivos" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index e3bbe54b78e..d5dbac47b91 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -75,66 +75,85 @@ msgstr "Português" msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 +msgid "Cron" +msgstr "" + +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "executar uma tarefa com cada página em aberto" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php esta registrado no serviço de webcron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Mais" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Adicione seu Aplicativo" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 5d6fb5fe067..56a1489aa85 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 7077d64cc48..87d7e766477 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -72,66 +72,85 @@ msgstr "__language_name__" msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "Executar uma tarefa com cada página carregada" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php está registado num serviço webcron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "usar o serviço cron do sistema" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Mais" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Adicione a sua aplicação" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index bb1b9526f0f..936d92da9a1 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index e6e410f73d0..a203a476199 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -74,66 +74,85 @@ msgstr "_language_name_" msgid "Security Warning" msgstr "Avertisment de securitate" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "executâ o sarcină cu fiecare pagină încărcată" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php e înregistrat la un serviciu de webcron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "utilizează serviciul de cron al sistemului" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Mai mult" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Adaugă aplicația ta" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index 466c1629db0..fc36a2ead44 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 07:24+0000\n" -"Last-Translator: Denis \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Просрочить все версии" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Включить ведение версий файлов" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 42e7017adcb..e72a9f71d86 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -77,66 +77,85 @@ msgstr "Русский " msgid "Security Warning" msgstr "Предупреждение безопасности" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Задание" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "Запускать задание при загрузке каждой страницы" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php зарегистрирован в webcron сервисе" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "использовать системные задания" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Журнал" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Ещё" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Добавить приложение" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po index ca15399f318..f7ff8068c72 100644 --- a/l10n/ru_RU/files_versions.po +++ b/l10n/ru_RU/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 5b3ed47251d..92c57bb805c 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -69,66 +69,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 0b50ad267a9..0f50826d2b2 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index cdc21b8fc62..c16ce73069e 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -72,66 +72,85 @@ msgstr "Slovensky" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Záznam" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Viac" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Pridať vašu aplikáciu" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 5e6bbbb4859..a018b4cf423 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 00:25+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Zastaraj vse različice" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Omogoči sledenje različicam datotek" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 8b9d7de0fa1..c94a108ee3d 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 09:04+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,12 +115,12 @@ msgstr "let nazaj" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s je na voljo. Več informacij." #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "ažuren" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "preverjanje za posodobitve je onemogočeno" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 6cb24d59f88..299979763bc 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 14:24+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,66 +72,85 @@ msgstr "__ime_jezika__" msgid "Security Warning" msgstr "Varnostno opozorilo" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Periodično opravilo" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "izvedi eno nalogo z vsako naloženo stranjo" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php je vpisan na storitev webcron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "uporabi sistemski servis za periodična opravila" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "API souporabe" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "Dovoli aplikacijam uporabo API-ja souporabe" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo z javnimi povezavami" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo le znotraj njihove skupine" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Več" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Dodajte vašo aplikacijo" diff --git a/l10n/so/files_versions.po b/l10n/so/files_versions.po index 0c1f4e95a6e..ce768ee5ce5 100644 --- a/l10n/so/files_versions.po +++ b/l10n/so/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: so\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/so/settings.po b/l10n/so/settings.po index a3488b9f019..213fb1dc723 100644 --- a/l10n/so/settings.po +++ b/l10n/so/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -69,66 +69,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index e25e3766f30..b252793ef85 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index f15d091582e..a88fd07b1e3 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -70,66 +70,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index 5fae2a88e1d..23dcd430988 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 6c84ec656f0..30636c40447 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -70,66 +70,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index f33072ac6d9..53aac5ef45d 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 10:33+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "Upphör alla versioner" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "Aktivera versionshantering" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 711935d56e6..088f184b999 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 10:13+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,12 +116,12 @@ msgstr "år sedan" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s finns. Få mer information" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "uppdaterad" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "uppdateringskontroll är inaktiverad" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index b2111ddb48a..997e9e8f8e4 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 08:23+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,66 +76,85 @@ msgstr "__language_name__" msgid "Security Warning" msgstr "Säkerhetsvarning" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "utför en uppgift vid varje sidladdning" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php är registrerad på en webcron-tjänst" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "använd systemets cron-tjänst" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "Delat API" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "Tillåt delning till allmänheten via publika länkar" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "Tillåt dela vidare" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "Tillåt användare att dela vidare filer som delats med dom" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "Tillåt bara delning med användare i egna grupper" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Logg" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Mera" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Lägg till din applikation" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5ec454483f1..952661ec2cd 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index aba316e6268..89e2e6fd427 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 80c2aea915c..bcc4c1f4851 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index e9739cd6a06..e1bf8b89706 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 6cfc4adf2a9..c184445e561 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 8eb69462787..41fa04d0eb3 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,10 +17,18 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 1024b00ff3b..5daeff661a9 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 110d19e434a..a44d444bc8d 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -69,66 +69,84 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the " +"webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 7b87fc39d38..56b6b0067ba 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 4bab33ad9f7..178ff67a954 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 13:11+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,18 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "หมดอายุทุกรุ่น" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "เปิดใช้งานคุณสมบัติการแยกสถานะรุ่นหรือเวอร์ชั่นของไฟล์" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index fa0161c36cf..fe1fc15e9ea 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 17:08+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,66 +72,85 @@ msgstr "ภาษาไทย" msgid "Security Warning" msgstr "คำเตือนเกี่ยวกับความปลอดภัย" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "cron.php ได้ถูกลงทะเบียนที่บริการ webcron" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "ใช้บริการ cron จากระบบ" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "เพิ่มเติม" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "เพิ่มแอปของคุณ" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 5b163028452..be45079a55c 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -17,10 +17,18 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 708860c4e40..3c94cad642e 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -72,66 +72,85 @@ msgstr "__dil_adı__" msgid "Security Warning" msgstr "Güvenlik Uyarisi" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Günlük" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "Devamı" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Uygulamanı Ekle" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index fdbf46f9cba..f2a35bd6749 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 2520334ef98..39b06fff478 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -70,66 +70,85 @@ msgstr "" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index 2f97cd4aa3d..54f38f28122 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index a83d1c1185a..c36c1286e27 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -5,12 +5,13 @@ # Translators: # Son Nguyen , 2012. # Sơn Nguyễn , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,7 +22,7 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Không thể tải danh sách ứng dụng từ App Store" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -41,7 +42,7 @@ msgstr "Yêu cầu không hợp lệ" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Lỗi xác thực" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -49,7 +50,7 @@ msgstr "Ngôn ngữ đã được thay đổi" #: js/apps.js:18 msgid "Error" -msgstr "" +msgstr "Lỗi" #: js/apps.js:39 js/apps.js:73 msgid "Disable" @@ -69,68 +70,87 @@ msgstr "__Ngôn ngữ___" #: templates/admin.php:14 msgid "Security Warning" +msgstr "Cảnh bảo bảo mật" + +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Cron" msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "Log" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "nhiều hơn" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "Thêm ứng dụng của bạn" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 4eaa105db8a..89fa8dd1ef2 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index d0cd8450fc1..bba93d3dff4 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -70,66 +70,85 @@ msgstr "Chinese" msgid "Security Warning" msgstr "安全警告" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "定时" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "日志" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "更多" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "添加你的应用程序" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index 4e84f1f4d82..31e3aedf8af 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index d65dee34efe..f5ae4171e63 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -73,66 +73,85 @@ msgstr "简体中文" msgid "Security Warning" msgstr "安全警告" -#: templates/admin.php:29 +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 msgid "Cron" msgstr "计划任务" -#: templates/admin.php:31 +#: templates/admin.php:33 msgid "execute one task with each page loaded" msgstr "为每个装入的页面执行任务" -#: templates/admin.php:33 +#: templates/admin.php:35 msgid "cron.php is registered at a webcron service" msgstr "crop.php 已" -#: templates/admin.php:35 +#: templates/admin.php:37 msgid "use systems cron service" msgstr "实现系统 cron 服务" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "日志" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "更多" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "添加应用" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index 2214a0ec19f..731c9d14f5f 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,18 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0\n" -#: js/settings-personal.js:31 +#: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" msgstr "" +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + #: templates/settings.php:3 msgid "Enable Files Versioning" msgstr "" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 19686a64f5c..e4c0e92c2d2 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"PO-Revision-Date: 2012-09-01 11:35+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" @@ -71,66 +71,85 @@ msgstr "__語言_名稱__" msgid "Security Warning" msgstr "" -#: templates/admin.php:29 -msgid "Cron" +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." msgstr "" #: templates/admin.php:31 -msgid "execute one task with each page loaded" +msgid "Cron" msgstr "" #: templates/admin.php:33 -msgid "cron.php is registered at a webcron service" +msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:37 msgid "use systems cron service" msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:41 msgid "Share API" msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Enable Share API" msgstr "" -#: templates/admin.php:45 +#: templates/admin.php:47 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:49 +#: templates/admin.php:51 msgid "Allow links" msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:52 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:56 msgid "Allow resharing" msgstr "" -#: templates/admin.php:55 +#: templates/admin.php:57 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:62 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:69 msgid "Log" msgstr "紀錄" -#: templates/admin.php:95 +#: templates/admin.php:97 msgid "More" msgstr "更多" +#: templates/admin.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + #: templates/apps.php:10 msgid "Add your App" msgstr "添加你的 App" diff --git a/lib/l10n/de.php b/lib/l10n/de.php index e77ec97df75..4a567003de2 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -21,5 +21,8 @@ "last month" => "Letzten Monat", "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren" +"years ago" => "Vor Jahren", +"%s is available. Get more information" => "%s ist verfügbar. Weitere Informationen", +"up to date" => "aktuell", +"updates check is disabled" => "Die Update-Überprüfung ist ausgeschaltet" ); diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index dda2c760373..6f0ebcd16e6 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -21,5 +21,8 @@ "last month" => "viime kuussa", "months ago" => "kuukautta sitten", "last year" => "viime vuonna", -"years ago" => "vuotta sitten" +"years ago" => "vuotta sitten", +"%s is available. Get more information" => "%s on saatavilla. Lue lisätietoja", +"up to date" => "ajan tasalla", +"updates check is disabled" => "päivitysten tarkistus on pois käytöstä" ); diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 2c88818dc6c..c4c7d90610b 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -21,5 +21,8 @@ "last month" => "il mese scorso", "months ago" => "mesi fa", "last year" => "l'anno scorso", -"years ago" => "anni fa" +"years ago" => "anni fa", +"%s is available. Get more information" => "%s è disponibile. Ottieni ulteriori informazioni", +"up to date" => "aggiornato", +"updates check is disabled" => "il controllo degli aggiornamenti è disabilitato" ); diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index fad16417253..273773f2f7b 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -21,5 +21,8 @@ "last month" => "prejšnji mesec", "months ago" => "mesecev nazaj", "last year" => "lani", -"years ago" => "let nazaj" +"years ago" => "let nazaj", +"%s is available. Get more information" => "%s je na voljo. Več informacij.", +"up to date" => "ažuren", +"updates check is disabled" => "preverjanje za posodobitve je onemogočeno" ); diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index cff3a63c442..3d377133f22 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -21,5 +21,8 @@ "last month" => "förra månaden", "months ago" => "månader sedan", "last year" => "förra året", -"years ago" => "år sedan" +"years ago" => "år sedan", +"%s is available. Get more information" => "%s finns. Få mer information", +"up to date" => "uppdaterad", +"updates check is disabled" => "uppdateringskontroll är inaktiverad" ); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 6048cbd63b0..f480acba66b 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "Voer 1 taak uit bij elke geladen pagina", "cron.php is registered at a webcron service" => "cron.php is geregistreerd bij een webcron service", "use systems cron service" => "gebruik de systeem cron service", +"Share API" => "Deel API", +"Enable Share API" => "Zet de Deel API aan", +"Allow apps to use the Share API" => "Sta apps toe om de Deel API te gebruiken", +"Allow links" => "Sta links toe", +"Allow users to share items to the public with links" => "Sta gebruikers toe om items via links publiekelijk te maken", +"Allow resharing" => "Sta verder delen toe", +"Allow users to share items shared with them again" => "Sta gebruikers toe om items nogmaals te delen", +"Allow users to share with anyone" => "Sta gebruikers toe om met iedereen te delen", +"Allow users to only share with users in their groups" => "Sta gebruikers toe om alleen met gebruikers in hun groepen te delen", "Log" => "Log", "More" => "Meer", "Add your App" => "Voeg je App toe", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 41e4441b1cb..9e0709239fb 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -1,13 +1,17 @@ "Không thể tải danh sách ứng dụng từ App Store", "Email saved" => "Lưu email", "Invalid email" => "Email không hợp lệ", "OpenID Changed" => "Đổi OpenID", "Invalid request" => "Yêu cầu không hợp lệ", +"Authentication error" => "Lỗi xác thực", "Language changed" => "Ngôn ngữ đã được thay đổi", +"Error" => "Lỗi", "Disable" => "Vô hiệu", "Enable" => "Cho phép", "Saving..." => "Đang tiến hành lưu ...", "__language_name__" => "__Ngôn ngữ___", +"Security Warning" => "Cảnh bảo bảo mật", "Log" => "Log", "More" => "nhiều hơn", "Add your App" => "Thêm ứng dụng của bạn", -- cgit v1.2.3 From a7255181ad8218543c34c9637477b31210768699 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 1 Sep 2012 15:36:07 +0200 Subject: fix autoloader throwing errors for non-oc classes --- lib/base.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index fb83f6ea0a4..bfefa1425ab 100644 --- a/lib/base.php +++ b/lib/base.php @@ -91,6 +91,8 @@ class OC{ } elseif(strpos($className,'Test_')===0){ $path = 'tests/lib/'.strtolower(str_replace('_','/',substr($className,5)) . '.php'); + }else{ + return false; } if($fullPath = stream_resolve_include_path($path)){ -- cgit v1.2.3 From 6d48f3fab8c19b2f2b0986c294d45449e47025ea Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 1 Sep 2012 16:49:29 +0200 Subject: we still need this for pgsql --- lib/db.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/db.php b/lib/db.php index de72dee2554..884bbb5e905 100644 --- a/lib/db.php +++ b/lib/db.php @@ -405,11 +405,12 @@ class OC_DB { * http://www.postgresql.org/docs/8.1/static/functions-datetime.html * http://www.sqlite.org/lang_createtable.html * http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions037.htm + */ if( $CONFIG_DBTYPE == 'pgsql' ){ //mysql support it too but sqlite doesn't $content = str_replace( '0000-00-00 00:00:00', 'CURRENT_TIMESTAMP', $content ); } - */ + file_put_contents( $file2, $content ); // Try to create tables -- cgit v1.2.3 From 828ca2ba3624d4fb39970a84733dcbb6ab836336 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 1 Sep 2012 20:37:35 +0200 Subject: translate UNIX_TIMESTAMP() into sqlite and pgsql equivilents --- lib/db.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib') diff --git a/lib/db.php b/lib/db.php index 884bbb5e905..1979b82f8cc 100644 --- a/lib/db.php +++ b/lib/db.php @@ -535,8 +535,12 @@ class OC_DB { $query = str_replace( '`', '"', $query ); $query = str_replace( 'NOW()', 'datetime(\'now\')', $query ); $query = str_replace( 'now()', 'datetime(\'now\')', $query ); + $query = str_replace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $query ); + $query = str_replace( 'unix_timestamp()', 'strftime(\'%s\',\'now\')', $query ); }elseif( $type == 'pgsql' ){ $query = str_replace( '`', '"', $query ); + $query = str_replace( 'UNIX_TIMESTAMP()', 'cast(extract(epoch from current_timestamp) as integer)', $query ); + $query = str_replace( 'unix_timestamp()', 'cast(extract(epoch from current_timestamp) as integer)', $query ); }elseif( $type == 'oci' ){ $query = str_replace( '`', '"', $query ); $query = str_replace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); -- cgit v1.2.3 From 2c1f732880ebb43247bdaec73329777b99bcebf0 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Sat, 1 Sep 2012 20:49:50 +0200 Subject: use null instead of -1 on all getUser() --- lib/public/user.php | 2 +- lib/user/backend.php | 2 +- lib/user/dummy.php | 2 +- lib/user/interface.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/public/user.php b/lib/public/user.php index 6228268d75b..327e2a77355 100644 --- a/lib/public/user.php +++ b/lib/public/user.php @@ -51,7 +51,7 @@ class User { * * Get a list of all users. */ - public static function getUsers($search = '', $limit = -1, $offset = 0) { + public static function getUsers($search = '', $limit = null, $offset = null) { return \OC_USER::getUsers(); } diff --git a/lib/user/backend.php b/lib/user/backend.php index 36e4bd9f761..0ef7ccd0468 100644 --- a/lib/user/backend.php +++ b/lib/user/backend.php @@ -99,7 +99,7 @@ abstract class OC_User_Backend implements OC_User_Interface { * * Get a list of all users. */ - public function getUsers($search = '', $limit = -1, $offset = 0) { + public function getUsers($search = '', $limit = null, $offset = null) { return array(); } diff --git a/lib/user/dummy.php b/lib/user/dummy.php index da3edfb2df4..15a67b7e1ed 100644 --- a/lib/user/dummy.php +++ b/lib/user/dummy.php @@ -100,7 +100,7 @@ class OC_User_Dummy extends OC_User_Backend { * * Get a list of all users. */ - public function getUsers($search = '', $limit = -1, $offset = 0) { + public function getUsers($search = '', $limit = null, $offset = null) { return array_keys($this->users); } diff --git a/lib/user/interface.php b/lib/user/interface.php index a4903898fb1..3d9f4691f24 100644 --- a/lib/user/interface.php +++ b/lib/user/interface.php @@ -48,7 +48,7 @@ interface OC_User_Interface { * * Get a list of all users. */ - public function getUsers($search = '', $limit = -1, $offset = 0); + public function getUsers($search = '', $limit = null, $offset = null); /** * @brief check if a user exists -- cgit v1.2.3 From 2508f64efee5204fdb38eda51435d0bad7da76f2 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 1 Sep 2012 20:51:48 +0200 Subject: set debug mode if an xdebug session is active --- lib/base.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index bfefa1425ab..1875edb5000 100644 --- a/lib/base.php +++ b/lib/base.php @@ -315,6 +315,13 @@ class OC{ self::initPaths(); + // set debug mode if an xdebug session is active + if (!defined('DEBUG') || !DEBUG){ + if(isset($_COOKIE['XDEBUG_SESSION'])){ + define('DEBUG',true); + } + } + // register the stream wrappers require_once('streamwrappers.php'); stream_wrapper_register("fakedir", "OC_FakeDirStream"); -- cgit v1.2.3 From 2bb7cb9f64b0244290ce8df745fdb040823dbd62 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 2 Sep 2012 02:02:53 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/tr.php | 6 ++++++ apps/files_encryption/l10n/zh_TW.php | 6 ++++++ apps/files_versions/l10n/de.php | 1 + apps/files_versions/l10n/es.php | 2 ++ apps/files_versions/l10n/fr.php | 2 ++ apps/files_versions/l10n/it.php | 2 ++ apps/files_versions/l10n/nl.php | 2 ++ core/l10n/nl.php | 1 + l10n/de/files_versions.po | 7 ++++--- l10n/de/settings.po | 7 ++++--- l10n/es/files_versions.po | 11 ++++++----- l10n/es/lib.po | 13 +++++++------ l10n/es/settings.po | 8 ++++---- l10n/fr/files_versions.po | 10 +++++----- l10n/fr/lib.po | 12 ++++++------ l10n/fr/settings.po | 10 +++++----- l10n/it/files_versions.po | 10 +++++----- l10n/it/settings.po | 10 +++++----- l10n/nl/core.po | 9 +++++---- l10n/nl/files_versions.po | 10 +++++----- l10n/nl/lib.po | 12 ++++++------ l10n/sv/settings.po | 10 +++++----- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/tr/files.po | 19 ++++++++++--------- l10n/zh_TW/files_encryption.po | 15 ++++++++------- l10n/zh_TW/lib.po | 13 +++++++------ l10n/zh_TW/settings.po | 27 ++++++++++++++------------- lib/l10n/es.php | 5 ++++- lib/l10n/fr.php | 5 ++++- lib/l10n/nl.php | 5 ++++- lib/l10n/zh_TW.php | 5 ++++- settings/l10n/de.php | 1 + settings/l10n/es.php | 1 + settings/l10n/fr.php | 2 ++ settings/l10n/it.php | 2 ++ settings/l10n/sv.php | 2 ++ settings/l10n/zh_TW.php | 10 ++++++++++ 45 files changed, 176 insertions(+), 115 deletions(-) create mode 100644 apps/files_encryption/l10n/zh_TW.php (limited to 'lib') diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 224322b24e0..630e3563adf 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -8,6 +8,11 @@ "Failed to write to disk" => "Diske yazılamadı", "Files" => "Dosyalar", "Delete" => "Sil", +"already exists" => "zaten mevcut", +"replace" => "değiştir", +"cancel" => "iptal", +"replaced" => "değiştirildi", +"with" => "ile", "undo" => "geri al", "deleted" => "silindi", "generating ZIP-file, it may take some time." => "ZIP dosyası oluşturuluyor, biraz sürebilir.", @@ -15,6 +20,7 @@ "Upload Error" => "Yükleme hatası", "Pending" => "Bekliyor", "Upload cancelled." => "Yükleme iptal edildi.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", "Invalid name, '/' is not allowed." => "Geçersiz isim, '/' işaretine izin verilmiyor.", "Size" => "Boyut", "Modified" => "Değiştirilme", diff --git a/apps/files_encryption/l10n/zh_TW.php b/apps/files_encryption/l10n/zh_TW.php new file mode 100644 index 00000000000..4c62130cf4f --- /dev/null +++ b/apps/files_encryption/l10n/zh_TW.php @@ -0,0 +1,6 @@ + "加密", +"Exclude the following file types from encryption" => "下列的檔案類型不加密", +"None" => "無", +"Enable Encryption" => "啟用加密" +); diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php index 3d1a0a43f5e..b1ba62a801f 100644 --- a/apps/files_versions/l10n/de.php +++ b/apps/files_versions/l10n/de.php @@ -1,4 +1,5 @@ "Alle Versionen löschen", +"Versions" => "Versionen", "Enable Files Versioning" => "Datei-Versionierung aktivieren" ); diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index be416f5bfba..83d7ed0da2c 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -1,4 +1,6 @@ "Expirar todas las versiones", +"Versions" => "Versiones", +"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos", "Enable Files Versioning" => "Habilitar versionamiento de archivos" ); diff --git a/apps/files_versions/l10n/fr.php b/apps/files_versions/l10n/fr.php index 02209f543b1..965fa02de98 100644 --- a/apps/files_versions/l10n/fr.php +++ b/apps/files_versions/l10n/fr.php @@ -1,4 +1,6 @@ "Supprimer les versions intermédiaires", +"Versions" => "Versions", +"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date).", "Enable Files Versioning" => "Activer le versionnage" ); diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php index 9711ce18aa8..b7b0b9627b1 100644 --- a/apps/files_versions/l10n/it.php +++ b/apps/files_versions/l10n/it.php @@ -1,4 +1,6 @@ "Scadenza di tutte le versioni", +"Versions" => "Versioni", +"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file", "Enable Files Versioning" => "Abilita controllo di versione" ); diff --git a/apps/files_versions/l10n/nl.php b/apps/files_versions/l10n/nl.php index 87e72a36202..da31603ff54 100644 --- a/apps/files_versions/l10n/nl.php +++ b/apps/files_versions/l10n/nl.php @@ -1,4 +1,6 @@ "Alle versies laten verlopen", +"Versions" => "Versies", +"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen", "Enable Files Versioning" => "Activeer file versioning" ); diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 874a710a759..2c020623d6c 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -50,6 +50,7 @@ "Database user" => "Gebruiker databank", "Database password" => "Wachtwoord databank", "Database name" => "Naam databank", +"Database tablespace" => "Database tablespace", "Database host" => "Database server", "Finish setup" => "Installatie afronden", "web services under your control" => "webdiensten die je beheerst", diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 70c88c71005..773e4b2c44d 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# I Robot , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 11:47+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -24,7 +25,7 @@ msgstr "Alle Versionen löschen" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versionen" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index a0b92971b1c..b99b4b03c5d 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -5,6 +5,7 @@ # Translators: # , 2011, 2012. # , 2012. +# I Robot , 2012. # Jan-Christoph Borchardt , 2011. # Marcel Kühlhorn , 2012. # , 2012. @@ -16,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 11:46+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -155,7 +156,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 0f7858a3de1..05f6814b37a 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -5,13 +5,14 @@ # Translators: # Javier Llorente , 2012. # , 2012. +# Rubén Trujillo , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 18:22+0000\n" +"Last-Translator: Rubén Trujillo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,11 +26,11 @@ msgstr "Expirar todas las versiones" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versiones" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 016a35e522b..a98b88c383d 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Rubén Trujillo , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 18:23+0000\n" +"Last-Translator: Rubén Trujillo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,12 +116,12 @@ msgstr "hace años" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s está disponible. Obtén más información" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "actualizado" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "comprobar actualizaciones está desactivado" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index a55e35b1248..030414a8b3b 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 18:24+0000\n" +"Last-Translator: Rubén Trujillo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -155,7 +155,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index 0a1701812e7..70771893524 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 16:41+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "Supprimer les versions intermédiaires" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versions" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date)." #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 5b9ac2ed7fa..7eaa311dfda 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 16:36+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,12 +116,12 @@ msgstr "il y a plusieurs années" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s est disponible. Obtenez plus d'informations" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "À jour" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "la vérification des mises à jour est désactivée" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 542a7ea0b02..8f41df09e83 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 16:35+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +86,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Votre répertoire de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni avec ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce répertoire ne soit plus accessible, ou bien de déplacer le répertoire de données à l'extérieur de la racine du serveur web." #: templates/admin.php:31 msgid "Cron" @@ -156,7 +156,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Développé par la communauté ownCloud, le code source est publié sous license AGPL." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 586c50a741d..9e8a8ae6bb3 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 11:42+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "Scadenza di tutte le versioni" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versioni" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Ciò eliminerà tutte le versioni esistenti dei tuoi file" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 34568001b5d..a79176c2e14 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 11:46+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,7 +83,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web." #: templates/admin.php:31 msgid "Cron" @@ -153,7 +153,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Sviluppato dalla comunità di ownCloud, il codice sorgente è licenziato nei termini della AGPL." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 171120bab74..2a40cf05712 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,13 +9,14 @@ # , 2012. # , 2011. # , 2012. +# Richard Bos , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 20:13+0000\n" +"Last-Translator: Richard Bos \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -235,7 +236,7 @@ msgstr "Naam databank" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Database tablespace" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 257098e81fb..9e4a68ec09b 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 20:09+0000\n" +"Last-Translator: Richard Bos \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "Alle versies laten verlopen" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versies" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Dit zal alle bestaande backup versies van uw bestanden verwijderen" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index d7e354e9f4f..80648c52cf0 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 20:12+0000\n" +"Last-Translator: Richard Bos \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,12 +115,12 @@ msgstr "jaar geleden" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s is beschikbaar. Verkrijg meer informatie" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "Bijgewerkt" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "Meest recente versie controle is uitgeschakeld" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 997e9e8f8e4..796ab42e63e 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 12:52+0000\n" +"Last-Translator: Daniel Sandman \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,7 +83,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Din datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern." #: templates/admin.php:31 msgid "Cron" @@ -153,7 +153,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Utvecklad av ownCloud kommunity, källkoden är licenserad under AGPL." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 952661ec2cd..ee6aa77b12d 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 89e2e6fd427..39453f66ed9 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index bcc4c1f4851..18a12f4b7d6 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index e1bf8b89706..794c132aaf4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index c184445e561..b78bed0cb85 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 41fa04d0eb3..7536c6fd395 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 5daeff661a9..580fc07f7b3 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a44d444bc8d..eca1559ddbc 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 56b6b0067ba..eb372a1f029 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 31e1b22ebfe..94595a995e7 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -4,15 +4,16 @@ # # Translators: # Aranel Surion , 2011, 2012. +# Caner Başaran , 2012. # Emre , 2012. # Necdet Yücel , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 13:44+0000\n" +"Last-Translator: Caner Başaran \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" @@ -60,23 +61,23 @@ msgstr "Sil" #: js/filelist.js:141 msgid "already exists" -msgstr "" +msgstr "zaten mevcut" #: js/filelist.js:141 msgid "replace" -msgstr "" +msgstr "değiştir" #: js/filelist.js:141 msgid "cancel" -msgstr "" +msgstr "iptal" #: js/filelist.js:195 msgid "replaced" -msgstr "" +msgstr "değiştirildi" #: js/filelist.js:195 msgid "with" -msgstr "" +msgstr "ile" #: js/filelist.js:195 js/filelist.js:246 msgid "undo" @@ -109,7 +110,7 @@ msgstr "Yükleme iptal edildi." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 86ca709cfa6..1da95b438b9 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ywang , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 14:48+0000\n" +"Last-Translator: ywang \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +20,16 @@ msgstr "" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "加密" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "下列的檔案類型不加密" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "無" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "啟用加密" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 750304e5a1b..7e0c4b47b64 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # ywang , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 13:47+0000\n" +"Last-Translator: ywang \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,12 +116,12 @@ msgstr "幾年前" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s 已經可用. 取得 更多資訊" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "最新的" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "檢查更新已停用" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index e4c0e92c2d2..bdb4435bdf0 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -5,13 +5,14 @@ # Translators: # Donahue Chuang , 2012. # , 2012. +# ywang , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 13:53+0000\n" +"Last-Translator: ywang \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,15 +22,15 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "無法從 App Store 讀取清單" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email已儲存" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "無效的email" #: ajax/openid.php:16 msgid "OpenID Changed" @@ -41,7 +42,7 @@ msgstr "無效請求" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "認證錯誤" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -49,19 +50,19 @@ msgstr "語言已變更" #: js/apps.js:18 msgid "Error" -msgstr "" +msgstr "錯誤" #: js/apps.js:39 js/apps.js:73 msgid "Disable" -msgstr "" +msgstr "停用" #: js/apps.js:39 js/apps.js:62 msgid "Enable" -msgstr "" +msgstr "啟用" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "儲存中..." #: personal.php:46 personal.php:47 msgid "__language_name__" @@ -69,7 +70,7 @@ msgstr "__語言_名稱__" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "安全性警告" #: templates/admin.php:17 msgid "" @@ -160,7 +161,7 @@ msgstr "選擇一個應用程式" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "查看應用程式頁面於 apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed" diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 174fe0720fd..6d2a310ca3b 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -21,5 +21,8 @@ "last month" => "este mes", "months ago" => "hace meses", "last year" => "este año", -"years ago" => "hace años" +"years ago" => "hace años", +"%s is available. Get more information" => "%s está disponible. Obtén más información", +"up to date" => "actualizado", +"updates check is disabled" => "comprobar actualizaciones está desactivado" ); diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index c674b79b959..c10259e6376 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -21,5 +21,8 @@ "last month" => "le mois dernier", "months ago" => "il y a plusieurs mois", "last year" => "l'année dernière", -"years ago" => "il y a plusieurs années" +"years ago" => "il y a plusieurs années", +"%s is available. Get more information" => "%s est disponible. Obtenez plus d'informations", +"up to date" => "À jour", +"updates check is disabled" => "la vérification des mises à jour est désactivée" ); diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 01bc4d3e19f..a90fc6caa6c 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -21,5 +21,8 @@ "last month" => "vorige maand", "months ago" => "maanden geleden", "last year" => "vorig jaar", -"years ago" => "jaar geleden" +"years ago" => "jaar geleden", +"%s is available. Get more information" => "%s is beschikbaar. Verkrijg meer informatie", +"up to date" => "Bijgewerkt", +"updates check is disabled" => "Meest recente versie controle is uitgeschakeld" ); diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 008c9483a00..c9a26a53b2a 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -21,5 +21,8 @@ "last month" => "上個月", "months ago" => "幾個月前", "last year" => "去年", -"years ago" => "幾年前" +"years ago" => "幾年前", +"%s is available. Get more information" => "%s 已經可用. 取得 更多資訊", +"up to date" => "最新的", +"updates check is disabled" => "檢查更新已停用" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 6d1d28fa2e8..8ca01243e5d 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -27,6 +27,7 @@ "Allow users to only share with users in their groups" => "Erlaube Nutzern nur das Teilen in ihrer Gruppe", "Log" => "Log", "More" => "Mehr", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert.", "Add your App" => "Fügen Sie Ihre App hinzu", "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index d86dc3663ad..be496cd9647 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -27,6 +27,7 @@ "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir con usuarios en sus grupos", "Log" => "Registro", "More" => "Más", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL.", "Add your App" => "Añade tu aplicación", "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 81fb9f56a2b..235c5430df1 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -12,6 +12,7 @@ "Saving..." => "Sauvegarde...", "__language_name__" => "Français", "Security Warning" => "Alertes de sécurité", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre répertoire de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni avec ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce répertoire ne soit plus accessible, ou bien de déplacer le répertoire de données à l'extérieur de la racine du serveur web.", "Cron" => "Cron", "execute one task with each page loaded" => "exécuter une tâche pour chaque page chargée", "cron.php is registered at a webcron service" => "cron.php est enregistré comme un service webcron", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "Autoriser les utilisateurs à ne partager qu'avec les utilisateurs dans leurs groupes", "Log" => "Journaux", "More" => "Plus", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Développé par la communauté ownCloud, le code source est publié sous license AGPL.", "Add your App" => "Ajoutez votre application", "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 64df0cd9d42..dc42c009993 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -12,6 +12,7 @@ "Saving..." => "Salvataggio in corso...", "__language_name__" => "Italiano", "Security Warning" => "Avviso di sicurezza", +"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." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web.", "Cron" => "Cron", "execute one task with each page loaded" => "esegui un'attività con ogni pagina caricata", "cron.php is registered at a webcron service" => "cron.php è registrato a un servizio webcron", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere con gli utenti del proprio gruppo", "Log" => "Registro", "More" => "Altro", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Sviluppato dalla comunità di ownCloud, il codice sorgente è licenziato nei termini della AGPL.", "Add your App" => "Aggiungi la tua applicazione", "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 4a1d1b2c474..74b5406f804 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -12,6 +12,7 @@ "Saving..." => "Sparar...", "__language_name__" => "__language_name__", "Security Warning" => "Säkerhetsvarning", +"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." => "Din datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern.", "Cron" => "Cron", "execute one task with each page loaded" => "utför en uppgift vid varje sidladdning", "cron.php is registered at a webcron service" => "cron.php är registrerad på en webcron-tjänst", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Log" => "Logg", "More" => "Mera", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Utvecklad av ownCloud kommunity, källkoden är licenserad under AGPL.", "Add your App" => "Lägg till din applikation", "Select an App" => "Välj en App", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 0218133f65a..f0b0de7d731 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -1,12 +1,22 @@ "無法從 App Store 讀取清單", +"Email saved" => "Email已儲存", +"Invalid email" => "無效的email", "OpenID Changed" => "OpenID 已變更", "Invalid request" => "無效請求", +"Authentication error" => "認證錯誤", "Language changed" => "語言已變更", +"Error" => "錯誤", +"Disable" => "停用", +"Enable" => "啟用", +"Saving..." => "儲存中...", "__language_name__" => "__語言_名稱__", +"Security Warning" => "安全性警告", "Log" => "紀錄", "More" => "更多", "Add your App" => "添加你的 App", "Select an App" => "選擇一個應用程式", +"See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", "-licensed" => "-已許可", "by" => "由", "Documentation" => "文件", -- cgit v1.2.3 From 3c784ede830974a6816f5d971d6e14305c34c0c9 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 2 Sep 2012 13:58:01 +0200 Subject: use str_ireplace instead of duplicate str_replace --- lib/db.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'lib') diff --git a/lib/db.php b/lib/db.php index 1979b82f8cc..16b39208735 100644 --- a/lib/db.php +++ b/lib/db.php @@ -533,18 +533,14 @@ class OC_DB { // differences in escaping of table names ('`' for mysql) and getting the current timestamp if( $type == 'sqlite' || $type == 'sqlite3' ){ $query = str_replace( '`', '"', $query ); - $query = str_replace( 'NOW()', 'datetime(\'now\')', $query ); - $query = str_replace( 'now()', 'datetime(\'now\')', $query ); - $query = str_replace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $query ); - $query = str_replace( 'unix_timestamp()', 'strftime(\'%s\',\'now\')', $query ); + $query = str_ireplace( 'NOW()', 'datetime(\'now\')', $query ); + $query = str_ireplace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $query ); }elseif( $type == 'pgsql' ){ $query = str_replace( '`', '"', $query ); - $query = str_replace( 'UNIX_TIMESTAMP()', 'cast(extract(epoch from current_timestamp) as integer)', $query ); - $query = str_replace( 'unix_timestamp()', 'cast(extract(epoch from current_timestamp) as integer)', $query ); + $query = str_ireplace( 'UNIX_TIMESTAMP()', 'cast(extract(epoch from current_timestamp) as integer)', $query ); }elseif( $type == 'oci' ){ $query = str_replace( '`', '"', $query ); - $query = str_replace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); - $query = str_replace( 'now()', 'CURRENT_TIMESTAMP', $query ); + $query = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); } // replace table name prefix -- cgit v1.2.3 From 5f2751c67261643cace2a6fce374f723a4838e34 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Sun, 2 Sep 2012 14:14:15 +0200 Subject: in some cases no translations are loaded because $this->lang is empty not null --- lib/l10n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/l10n.php b/lib/l10n.php index 4560cb7dbb0..cd1d53bce0b 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -99,7 +99,7 @@ class OC_L10N{ $lang = $this->lang; $this->app = true; // Find the right language - if(is_null($lang)){ + if(is_null($lang) || $lang == '') { $lang = self::findLanguage($app); } -- cgit v1.2.3 From a77c16371ff8f01f57cfd110b8a277dcdf23ef82 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 1 Sep 2012 16:57:50 -0400 Subject: Make item targets be based off of the parent item target for reshares --- lib/public/share.php | 46 +++++++++++++++++++++++++++------------------- 1 file changed, 27 insertions(+), 19 deletions(-) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index 9ad0f0f68f6..204521f43e6 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -762,9 +762,9 @@ class Share { // TODO Don't check if inside folder $parent = $checkReshare['id']; $itemSource = $checkReshare['item_source']; - // TODO Suggest item/file target - $suggestedItemTarget = $checkReshare['item_target']; $fileSource = $checkReshare['file_source']; + $suggestedItemTarget = $checkReshare['item_target']; + $suggestedFileTarget = $checkReshare['file_target']; $filePath = $checkReshare['file_target']; } } else { @@ -774,6 +774,8 @@ class Share { } } else { $parent = null; + $suggestedItemTarget = null; + $suggestedFileTarget = null; if (!$backend->isValidSource($itemSource, $uidOwner)) { $message = 'Sharing '.$itemSource.' failed, because the sharing backend for '.$itemType.' could not find its source'; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); @@ -782,7 +784,7 @@ class Share { $parent = null; if ($backend instanceof Share_Backend_File_Dependent) { $filePath = $backend->getFilePath($itemSource, $uidOwner); - if ($itemType == 'file' && $itemType == 'folder') { + if ($itemType == 'file' || $itemType == 'folder') { $fileSource = $itemSource; } else { $fileSource = \OC_FileCache::getId($filePath); @@ -800,10 +802,11 @@ class Share { $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); // Share with a group if ($shareType == self::SHARE_TYPE_GROUP) { + $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget); if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner); + $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); // Set group default file target for future use $parentFolders[0]['folder'] = $groupFileTarget; } else { @@ -815,12 +818,11 @@ class Share { $uidSharedWith = array_keys($parentFolder); } } else { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner); + $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); } } else { $groupFileTarget = null; } - $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner); $uniqueTargets = array(); // Loop through all users of this group in case we need to add an extra row foreach ($shareWith['users'] as $uid) { @@ -862,18 +864,18 @@ class Share { return $parentFolders; } } else { - $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner); + $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget); if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner); + $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); $parentFolders['folder'] = $fileTarget; } else { $fileTarget = $parentFolder['folder'].$itemSource; $parent = $parentFolder['id']; } } else { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner); + $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); } } else { $fileTarget = null; @@ -895,14 +897,15 @@ class Share { * @param string Item source * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK * @param string User or group the item is being shared with + * @param string The suggested target originating from a reshare (optional) * @return string Item target - * - * TODO Use a suggested item target by default - * */ - private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner) { + private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null) { $backend = self::getBackend($itemType); if ($shareType == self::SHARE_TYPE_LINK) { + if (isset($suggestedTarget)) { + return $suggestedTarget; + } return $backend->generateTarget($itemSource, false); } else { if ($itemType == 'file' || $itemType == 'folder') { @@ -920,13 +923,18 @@ class Share { $exclude = null; // Backend has 3 opportunities to generate a unique target for ($i = 0; $i < 2; $i++) { - if ($shareType == self::SHARE_TYPE_GROUP) { - $target = $backend->generateTarget($itemSource, false, $exclude); + // Check if suggested target exists first + if ($i == 0 && isset($suggestedTarget)) { + $target = $suggestedTarget; } else { - $target = $backend->generateTarget($itemSource, $shareWith, $exclude); - } - if (is_array($exclude) && in_array($target, $exclude)) { - break; + if ($shareType == self::SHARE_TYPE_GROUP) { + $target = $backend->generateTarget($itemSource, false, $exclude); + } else { + $target = $backend->generateTarget($itemSource, $shareWith, $exclude); + } + if (is_array($exclude) && in_array($target, $exclude)) { + break; + } } // Check if target already exists if ($checkTarget = self::getItems($itemType, $target, $shareType, $shareWith, null, self::FORMAT_NONE, null, 1)) { -- cgit v1.2.3 From f0f2d939087b2349a4f3250afc17162194bd5c6a Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 2 Sep 2012 18:23:09 -0400 Subject: Restructure generateTarget for the post_addToGroup hook --- lib/public/share.php | 64 ++++++++++++++++++++++++++++++++--------------- tests/lib/share/share.php | 25 +++++++++--------- 2 files changed, 57 insertions(+), 32 deletions(-) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index 204521f43e6..481f60d06d2 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -823,14 +823,17 @@ class Share { } else { $groupFileTarget = null; } + $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget)); + // Save this id, any extra rows for this group share will need to reference it + $parent = \OC_DB::insertid('*PREFIX*share'); $uniqueTargets = array(); // Loop through all users of this group in case we need to add an extra row foreach ($shareWith['users'] as $uid) { - $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, $uidOwner); + $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedItemTarget, $parent); if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner); + $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); if ($fileTarget != $groupFileTarget) { $parentFolders[$uid]['folder'] = $fileTarget; } @@ -839,24 +842,14 @@ class Share { $parent = $parentFolder[$uid]['id']; } } else { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner); + $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); } } else { $fileTarget = null; } // Insert an extra row for the group share if the item or file target is unique for this user if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { - $uniqueTargets[] = array('uid' => $uid, 'item_target' => $itemTarget, 'file_target' => $fileTarget); - } - } - $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget)); - // Save this id, any extra rows for this group share will need to reference it - $parent = \OC_DB::insertid('*PREFIX*share'); - foreach ($uniqueTargets as $unique) { - $query->execute(array($itemType, $itemSource, $unique['item_target'], $parent, self::$shareTypeGroupUserUnique, $unique['uid'], $uidOwner, $permissions, time(), $fileSource, $unique['file_target'])); - $id = \OC_DB::insertid('*PREFIX*share'); - if ($parentFolder === true) { - $parentFolders['id'] = $id; + $query->execute(array($itemType, $itemSource, $itemTarget, $parent, self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), $fileSource, $fileTarget)); } } if ($parentFolder === true) { @@ -900,7 +893,7 @@ class Share { * @param string The suggested target originating from a reshare (optional) * @return string Item target */ - private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null) { + private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null, $groupParent = null) { $backend = self::getBackend($itemType); if ($shareType == self::SHARE_TYPE_LINK) { if (isset($suggestedTarget)) { @@ -937,10 +930,21 @@ class Share { } } // Check if target already exists - if ($checkTarget = self::getItems($itemType, $target, $shareType, $shareWith, null, self::FORMAT_NONE, null, 1)) { - // If matching target is from the same owner, use the same target. The share type will be different so this isn't the same share. - if ($checkTarget['uid_owner'] == $uidOwner) { - return $target; + $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith); + if (!empty($checkTarget)) { + foreach ($checkTarget as $item) { + // Skip item if it is the group parent row + if (isset($groupParent) && $item['id'] == $groupParent) { + if (count($checkTarget) == 1) { + return $target; + } else { + continue; + } + } + // If matching target is from the same owner, use the same target. The share type will be different so this isn't the same share. + if ($item['uid_owner'] == $uidOwner) { + return $target; + } } if (!isset($exclude)) { $exclude = array(); @@ -1031,7 +1035,27 @@ class Share { } public static function post_addToGroup($arguments) { - // TODO + // Find the group shares and check if the user needs a unique target + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + while ($item = $result->fetchRow()) { + if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { + $itemTarget = null; + } else { + $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); + } + if (isset($item['file_source'])) { + $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); + } else { + $fileTarget = null; + } + // Insert an extra row for the group share if the item or file target is unique for this user + if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { + $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], $item['stime'], $item['file_source'], $fileTarget)); + $id = \OC_DB::insertid('*PREFIX*share'); + } + } } public static function post_removeFromGroup($arguments) { diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index 18ca5031ca4..082e265571b 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -366,21 +366,22 @@ class Test_Share extends UnitTestCase { $this->assertEqual(count($to_test), 2); $this->assertTrue(in_array('test.txt', $to_test)); $this->assertTrue(in_array('test1.txt', $to_test)); - //$this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt', 'test1.txt')); -// // Valid reshare TODO Broken -// $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user4, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE)); -// OC_User::setUserId($this->user4); -// $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test1.txt')); -// -// // Remove user from group -// OC_Group::removeFromGroup($this->user2, $this->group1); -// OC_User::setUserId($this->user2); -// $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt')); -// OC_User::setUserId($this->user4); -// $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array()); + // Valid reshare + $this->assertTrue(OCP\Share::shareItem('test', 'share.txt', OCP\Share::SHARE_TYPE_USER, $this->user4, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE)); + OC_User::setUserId($this->user4); + $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test1.txt')); + + // Remove user from group + OC_Group::removeFromGroup($this->user2, $this->group1); + OC_User::setUserId($this->user2); + $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt')); + OC_User::setUserId($this->user4); + $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array()); // Add user to group + OC_Group::addToGroup($this->user4, $this->group1); + $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt')); // Remove group } -- cgit v1.2.3 From db37a454b345acea72c693cf1043608722ce14d2 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 2 Sep 2012 18:29:55 -0400 Subject: Add parameter documentation --- lib/public/share.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index 481f60d06d2..9b42b417f39 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -891,6 +891,7 @@ class Share { * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK * @param string User or group the item is being shared with * @param string The suggested target originating from a reshare (optional) + * @param int The id of the parent group share (optional) * @return string Item target */ private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null, $groupParent = null) { -- cgit v1.2.3 From dc569ea300ac7112aec7ca6f4e2e409ba8fb7382 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 2 Sep 2012 19:30:01 -0400 Subject: Fix some warnings from Jenkins in the Share API --- lib/public/share.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index 9b42b417f39..a7a47ee14c6 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -357,7 +357,7 @@ class Share { if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { // Check if this item is a reshare and verify that the permissions granted don't exceed the parent shared item if (isset($item['parent'])) { - $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?',1); + $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); $result = $query->execute(array($item['parent']))->fetchRow(); if (~(int)$result['permissions'] & $permissions) { $message = 'Setting permissions for '.$itemSource.' failed, because the permissions exceed permissions granted to '.\OC_User::getUser(); @@ -813,9 +813,6 @@ class Share { // Get group default file target $groupFileTarget = $parentFolder[0]['folder'].$itemSource; $parent = $parentFolder[0]['id']; - unset($parentFolder[0]); - // Only loop through users we know have different file target paths - $uidSharedWith = array_keys($parentFolder); } } else { $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); @@ -826,7 +823,6 @@ class Share { $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget)); // Save this id, any extra rows for this group share will need to reference it $parent = \OC_DB::insertid('*PREFIX*share'); - $uniqueTargets = array(); // Loop through all users of this group in case we need to add an extra row foreach ($shareWith['users'] as $uid) { $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedItemTarget, $parent); @@ -1054,7 +1050,7 @@ class Share { // Insert an extra row for the group share if the item or file target is unique for this user if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], $item['stime'], $item['file_source'], $fileTarget)); - $id = \OC_DB::insertid('*PREFIX*share'); + \OC_DB::insertid('*PREFIX*share'); } } } -- cgit v1.2.3 From 4c065deb55b1c61059c7693c5861a68869758607 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 2 Sep 2012 20:01:09 -0400 Subject: Listen to post_deleteGroup hook in Share API --- lib/public/share.php | 9 +++++++++ tests/lib/share/share.php | 4 ++++ 2 files changed, 13 insertions(+) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index a7a47ee14c6..7b6b78561d4 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -23,6 +23,7 @@ namespace OCP; \OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser'); \OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup'); \OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup'); +\OC_Hook::connect('OC_User', 'post_deleteGroup', 'OCP\Share', 'post_deleteGroup'); /** * This class provides the ability for apps to share their content between users. @@ -1069,6 +1070,14 @@ class Share { } } + public static function post_deleteGroup($arguments) { + $query = \OC_DB::prepare('SELECT id FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + while ($item = $result->fetchRow()) { + self::delete($item['id']); + } + } + } /** diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index 082e265571b..b45779038ba 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -384,6 +384,10 @@ class Test_Share extends UnitTestCase { $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt')); // Remove group + OC_Group::deleteGroup($this->group1); + $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array()); + OC_User::setUserId($this->user3); + $this->assertEqual(OCP\Share::getItemsShared('test'), array()); } } -- cgit v1.2.3 From d386e0172a54df88694a9f4942b651ce69a25058 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 3 Sep 2012 02:07:40 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/da.php | 1 + apps/files_versions/l10n/de.php | 1 + apps/files_versions/l10n/fi_FI.php | 2 ++ apps/files_versions/l10n/sl.php | 2 ++ apps/files_versions/l10n/sv.php | 2 ++ apps/files_versions/l10n/th_TH.php | 2 ++ core/l10n/da.php | 1 + l10n/da/core.po | 9 +++++---- l10n/da/files.po | 9 +++++---- l10n/da/settings.po | 29 +++++++++++++++-------------- l10n/de/files_versions.po | 9 +++++---- l10n/de/settings.po | 12 ++++++------ l10n/fi_FI/files_versions.po | 10 +++++----- l10n/fi_FI/settings.po | 18 +++++++++--------- l10n/ru/lib.po | 9 +++++---- l10n/sl/files_versions.po | 10 +++++----- l10n/sl/settings.po | 10 +++++----- l10n/sv/files_versions.po | 10 +++++----- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/files_versions.po | 10 +++++----- l10n/th_TH/lib.po | 12 ++++++------ l10n/th_TH/settings.po | 10 +++++----- lib/l10n/ru.php | 3 ++- lib/l10n/th_TH.php | 5 ++++- settings/l10n/da.php | 11 +++++++++++ settings/l10n/de.php | 5 +++-- settings/l10n/fi_FI.php | 6 ++++++ settings/l10n/sl.php | 2 ++ settings/l10n/th_TH.php | 2 ++ 37 files changed, 136 insertions(+), 94 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 56af0fa61d7..a842088e7b5 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -20,6 +20,7 @@ "Upload Error" => "Fejl ved upload", "Pending" => "Afventer", "Upload cancelled." => "Upload afbrudt.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", "Invalid name, '/' is not allowed." => "Ugyldigt navn, '/' er ikke tilladt.", "Size" => "Størrelse", "Modified" => "Ændret", diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php index b1ba62a801f..2c15884d1b5 100644 --- a/apps/files_versions/l10n/de.php +++ b/apps/files_versions/l10n/de.php @@ -1,5 +1,6 @@ "Alle Versionen löschen", "Versions" => "Versionen", +"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien.", "Enable Files Versioning" => "Datei-Versionierung aktivieren" ); diff --git a/apps/files_versions/l10n/fi_FI.php b/apps/files_versions/l10n/fi_FI.php index c5092daf998..5cfcbf28bd4 100644 --- a/apps/files_versions/l10n/fi_FI.php +++ b/apps/files_versions/l10n/fi_FI.php @@ -1,4 +1,6 @@ "Vanhenna kaikki versiot", +"Versions" => "Versiot", +"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot", "Enable Files Versioning" => "Käytä tiedostojen versiointia" ); diff --git a/apps/files_versions/l10n/sl.php b/apps/files_versions/l10n/sl.php index e7db55930c1..aec6edb3c22 100644 --- a/apps/files_versions/l10n/sl.php +++ b/apps/files_versions/l10n/sl.php @@ -1,4 +1,6 @@ "Zastaraj vse različice", +"Versions" => "Različice", +"This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek", "Enable Files Versioning" => "Omogoči sledenje različicam datotek" ); diff --git a/apps/files_versions/l10n/sv.php b/apps/files_versions/l10n/sv.php index 03d4d54d0b9..5788d8ae197 100644 --- a/apps/files_versions/l10n/sv.php +++ b/apps/files_versions/l10n/sv.php @@ -1,4 +1,6 @@ "Upphör alla versioner", +"Versions" => "Versioner", +"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer", "Enable Files Versioning" => "Aktivera versionshantering" ); diff --git a/apps/files_versions/l10n/th_TH.php b/apps/files_versions/l10n/th_TH.php index e880840f4b9..4f26e3bd035 100644 --- a/apps/files_versions/l10n/th_TH.php +++ b/apps/files_versions/l10n/th_TH.php @@ -1,4 +1,6 @@ "หมดอายุทุกรุ่น", +"Versions" => "รุ่น", +"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป", "Enable Files Versioning" => "เปิดใช้งานคุณสมบัติการแยกสถานะรุ่นหรือเวอร์ชั่นของไฟล์" ); diff --git a/core/l10n/da.php b/core/l10n/da.php index 5e62b5b95db..398ebdb670c 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -51,6 +51,7 @@ "Database user" => "Databasebruger", "Database password" => "Databasekodeord", "Database name" => "Navn på database", +"Database tablespace" => "Database tabelplads", "Database host" => "Databasehost", "Finish setup" => "Afslut opsætning", "web services under your control" => "Webtjenester under din kontrol", diff --git a/l10n/da/core.po b/l10n/da/core.po index 383cb162d33..542e8425faf 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -6,15 +6,16 @@ # , 2011, 2012. # Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. # Pascal d'Hermilly , 2011. +# , 2012. # Thomas Tanghus <>, 2012. # Thomas Tanghus , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 14:21+0000\n" +"Last-Translator: muunsim \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,7 +235,7 @@ msgstr "Navn på database" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Database tabelplads" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/da/files.po b/l10n/da/files.po index 777667d6f5f..de51c340b83 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -5,15 +5,16 @@ # Translators: # Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. # Pascal d'Hermilly , 2011. +# , 2012. # Thomas Tanghus <>, 2012. # Thomas Tanghus , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 14:21+0000\n" +"Last-Translator: muunsim \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -110,7 +111,7 @@ msgstr "Upload afbrudt." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 58ca661b315..0e6fe9214b5 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -7,6 +7,7 @@ # , 2011. # Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. # Pascal d'Hermilly , 2011. +# , 2012. # , 2012. # Thomas Tanghus <>, 2012. # Thomas Tanghus , 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"PO-Revision-Date: 2012-09-02 14:13+0000\n" +"Last-Translator: muunsim \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -91,7 +92,7 @@ msgstr "Cron" #: templates/admin.php:33 msgid "execute one task with each page loaded" -msgstr "" +msgstr "udfør en opgave for hver indlæst side" #: templates/admin.php:35 msgid "cron.php is registered at a webcron service" @@ -99,31 +100,31 @@ msgstr "cron.php er tilmeldt en webcron tjeneste" #: templates/admin.php:37 msgid "use systems cron service" -msgstr "" +msgstr "brug systemets cron service" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Del API" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Aktiver dele API" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Tillad apps a bruge dele APIen" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Tillad links" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Tillad brugere at dele elementer med offentligheden med links" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Tillad gendeling" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" @@ -131,11 +132,11 @@ msgstr "" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Tillad brugere at dele med hvem som helst" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Tillad kun deling med brugere i brugerens egen gruppe" #: templates/admin.php:69 msgid "Log" @@ -289,7 +290,7 @@ msgstr "Andet" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Gruppe Administrator" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 773e4b2c44d..f4e27ec5144 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -4,14 +4,15 @@ # # Translators: # I Robot , 2012. +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 11:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 06:01+0000\n" +"Last-Translator: JamFX \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +30,7 @@ msgstr "Versionen" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index b99b4b03c5d..4f41b94c0d1 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 11:46+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"PO-Revision-Date: 2012-09-02 20:12+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +86,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." #: templates/admin.php:31 msgid "Cron" @@ -114,7 +114,7 @@ msgstr "Teilungs-API aktivieren" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "Erlaubt Nutzern die Teilungs-API zu nutzen" +msgstr "Erlaubt Nutzern, die Teilungs-API zu nutzen" #: templates/admin.php:51 msgid "Allow links" @@ -122,7 +122,7 @@ msgstr "Links erlauben" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "Erlaube Nutzern Dateien mithilfe von Links mit der Öffentlichkeit zu teilen" +msgstr "Erlaube Nutzern, Dateien mithilfe von Links mit der Öffentlichkeit zu teilen" #: templates/admin.php:56 msgid "Allow resharing" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index f5badf4ae77..7d47ae42141 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 15:39+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "Vanhenna kaikki versiot" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versiot" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 98c69430bb8..b2d28143e9d 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"PO-Revision-Date: 2012-09-02 15:47+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -110,15 +110,15 @@ msgstr "" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Salli linkit" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Salli käyttäjien jakaa kohteita julkisesti linkkejä käyttäen" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Salli uudelleenjako" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" @@ -126,11 +126,11 @@ msgstr "" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Salli käyttäjien jakaa kohteita kenen tahansa kanssa" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Salli käyttäjien jakaa kohteita vain omien ryhmien jäsenten kesken" #: templates/admin.php:69 msgid "Log" @@ -148,7 +148,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Kehityksestä on vastannut ownCloud-yhteisö, lähdekoodi on julkaistu lisenssin AGPL alaisena." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index e345d2c9749..9a75b9546ae 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -4,13 +4,14 @@ # # Translators: # Denis , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 14:32+0000\n" +"Last-Translator: mPolr \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,4 +124,4 @@ msgstr "" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "проверка обновлений отключена" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index a018b4cf423..d37dc15d09e 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 02:04+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "Zastaraj vse različice" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Različice" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 299979763bc..95cdc0a22a4 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"PO-Revision-Date: 2012-09-02 02:00+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,7 +79,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika." #: templates/admin.php:31 msgid "Cron" @@ -149,7 +149,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Razvit s strani skupnosti ownCloud. Izvorna koda je izdana pod licenco AGPL." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 53aac5ef45d..29af9f4e970 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 09:50+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "Upphör alla versioner" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versioner" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index ee6aa77b12d..2ab352a0a8d 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 39453f66ed9..66d9dbcd1b9 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 18a12f4b7d6..5b047fcf46d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 794c132aaf4..3f295496fd3 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index b78bed0cb85..d386ad1e35f 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 7536c6fd395..72af58b8b55 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 580fc07f7b3..3c27e4b0f88 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index eca1559ddbc..dcdeac2fdc9 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:05+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index eb372a1f029..a8e7af24122 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 178ff67a954..28f3effc2a2 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 22:45+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "หมดอายุทุกรุ่น" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "รุ่น" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 93925a0b0d9..ea4639ff8f3 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 22:43+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,12 +115,12 @@ msgstr "ปีที่ผ่านมา" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s พร้อมให้ใช้งานได้แล้ว. ดูรายละเอียดเพิ่มเติม" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "ทันสมัย" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "การตรวจสอบชุดอัพเดทถูกปิดใช้งานไว้" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index fe1fc15e9ea..383a4a47c8b 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"PO-Revision-Date: 2012-09-02 22:49+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,7 +79,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว" #: templates/admin.php:31 msgid "Cron" @@ -149,7 +149,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "พัฒนาโดย the ชุมชนผู้ใช้งาน ownCloud, the ซอร์สโค้ดอยู่ภายใต้สัญญาอนุญาตของ AGPL." #: templates/apps.php:10 msgid "Add your App" diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 07dacc598ae..3b2681ba8d1 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -21,5 +21,6 @@ "last month" => "в прошлом месяце", "months ago" => "месяцы назад", "last year" => "в прошлом году", -"years ago" => "годы назад" +"years ago" => "годы назад", +"updates check is disabled" => "проверка обновлений отключена" ); diff --git a/lib/l10n/th_TH.php b/lib/l10n/th_TH.php index cb2610fa204..2aa2ffaba8c 100644 --- a/lib/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -21,5 +21,8 @@ "last month" => "เดือนที่แล้ว", "months ago" => "เดือนมาแล้ว", "last year" => "ปีที่แล้ว", -"years ago" => "ปีที่ผ่านมา" +"years ago" => "ปีที่ผ่านมา", +"%s is available. Get more information" => "%s พร้อมให้ใช้งานได้แล้ว. ดูรายละเอียดเพิ่มเติม", +"up to date" => "ทันสมัย", +"updates check is disabled" => "การตรวจสอบชุดอัพเดทถูกปิดใช้งานไว้" ); diff --git a/settings/l10n/da.php b/settings/l10n/da.php index f17fb11fa7e..775087a7079 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -13,7 +13,17 @@ "__language_name__" => "Dansk", "Security Warning" => "Sikkerhedsadvarsel", "Cron" => "Cron", +"execute one task with each page loaded" => "udfør en opgave for hver indlæst side", "cron.php is registered at a webcron service" => "cron.php er tilmeldt en webcron tjeneste", +"use systems cron service" => "brug systemets cron service", +"Share API" => "Del API", +"Enable Share API" => "Aktiver dele API", +"Allow apps to use the Share API" => "Tillad apps a bruge dele APIen", +"Allow links" => "Tillad links", +"Allow users to share items to the public with links" => "Tillad brugere at dele elementer med offentligheden med links", +"Allow resharing" => "Tillad gendeling", +"Allow users to share with anyone" => "Tillad brugere at dele med hvem som helst", +"Allow users to only share with users in their groups" => "Tillad kun deling med brugere i brugerens egen gruppe", "Log" => "Log", "More" => "Mere", "Add your App" => "Tilføj din App", @@ -49,6 +59,7 @@ "Create" => "Ny", "Default Quota" => "Standard kvote", "Other" => "Andet", +"Group Admin" => "Gruppe Administrator", "Quota" => "Kvote", "Delete" => "Slet" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 8ca01243e5d..68bdb81f55f 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -12,15 +12,16 @@ "Saving..." => "Speichern...", "__language_name__" => "Deutsch", "Security Warning" => "Sicherheitshinweis", +"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." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Cron" => "Cron", "execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.", "cron.php is registered at a webcron service" => "cron.php ist beim Webcron-Service registriert", "use systems cron service" => "Nutze System-Cron-Service", "Share API" => "Teilungs-API", "Enable Share API" => "Teilungs-API aktivieren", -"Allow apps to use the Share API" => "Erlaubt Nutzern die Teilungs-API zu nutzen", +"Allow apps to use the Share API" => "Erlaubt Nutzern, die Teilungs-API zu nutzen", "Allow links" => "Links erlauben", -"Allow users to share items to the public with links" => "Erlaube Nutzern Dateien mithilfe von Links mit der Öffentlichkeit zu teilen", +"Allow users to share items to the public with links" => "Erlaube Nutzern, Dateien mithilfe von Links mit der Öffentlichkeit zu teilen", "Allow resharing" => "Erneutes Teilen erlauben", "Allow users to share items shared with them again" => "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen", "Allow users to share with anyone" => "Erlaube Nutzern mit jedem zu Teilen", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index bfcf1a59dda..0ca490d8d51 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -13,8 +13,14 @@ "Security Warning" => "Turvallisuusvaroitus", "Cron" => "Cron", "use systems cron service" => "käytä järjestelmän cron-palvelua", +"Allow links" => "Salli linkit", +"Allow users to share items to the public with links" => "Salli käyttäjien jakaa kohteita julkisesti linkkejä käyttäen", +"Allow resharing" => "Salli uudelleenjako", +"Allow users to share with anyone" => "Salli käyttäjien jakaa kohteita kenen tahansa kanssa", +"Allow users to only share with users in their groups" => "Salli käyttäjien jakaa kohteita vain omien ryhmien jäsenten kesken", "Log" => "Loki", "More" => "Lisää", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Kehityksestä on vastannut ownCloud-yhteisö, lähdekoodi on julkaistu lisenssin AGPL alaisena.", "Add your App" => "Lisää ohjelmasi", "Select an App" => "Valitse ohjelma", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 884acaf576d..9dd7813cc13 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -12,6 +12,7 @@ "Saving..." => "Shranjevanje...", "__language_name__" => "__ime_jezika__", "Security Warning" => "Varnostno opozorilo", +"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." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", "execute one task with each page loaded" => "izvedi eno nalogo z vsako naloženo stranjo", "cron.php is registered at a webcron service" => "cron.php je vpisan na storitev webcron", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo le znotraj njihove skupine", "Log" => "Dnevnik", "More" => "Več", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Razvit s strani skupnosti ownCloud. Izvorna koda je izdana pod licenco AGPL.", "Add your App" => "Dodajte vašo aplikacijo", "Select an App" => "Izberite aplikacijo", "See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 6ab253362ef..862445524f5 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -12,6 +12,7 @@ "Saving..." => "กำลังบันทึุกข้อมูล...", "__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." => "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว", "Cron" => "Cron", "execute one task with each page loaded" => "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง", "cron.php is registered at a webcron service" => "cron.php ได้ถูกลงทะเบียนที่บริการ webcron", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น", "Log" => "บันทึกการเปลี่ยนแปลง", "More" => "เพิ่มเติม", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "พัฒนาโดย the ชุมชนผู้ใช้งาน ownCloud, the ซอร์สโค้ดอยู่ภายใต้สัญญาอนุญาตของ AGPL.", "Add your App" => "เพิ่มแอปของคุณ", "Select an App" => "เลือก App", "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", -- cgit v1.2.3 From bb65e173d416fb91800ebe9d63fe8d3d519c0164 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Mon, 3 Sep 2012 20:38:50 +0200 Subject: 4.5 beta 2 --- lib/util.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index 10b88b24438..581b6bdb317 100755 --- a/lib/util.php +++ b/lib/util.php @@ -74,7 +74,7 @@ class OC_Util { */ public static function getVersion(){ // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4,9,0. This is not visible to the user - return array(4,83,5); + return array(4,83,6); } /** @@ -82,7 +82,7 @@ class OC_Util { * @return string */ public static function getVersionString(){ - return '4.5 beta 1'; + return '4.5 beta 2'; } /** -- cgit v1.2.3 From 1a461924336f8ab227c135e13d7661b7a4f1e1df Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 3 Sep 2012 18:13:45 +0200 Subject: Add args parameter to linkTo(Absolute) function, to append the args automaticly --- lib/helper.php | 12 +++++++++--- lib/public/util.php | 10 ++++++---- lib/template.php | 5 +++-- 3 files changed, 18 insertions(+), 9 deletions(-) (limited to 'lib') diff --git a/lib/helper.php b/lib/helper.php index 3cf464dfa7b..ea43304da5f 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -32,11 +32,12 @@ class OC_Helper { * @brief Creates an url * @param $app app * @param $file file + * @param $args array with param=>value, will be appended to the returned url * @returns the url * * Returns a url to the given app and file. */ - public static function linkTo( $app, $file ){ + public static function linkTo( $app, $file, $args = array() ){ if( $app != '' ){ $app_path = OC_App::getAppPath($app); // Check if the app is in the app folder @@ -61,6 +62,10 @@ class OC_Helper { } } + foreach($args as $k => $v) { + $urlLinkTo .= '&'.$k.'='.$v; + } + return $urlLinkTo; } @@ -68,12 +73,13 @@ class OC_Helper { * @brief Creates an absolute url * @param $app app * @param $file file + * @param $args array with param=>value, will be appended to the returned url * @returns the url * * Returns a absolute url to the given app and file. */ - public static function linkToAbsolute( $app, $file ) { - $urlLinkTo = self::linkTo( $app, $file ); + public static function linkToAbsolute( $app, $file, $args = array() ) { + $urlLinkTo = self::linkTo( $app, $file, $args ); return self::makeURLAbsolute($urlLinkTo); } diff --git a/lib/public/util.php b/lib/public/util.php index 6ad578441e2..cc05e6d535f 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -124,12 +124,13 @@ class Util { * @brief Creates an absolute url * @param $app app * @param $file file + * @param $args array with param=>value, will be appended to the returned url * @returns the url * * Returns a absolute url to the given app and file. */ - public static function linkToAbsolute( $app, $file ) { - return(\OC_Helper::linkToAbsolute( $app, $file )); + public static function linkToAbsolute( $app, $file, $args = array() ) { + return(\OC_Helper::linkToAbsolute( $app, $file, $args )); } @@ -160,12 +161,13 @@ class Util { * @brief Creates an url * @param $app app * @param $file file + * @param $args array with param=>value, will be appended to the returned url * @returns the url * * Returns a url to the given app and file. */ - public static function linkTo( $app, $file ){ - return(\OC_Helper::linkTo( $app, $file )); + public static function linkTo( $app, $file, $args = array() ){ + return(\OC_Helper::linkTo( $app, $file, $args )); } /** diff --git a/lib/template.php b/lib/template.php index fa8d4192615..2359bd50c46 100644 --- a/lib/template.php +++ b/lib/template.php @@ -25,12 +25,13 @@ * @brief make OC_Helper::linkTo available as a simple function * @param $app app * @param $file file + * @param $args array with param=>value, will be appended to the returned url * @returns link to the file * * For further information have a look at OC_Helper::linkTo */ -function link_to( $app, $file ){ - return OC_Helper::linkTo( $app, $file ); +function link_to( $app, $file, $args = array() ){ + return OC_Helper::linkTo( $app, $file, $args ); } /** -- cgit v1.2.3 From 5153b8b293b5485b9aa3d321f6a93979ec302068 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 3 Sep 2012 19:12:52 +0200 Subject: Add url-params to url with new parameter in linkTo function --- apps/files_versions/templates/history.php | 2 +- core/lostpassword/index.php | 2 +- lib/search/provider/file.php | 10 +++++----- lib/util.php | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'lib') diff --git a/apps/files_versions/templates/history.php b/apps/files_versions/templates/history.php index d4f875a36e8..99bc153a816 100644 --- a/apps/files_versions/templates/history.php +++ b/apps/files_versions/templates/history.php @@ -22,7 +22,7 @@ if( isset( $_['message'] ) ) { foreach ( $_['versions'] as $v ) { echo ' '; echo OCP\Util::formatDate( doubleval($v['version']) ); - echo ' Revert

    '; + echo ' Revert

    '; if ( $v['cur'] ) { echo ' (Current)'; } echo '

    '; } diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index 8f86fe23aad..58dab597324 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -17,7 +17,7 @@ if (isset($_POST['user'])) { OC_Preferences::setValue($_POST['user'], 'owncloud', 'lostpassword', $token); $email = OC_Preferences::getValue($_POST['user'], 'settings', 'email', ''); if (!empty($email) and isset($_POST['sectoken']) and isset($_SESSION['sectoken']) and ($_POST['sectoken']==$_SESSION['sectoken']) ) { - $link = OC_Helper::linkToAbsolute('core/lostpassword', 'resetpassword.php').'?user='.urlencode($_POST['user']).'&token='.$token; + $link = OC_Helper::linkToAbsolute('core/lostpassword', 'resetpassword.php', array('user' => urlencode($_POST['user']), 'token' => $token)); $tmpl = new OC_Template('core/lostpassword', 'email'); $tmpl->assign('link', $link, false); $msg = $tmpl->fetchPage(); diff --git a/lib/search/provider/file.php b/lib/search/provider/file.php index a37af495599..12a535876fe 100644 --- a/lib/search/provider/file.php +++ b/lib/search/provider/file.php @@ -8,23 +8,23 @@ class OC_Search_Provider_File extends OC_Search_Provider{ $file=$fileData['path']; $mime=$fileData['mimetype']; if($mime=='httpd/unix-directory'){ - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'index.php' ).'?dir='.$file,'Files'); + $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'index.php', array('dir' => $file)),'Files'); }else{ $mimeBase=$fileData['mimepart']; switch($mimeBase){ case 'audio': break; case 'text': - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php' ).'?file='.$file,'Text'); + $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Text'); break; case 'image': - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php' ).'?file='.$file,'Images'); + $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Images'); break; default: if($mime=='application/xml'){ - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php' ).'?file='.$file,'Text'); + $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Text'); }else{ - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php' ).'?file='.$file,'Files'); + $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Files'); } } } diff --git a/lib/util.php b/lib/util.php index 581b6bdb317..42a0f5c7df1 100755 --- a/lib/util.php +++ b/lib/util.php @@ -320,7 +320,7 @@ class OC_Util { public static function checkLoggedIn(){ // Check if we are a user if( !OC_User::isLoggedIn()){ - header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' ).'?redirect_url='.urlencode($_SERVER["REQUEST_URI"])); + header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php', array('redirect_url' => urlencode($_SERVER["REQUEST_URI"])))); exit(); } } -- cgit v1.2.3 From b867b738e8772ac8806b031baccebf150d701dde Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 4 Sep 2012 02:03:21 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/fi_FI.php | 3 ++- apps/files/l10n/lb.php | 17 ++++++++++++ apps/files/l10n/pl.php | 1 + apps/files_sharing/l10n/eu.php | 1 + apps/files_sharing/l10n/fi_FI.php | 1 + apps/files_sharing/l10n/pl.php | 1 + apps/files_versions/l10n/ca.php | 2 ++ apps/files_versions/l10n/eu.php | 2 ++ apps/files_versions/l10n/ja_JP.php | 2 ++ apps/files_versions/l10n/pl.php | 2 ++ apps/user_ldap/l10n/es.php | 5 ++++ core/l10n/fi_FI.php | 2 ++ core/l10n/lb.php | 21 ++++++++++++++- core/l10n/pl.php | 1 + l10n/ca/files_versions.po | 12 ++++----- l10n/ca/lib.po | 34 ++++++++++++------------ l10n/ca/settings.po | 12 ++++----- l10n/es/settings.po | 12 ++++----- l10n/es/user_ldap.po | 20 +++++++------- l10n/eu/files_sharing.po | 12 ++++----- l10n/eu/files_versions.po | 12 ++++----- l10n/eu/lib.po | 34 ++++++++++++------------ l10n/eu/settings.po | 30 ++++++++++----------- l10n/fi_FI/core.po | 13 +++++----- l10n/fi_FI/files.po | 11 ++++---- l10n/fi_FI/files_sharing.po | 13 +++++----- l10n/fi_FI/settings.po | 27 +++++++++---------- l10n/ja_JP/files_versions.po | 12 ++++----- l10n/ja_JP/lib.po | 34 ++++++++++++------------ l10n/lb/core.po | 50 +++++++++++++++++------------------ l10n/lb/files.po | 44 +++++++++++++++---------------- l10n/lb/settings.po | 52 ++++++++++++++++++------------------- l10n/pl/core.po | 10 +++---- l10n/pl/files.po | 10 +++---- l10n/pl/files_sharing.po | 12 ++++----- l10n/pl/files_versions.po | 12 ++++----- l10n/pl/lib.po | 34 ++++++++++++------------ l10n/pl/settings.po | 18 ++++++------- 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 | 4 +-- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 22 ++++++++-------- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- lib/l10n/ca.php | 5 +++- lib/l10n/eu.php | 5 +++- lib/l10n/ja_JP.php | 5 +++- lib/l10n/pl.php | 5 +++- settings/l10n/ca.php | 2 ++ settings/l10n/es.php | 1 + settings/l10n/eu.php | 11 ++++++++ settings/l10n/fi_FI.php | 9 +++++++ settings/l10n/lb.php | 21 +++++++++++++++ settings/l10n/pl.php | 5 ++++ 57 files changed, 412 insertions(+), 288 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 399adb0b1d7..3ed56de6419 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -47,5 +47,6 @@ "Download" => "Lataa", "Upload too large" => "Lähetettävä tiedosto on liian suuri", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.", -"Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki." +"Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki.", +"Current scanning" => "Tämänhetkinen tutkinta" ); diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index f7a10fbc5cd..7c8244a8747 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -8,8 +8,25 @@ "Failed to write to disk" => "Konnt net op den Disk schreiwen", "Files" => "Dateien", "Delete" => "Läschen", +"already exists" => "existéiert schonn", +"replace" => "ersetzen", +"cancel" => "ofbriechen", +"replaced" => "ersat", +"with" => "mat", +"undo" => "réckgängeg man", +"deleted" => "geläscht", +"generating ZIP-file, it may take some time." => "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass.", +"Upload Error" => "Fehler beim eroplueden", +"Upload cancelled." => "Upload ofgebrach.", +"File upload is in progress. Leaving the page now will cancel the upload." => "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach.", +"Invalid name, '/' is not allowed." => "Ongültege Numm, '/' net erlaabt.", "Size" => "Gréisst", "Modified" => "Geännert", +"folder" => "Dossier", +"folders" => "Dossieren", +"file" => "Datei", +"files" => "Dateien", "File handling" => "Fichier handling", "Maximum upload size" => "Maximum Upload Gréisst ", "max. possible: " => "max. méiglech:", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index eb791330bfd..a95c995d252 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -20,6 +20,7 @@ "Upload Error" => "Błąd wczytywania", "Pending" => "Oczekujące", "Upload cancelled." => "Wczytywanie anulowane.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane.", "Invalid name, '/' is not allowed." => "Nieprawidłowa nazwa '/' jest niedozwolone.", "Size" => "Rozmiar", "Modified" => "Czas modyfikacji", diff --git a/apps/files_sharing/l10n/eu.php b/apps/files_sharing/l10n/eu.php index a1f810826c2..70ff2e8876c 100644 --- a/apps/files_sharing/l10n/eu.php +++ b/apps/files_sharing/l10n/eu.php @@ -2,5 +2,6 @@ "Password" => "Pasahitza", "Submit" => "Bidali", "Download" => "Deskargatu", +"No preview available for" => "Ez dago aurrebista eskuragarririk hauentzat ", "web services under your control" => "web zerbitzuak zure kontrolpean" ); diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index ce2c5932d48..85c6c7a7132 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -2,5 +2,6 @@ "Password" => "Salasana", "Submit" => "Lähetä", "Download" => "Lataa", +"No preview available for" => "Ei esikatselua kohteelle", "web services under your control" => "verkkopalvelut hallinnassasi" ); diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 5810cc6d796..1d5e6261ef0 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -2,5 +2,6 @@ "Password" => "Hasło", "Submit" => "Wyślij", "Download" => "Pobierz", +"No preview available for" => "Podgląd nie jest dostępny dla", "web services under your control" => "Kontrolowane serwisy" ); diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php index 8388556bec6..b6ddc6feecf 100644 --- a/apps/files_versions/l10n/ca.php +++ b/apps/files_versions/l10n/ca.php @@ -1,4 +1,6 @@ "Expira totes les versions", +"Versions" => "Versions", +"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers", "Enable Files Versioning" => "Habilita les versions de fitxers" ); diff --git a/apps/files_versions/l10n/eu.php b/apps/files_versions/l10n/eu.php index eacbdd09934..0f065c1e93c 100644 --- a/apps/files_versions/l10n/eu.php +++ b/apps/files_versions/l10n/eu.php @@ -1,4 +1,6 @@ "Iraungi bertsio guztiak", +"Versions" => "Bertsioak", +"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu", "Enable Files Versioning" => "Gaitu fitxategien bertsioak" ); diff --git a/apps/files_versions/l10n/ja_JP.php b/apps/files_versions/l10n/ja_JP.php index ec5e32f3e29..81d17f56f8f 100644 --- a/apps/files_versions/l10n/ja_JP.php +++ b/apps/files_versions/l10n/ja_JP.php @@ -1,4 +1,6 @@ "すべてのバージョンを削除する", +"Versions" => "バージョン", +"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します", "Enable Files Versioning" => "ファイルのバージョン管理を有効にする" ); diff --git a/apps/files_versions/l10n/pl.php b/apps/files_versions/l10n/pl.php index faf2d39e709..c25d37611a0 100644 --- a/apps/files_versions/l10n/pl.php +++ b/apps/files_versions/l10n/pl.php @@ -1,4 +1,6 @@ "Wygasają wszystkie wersje", +"Versions" => "Wersje", +"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików", "Enable Files Versioning" => "Włącz wersjonowanie plików" ); diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 8d9c7f9ad38..c89ceb8eee2 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -7,10 +7,15 @@ "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." => "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, deje DN y contraseña vacíos.", "Password" => "Contraseña", "For anonymous access, leave DN and Password empty." => "Para acceso anónimo, deje DN y contraseña vacíos.", +"User Login Filter" => "Filtro de inicio de sesión de usuario", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazrá el nombre de usuario en el proceso de login.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "usar %%uid como placeholder, ej: \"uid=%%uid\"", "User List Filter" => "Lista de filtros de usuario", "Defines the filter to apply, when retrieving users." => "Define el filtro a aplicar, cuando se obtienen usuarios.", +"without any placeholder, e.g. \"objectClass=person\"." => "Sin placeholder, ej: \"objectClass=person\".", "Group Filter" => "Filtro de grupo", "Defines the filter to apply, when retrieving groups." => "Define el filtro a aplicar, cuando se obtienen grupos.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "Con cualquier placeholder, ej: \"objectClass=posixGroup\".", "Port" => "Puerto", "Base User Tree" => "Árbol base de usuario", "Base Group Tree" => "Árbol base de grupo", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 64bb4dca631..34a69b6c643 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -2,6 +2,7 @@ "Application name not provided." => "Sovelluksen nimeä ei määritelty.", "No category to add?" => "Ei lisättävää luokkaa?", "This category already exists: " => "Tämä luokka on jo olemassa: ", +"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Asetukset", "January" => "Tammikuu", "February" => "Helmikuu", @@ -50,6 +51,7 @@ "Database user" => "Tietokannan käyttäjä", "Database password" => "Tietokannan salasana", "Database name" => "Tietokannan nimi", +"Database tablespace" => "Tietokannan taulukkotila", "Database host" => "Tietokantapalvelin", "Finish setup" => "Viimeistele asennus", "web services under your control" => "verkkopalvelut hallinnassasi", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index eafdcc37370..0959e0ed25f 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -3,6 +3,24 @@ "No category to add?" => "Keng Kategorie fir bäizesetzen?", "This category already exists: " => "Des Kategorie existéiert schonn:", "Settings" => "Astellungen", +"January" => "Januar", +"February" => "Februar", +"March" => "Mäerz", +"April" => "Abrëll", +"May" => "Mee", +"June" => "Juni", +"July" => "Juli", +"August" => "August", +"September" => "September", +"October" => "Oktober", +"November" => "November", +"December" => "Dezember", +"Cancel" => "Ofbriechen", +"No" => "Nee", +"Yes" => "Jo", +"Ok" => "OK", +"No categories selected for deletion." => "Keng Kategorien ausgewielt fir ze läschen.", +"Error" => "Fehler", "ownCloud password reset" => "ownCloud Passwuert reset", "Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert ze reseten: {link}", "You will receive a link to reset your password via Email." => "Du kriss en Link fir däin Passwuert nei ze setzen via Email geschéckt.", @@ -25,13 +43,14 @@ "Add" => "Bäisetzen", "Create an admin account" => "En Admin Account uleeën", "Password" => "Passwuert", -"Advanced" => "Erweidert", +"Advanced" => "Advanced", "Data folder" => "Daten Dossier", "Configure the database" => "Datebank konfiguréieren", "will be used" => "wärt benotzt ginn", "Database user" => "Datebank Benotzer", "Database password" => "Datebank Passwuert", "Database name" => "Datebank Numm", +"Database tablespace" => "Datebank Tabelle-Gréisst", "Database host" => "Datebank Server", "Finish setup" => "Installatioun ofschléissen", "web services under your control" => "Web Servicer ënnert denger Kontroll", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 4eb5f1f9ae9..2751b851524 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -51,6 +51,7 @@ "Database user" => "Użytkownik bazy danych", "Database password" => "Hasło do bazy danych", "Database name" => "Nazwa bazy danych", +"Database tablespace" => "Obszar tabel bazy danych", "Database host" => "Komputer bazy danych", "Finish setup" => "Zakończ konfigurowanie", "web services under your control" => "usługi internetowe pod kontrolą", diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index ae5ccd77e07..12b6059c7b6 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 10:13+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -24,11 +24,11 @@ msgstr "Expira totes les versions" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versions" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 2b24de63524..e43b91310b5 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 10:11+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: app.php:288 msgid "Help" @@ -70,57 +70,57 @@ msgstr "Error d'autenticació" msgid "Token expired. Please reload page." msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "segons enrere" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "fa 1 minut" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "fa %d minuts" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "avui" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "ahir" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "fa %d dies" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "el mes passat" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "mesos enrere" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "l'any passat" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "fa anys" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s està disponible. Obtén més informació" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "actualitzat" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "la comprovació d'actualitzacions està desactivada" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 7e9e39e072f..e15a614d689 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 10:06+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" @@ -78,7 +78,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess que ownCloud proporciona no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web." #: templates/admin.php:31 msgid "Cron" @@ -148,7 +148,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Desenvolupat per la comunitat ownCloud, el codi font té llicència AGPL." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 030414a8b3b..be7300b0457 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -5,7 +5,7 @@ # Translators: # , 2012. # Javier Llorente , 2012. -# , 2011, 2012. +# , 2011-2012. # , 2011. # oSiNaReF <>, 2012. # , 2012. @@ -16,15 +16,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 18:24+0000\n" -"Last-Translator: Rubén Trujillo \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 04:35+0000\n" +"Last-Translator: juanman \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" @@ -85,7 +85,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web." #: templates/admin.php:31 msgid "Cron" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index e87843eac9c..fdf3b2be402 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -4,21 +4,23 @@ # # Translators: # Javier Llorente , 2012. +# , 2012. +# Raul Fernandez Garcia , 2012. # Rubén Trujillo , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 23:04+0000\n" -"Last-Translator: Rubén Trujillo \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 14:15+0000\n" +"Last-Translator: Raul Fernandez Garcia \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:8 msgid "Host" @@ -58,19 +60,19 @@ msgstr "Para acceso anónimo, deje DN y contraseña vacíos." #: templates/settings.php:12 msgid "User Login Filter" -msgstr "" +msgstr "Filtro de inicio de sesión de usuario" #: templates/settings.php:12 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazrá el nombre de usuario en el proceso de login." #: templates/settings.php:12 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "usar %%uid como placeholder, ej: \"uid=%%uid\"" #: templates/settings.php:13 msgid "User List Filter" @@ -82,7 +84,7 @@ msgstr "Define el filtro a aplicar, cuando se obtienen usuarios." #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "Sin placeholder, ej: \"objectClass=person\"." #: templates/settings.php:14 msgid "Group Filter" @@ -94,7 +96,7 @@ msgstr "Define el filtro a aplicar, cuando se obtienen grupos." #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "Con cualquier placeholder, ej: \"objectClass=posixGroup\"." #: templates/settings.php:17 msgid "Port" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index a519a3b4f4b..162fca43720 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 13:00+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -32,8 +32,8 @@ msgstr "Deskargatu" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Ez dago aurrebista eskuragarririk hauentzat " -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 357b26164df..0f7610079ce 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 12:58+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -24,11 +24,11 @@ msgstr "Iraungi bertsio guztiak" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Bertsioak" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Honek zure fitxategien bertsio guztiak ezabatuko ditu" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index c083e4f8654..1fd4db54aa2 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 13:06+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: app.php:288 msgid "Help" @@ -70,57 +70,57 @@ msgstr "Autentikazio errorea" msgid "Token expired. Please reload page." msgstr "Tokena iraungitu da. Mesedez birkargatu orria." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "orain dela segundu batzuk" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "orain dela %d minutu" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "gaur" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "atzo" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "orain dela %d egun" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "joan den hilabetea" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "orain dela hilabete batzuk" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "joan den urtea" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "orain dela urte batzuk" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s eskuragarri dago. Lortu informazio gehiago" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "eguneratuta" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "eguneraketen egiaztapena ez dago gaituta" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index f069773c1d7..b22e432ec73 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 13:05+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" @@ -79,7 +79,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea." #: templates/admin.php:31 msgid "Cron" @@ -99,39 +99,39 @@ msgstr "erabili sistemaren cron zerbitzua" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Partekatze APIa" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Gaitu Partekatze APIa" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Baimendu aplikazioak Partekatze APIa erabiltzeko" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Baimendu loturak" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki partekatzen" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Baimendu birpartekatzea" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Baimendu erabiltzaileak haiekin partekatutako fitxategiak berriz ere partekatzen" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Baimendu erabiltzaileak edonorekin partekatzen" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin partekatzen" #: templates/admin.php:69 msgid "Log" @@ -149,7 +149,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "ownCloud komunitateak garatuta, itubruru kodeaAGPL lizentziarekin banatzen da." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 6ad322c5cc7..7506e66bc4e 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -7,20 +7,21 @@ # Jiri Grönroos , 2012. # Johannes Korpela <>, 2012. # Pekka Sutela , 2012. +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 16:24+0000\n" +"Last-Translator: teho \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -36,7 +37,7 @@ msgstr "Tämä luokka on jo olemassa: " #: js/jquery-ui-1.8.16.custom.min.js:511 msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" +msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" #: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" @@ -234,7 +235,7 @@ msgstr "Tietokannan nimi" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Tietokannan taulukkotila" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index d9cca99c90c..4bac70c1c2b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -6,20 +6,21 @@ # Jesse Jaara , 2012. # Jiri Grönroos , 2012. # Johannes Korpela <>, 2012. +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 10:00+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 16:25+0000\n" +"Last-Translator: teho \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -224,4 +225,4 @@ msgstr "Tiedostoja tarkistetaan, odota hetki." #: templates/index.php:74 msgid "Current scanning" -msgstr "" +msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 252458e4cb1..f55a4520322 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -4,19 +4,20 @@ # # Translators: # Jiri Grönroos , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 15:46+0000\n" +"Last-Translator: teho \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -32,8 +33,8 @@ msgstr "Lataa" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Ei esikatselua kohteelle" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index b2d28143e9d..528da08db5c 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -5,23 +5,24 @@ # Translators: # Jesse Jaara , 2012. # Jiri Grönroos , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:05+0200\n" -"PO-Revision-Date: 2012-09-02 15:47+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 16:42+0000\n" +"Last-Translator: teho \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -78,7 +79,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta." #: templates/admin.php:31 msgid "Cron" @@ -86,11 +87,11 @@ msgstr "Cron" #: templates/admin.php:33 msgid "execute one task with each page loaded" -msgstr "" +msgstr "suorita yksi tehtävä jokaisella ladatulla sivulla" #: templates/admin.php:35 msgid "cron.php is registered at a webcron service" -msgstr "" +msgstr "cron.php on rekisteröity webcron-palvelulla" #: templates/admin.php:37 msgid "use systems cron service" @@ -98,15 +99,15 @@ msgstr "käytä järjestelmän cron-palvelua" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Jaon ohelmointirajapinta (Share API)" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Ota käyttöön jaon ohjelmoitirajapinta (Share API)" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)" #: templates/admin.php:51 msgid "Allow links" @@ -122,7 +123,7 @@ msgstr "Salli uudelleenjako" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Salli käyttäjien jakaa heille itselleen jaettuja tietoja edelleen" #: templates/admin.php:60 msgid "Allow users to share with anyone" @@ -284,7 +285,7 @@ msgstr "Muu" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Ryhmän ylläpitäjä" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index bed89934fbc..a2dc0289007 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 15:56+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -24,11 +24,11 @@ msgstr "すべてのバージョンを削除する" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "バージョン" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "これは、あなたのファイルのすべてのバックアップバージョンを削除します" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index a2197a29945..d9b410fa885 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 15:55+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: app.php:288 msgid "Help" @@ -70,57 +70,57 @@ msgstr "認証エラー" msgid "Token expired. Please reload page." msgstr "トークンが無効になりました。ページを再読込してください。" -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "秒前" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "1分前" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "%d 分前" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "今日" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "昨日" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "%d 日前" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "先月" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "月前" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "昨年" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "年前" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s が利用可能です。詳細情報 を確認ください" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "最新です" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "更新チェックは無効です" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index fbc1cddc1c7..a9de0752461 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011, 2012. +# , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 21:47+0000\n" +"Last-Translator: sim0n \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -40,75 +40,75 @@ msgstr "Astellungen" #: js/js.js:591 msgid "January" -msgstr "" +msgstr "Januar" #: js/js.js:591 msgid "February" -msgstr "" +msgstr "Februar" #: js/js.js:591 msgid "March" -msgstr "" +msgstr "Mäerz" #: js/js.js:591 msgid "April" -msgstr "" +msgstr "Abrëll" #: js/js.js:591 msgid "May" -msgstr "" +msgstr "Mee" #: js/js.js:591 msgid "June" -msgstr "" +msgstr "Juni" #: js/js.js:592 msgid "July" -msgstr "" +msgstr "Juli" #: js/js.js:592 msgid "August" -msgstr "" +msgstr "August" #: js/js.js:592 msgid "September" -msgstr "" +msgstr "September" #: js/js.js:592 msgid "October" -msgstr "" +msgstr "Oktober" #: js/js.js:592 msgid "November" -msgstr "" +msgstr "November" #: js/js.js:592 msgid "December" -msgstr "" +msgstr "Dezember" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Ofbriechen" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Nee" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Jo" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "OK" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Keng Kategorien ausgewielt fir ze läschen." #: js/oc-vcategories.js:68 msgid "Error" -msgstr "" +msgstr "Fehler" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -201,7 +201,7 @@ msgstr "Passwuert" #: templates/installation.php:36 msgid "Advanced" -msgstr "Erweidert" +msgstr "Advanced" #: templates/installation.php:38 msgid "Data folder" @@ -230,7 +230,7 @@ msgstr "Datebank Numm" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Datebank Tabelle-Gréisst" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index ae57349ec9e..45773897b67 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011, 2012. +# , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 21:52+0000\n" +"Last-Translator: sim0n \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -58,43 +58,43 @@ msgstr "Läschen" #: js/filelist.js:141 msgid "already exists" -msgstr "" +msgstr "existéiert schonn" #: js/filelist.js:141 msgid "replace" -msgstr "" +msgstr "ersetzen" #: js/filelist.js:141 msgid "cancel" -msgstr "" +msgstr "ofbriechen" #: js/filelist.js:195 msgid "replaced" -msgstr "" +msgstr "ersat" #: js/filelist.js:195 msgid "with" -msgstr "" +msgstr "mat" #: js/filelist.js:195 js/filelist.js:246 msgid "undo" -msgstr "" +msgstr "réckgängeg man" #: js/filelist.js:246 msgid "deleted" -msgstr "" +msgstr "geläscht" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass." #: js/files.js:208 msgid "Upload Error" -msgstr "" +msgstr "Fehler beim eroplueden" #: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" @@ -102,16 +102,16 @@ msgstr "" #: js/files.js:341 msgid "Upload cancelled." -msgstr "" +msgstr "Upload ofgebrach." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Ongültege Numm, '/' net erlaabt." #: js/files.js:726 templates/index.php:55 msgid "Size" @@ -123,19 +123,19 @@ msgstr "Geännert" #: js/files.js:754 msgid "folder" -msgstr "" +msgstr "Dossier" #: js/files.js:756 msgid "folders" -msgstr "" +msgstr "Dossieren" #: js/files.js:764 msgid "file" -msgstr "" +msgstr "Datei" #: js/files.js:766 msgid "files" -msgstr "" +msgstr "Dateien" #: templates/admin.php:5 msgid "File handling" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 46b0f23beb3..ce3cde89a09 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -3,32 +3,32 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011, 2012. +# , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 21:57+0000\n" +"Last-Translator: sim0n \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Konnt Lescht net vum App Store lueden" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "E-mail gespäichert" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Ongülteg e-mail" #: ajax/openid.php:16 msgid "OpenID Changed" @@ -40,7 +40,7 @@ msgstr "Ongülteg Requête" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Authentifikatioun's Fehler" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -48,19 +48,19 @@ msgstr "Sprooch huet geännert" #: js/apps.js:18 msgid "Error" -msgstr "" +msgstr "Fehler" #: js/apps.js:39 js/apps.js:73 msgid "Disable" -msgstr "" +msgstr "Ofschalten" #: js/apps.js:39 js/apps.js:62 msgid "Enable" -msgstr "" +msgstr "Aschalten" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Speicheren..." #: personal.php:46 personal.php:47 msgid "__language_name__" @@ -68,7 +68,7 @@ msgstr "__language_name__" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "Sécherheets Warnung" #: templates/admin.php:17 msgid "" @@ -81,7 +81,7 @@ msgstr "" #: templates/admin.php:31 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:33 msgid "execute one task with each page loaded" @@ -89,27 +89,27 @@ msgstr "" #: templates/admin.php:35 msgid "cron.php is registered at a webcron service" -msgstr "" +msgstr "cron.php ass als en webcron Service registréiert" #: templates/admin.php:37 msgid "use systems cron service" -msgstr "" +msgstr "benotz den systems cron Service" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Share API" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Share API aschalten" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Erlab Apps d'Share API ze benotzen" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Links erlaben" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" @@ -117,7 +117,7 @@ msgstr "" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Resharing erlaben" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" @@ -125,11 +125,11 @@ msgstr "" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Useren erlaben mat egal wiem ze sharen" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" #: templates/admin.php:69 msgid "Log" @@ -159,7 +159,7 @@ msgstr "Wiel eng Applikatioun aus" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un" #: templates/apps.php:30 msgid "-licensed" @@ -283,7 +283,7 @@ msgstr "Aner" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Gruppen Admin" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 39c80a75e61..3889b13622d 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 06:40+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -235,7 +235,7 @@ msgstr "Nazwa bazy danych" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Obszar tabel bazy danych" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 652fd350165..02f24afbe72 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 06:33+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -110,7 +110,7 @@ msgstr "Wczytywanie anulowane." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 0cb14cf441b..fee8ef8b65a 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 07:03+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 msgid "Password" @@ -33,8 +33,8 @@ msgstr "Pobierz" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Podgląd nie jest dostępny dla" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" msgstr "Kontrolowane serwisy" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index 9db71f8d1a4..ea579c0b6a4 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 06:57+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -24,11 +24,11 @@ msgstr "Wygasają wszystkie wersje" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Wersje" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index cea78bc05fa..09263ad142c 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 07:02+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: app.php:288 msgid "Help" @@ -70,57 +70,57 @@ msgstr "Błąd uwierzytelniania" msgid "Token expired. Please reload page." msgstr "Token wygasł. Proszę ponownie załadować stronę." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "sekund temu" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "1 minutę temu" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "%d minut temu" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "dzisiaj" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "wczoraj" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "%d dni temu" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "ostatni miesiąc" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "miesięcy temu" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "ostatni rok" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "lat temu" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s jest dostępna. Uzyskaj więcej informacji" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "Aktualne" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "wybór aktualizacji jest wyłączony" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 8afec9db2af..3eb675060a7 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -14,15 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 07:00+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" @@ -103,19 +103,19 @@ msgstr "korzystaj z usługi systemowej cron" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Udostępnij API" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Włącz udostępniane API" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Zezwalaj aplikacjom na używanie API" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Zezwalaj na łącza" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" @@ -123,7 +123,7 @@ msgstr "" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Zezwól na ponowne udostępnianie" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 2ab352a0a8d..136685c098f 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 66d9dbcd1b9..2c15a9049b4 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 5b047fcf46d..7346533735d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 3f295496fd3..a4d2244600e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index d386ad1e35f..cffd3fd5052 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,6 +33,6 @@ msgstr "" msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 72af58b8b55..88f3182b3e8 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 3c27e4b0f88..82b69d86b88 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -69,45 +69,45 @@ msgstr "" msgid "Token expired. Please reload page." msgstr "" -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index dcdeac2fdc9..35a5a06eca4 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index a8e7af24122..8a2113c6e11 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 8e4c30caec9..031207227ec 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -21,5 +21,8 @@ "last month" => "el mes passat", "months ago" => "mesos enrere", "last year" => "l'any passat", -"years ago" => "fa anys" +"years ago" => "fa anys", +"%s is available. Get more information" => "%s està disponible. Obtén més informació", +"up to date" => "actualitzat", +"updates check is disabled" => "la comprovació d'actualitzacions està desactivada" ); diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 989b3694136..461bf458778 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -21,5 +21,8 @@ "last month" => "joan den hilabetea", "months ago" => "orain dela hilabete batzuk", "last year" => "joan den urtea", -"years ago" => "orain dela urte batzuk" +"years ago" => "orain dela urte batzuk", +"%s is available. Get more information" => "%s eskuragarri dago. Lortu informazio gehiago", +"up to date" => "eguneratuta", +"updates check is disabled" => "eguneraketen egiaztapena ez dago gaituta" ); diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 3552a525c99..10f7276703a 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -21,5 +21,8 @@ "last month" => "先月", "months ago" => "月前", "last year" => "昨年", -"years ago" => "年前" +"years ago" => "年前", +"%s is available. Get more information" => "%s が利用可能です。詳細情報 を確認ください", +"up to date" => "最新です", +"updates check is disabled" => "更新チェックは無効です" ); diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index 169462fabb7..087aaa227d3 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -21,5 +21,8 @@ "last month" => "ostatni miesiąc", "months ago" => "miesięcy temu", "last year" => "ostatni rok", -"years ago" => "lat temu" +"years ago" => "lat temu", +"%s is available. Get more information" => "%s jest dostępna. Uzyskaj więcej informacji", +"up to date" => "Aktualne", +"updates check is disabled" => "wybór aktualizacji jest wyłączony" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 29cad92715d..6d9a043bc2e 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -12,6 +12,7 @@ "Saving..." => "S'està desant...", "__language_name__" => "Català", "Security Warning" => "Avís de seguretat", +"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." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess que ownCloud proporciona no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", "Cron" => "Cron", "execute one task with each page loaded" => "executa una tasca en carregar cada pàgina", "cron.php is registered at a webcron service" => "cron.php està registrat en un servei web cron", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb usuaris del seu grup", "Log" => "Registre", "More" => "Més", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolupat per la comunitat ownCloud, el codi font té llicència AGPL.", "Add your App" => "Afegiu la vostra aplicació", "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index be496cd9647..54a42eaad27 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -12,6 +12,7 @@ "Saving..." => "Guardando...", "__language_name__" => "Castellano", "Security Warning" => "Advertencia de seguridad", +"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." => "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web.", "Cron" => "Cron", "execute one task with each page loaded" => "ejecutar una tarea con cada página cargada", "cron.php is registered at a webcron service" => "cron.php se registra en un servicio webcron", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index d5dcf396add..61ccec9da85 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -12,12 +12,23 @@ "Saving..." => "Gordetzen...", "__language_name__" => "Euskera", "Security Warning" => "Segurtasun abisua", +"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." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "Cron" => "Cron", "execute one task with each page loaded" => "exekutatu zeregina orri karga bakoitzean", "cron.php is registered at a webcron service" => "cron.php webcron zerbitzu batean erregistratuta dago", "use systems cron service" => "erabili sistemaren cron zerbitzua", +"Share API" => "Partekatze APIa", +"Enable Share API" => "Gaitu Partekatze APIa", +"Allow apps to use the Share API" => "Baimendu aplikazioak Partekatze APIa erabiltzeko", +"Allow links" => "Baimendu loturak", +"Allow users to share items to the public with links" => "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki partekatzen", +"Allow resharing" => "Baimendu birpartekatzea", +"Allow users to share items shared with them again" => "Baimendu erabiltzaileak haiekin partekatutako fitxategiak berriz ere partekatzen", +"Allow users to share with anyone" => "Baimendu erabiltzaileak edonorekin partekatzen", +"Allow users to only share with users in their groups" => "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin partekatzen", "Log" => "Egunkaria", "More" => "Gehiago", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud komunitateak garatuta, itubruru kodeaAGPL lizentziarekin banatzen da.", "Add your App" => "Gehitu zure aplikazioa", "Select an App" => "Aukeratu programa bat", "See application page at apps.owncloud.com" => "Ikusi programen orria apps.owncloud.com en", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 0ca490d8d51..0bca3719838 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,4 +1,5 @@ "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", "OpenID Changed" => "OpenID on vaihdettu", @@ -11,11 +12,18 @@ "Saving..." => "Tallennetaan...", "__language_name__" => "_kielen_nimi_", "Security Warning" => "Turvallisuusvaroitus", +"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-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta.", "Cron" => "Cron", +"execute one task with each page loaded" => "suorita yksi tehtävä jokaisella ladatulla sivulla", +"cron.php is registered at a webcron service" => "cron.php on rekisteröity webcron-palvelulla", "use systems cron service" => "käytä järjestelmän cron-palvelua", +"Share API" => "Jaon ohelmointirajapinta (Share API)", +"Enable Share API" => "Ota käyttöön jaon ohjelmoitirajapinta (Share API)", +"Allow apps to use the Share API" => "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)", "Allow links" => "Salli linkit", "Allow users to share items to the public with links" => "Salli käyttäjien jakaa kohteita julkisesti linkkejä käyttäen", "Allow resharing" => "Salli uudelleenjako", +"Allow users to share items shared with them again" => "Salli käyttäjien jakaa heille itselleen jaettuja tietoja edelleen", "Allow users to share with anyone" => "Salli käyttäjien jakaa kohteita kenen tahansa kanssa", "Allow users to only share with users in their groups" => "Salli käyttäjien jakaa kohteita vain omien ryhmien jäsenten kesken", "Log" => "Loki", @@ -54,6 +62,7 @@ "Create" => "Luo", "Default Quota" => "Oletuskiintiö", "Other" => "Muu", +"Group Admin" => "Ryhmän ylläpitäjä", "Quota" => "Kiintiö", "Delete" => "Poista" ); diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 29072720a02..b419cb9278a 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -1,12 +1,32 @@ "Konnt Lescht net vum App Store lueden", +"Email saved" => "E-mail gespäichert", +"Invalid email" => "Ongülteg e-mail", "OpenID Changed" => "OpenID huet geännert", "Invalid request" => "Ongülteg Requête", +"Authentication error" => "Authentifikatioun's Fehler", "Language changed" => "Sprooch huet geännert", +"Error" => "Fehler", +"Disable" => "Ofschalten", +"Enable" => "Aschalten", +"Saving..." => "Speicheren...", "__language_name__" => "__language_name__", +"Security Warning" => "Sécherheets Warnung", +"Cron" => "Cron", +"cron.php is registered at a webcron service" => "cron.php ass als en webcron Service registréiert", +"use systems cron service" => "benotz den systems cron Service", +"Share API" => "Share API", +"Enable Share API" => "Share API aschalten", +"Allow apps to use the Share API" => "Erlab Apps d'Share API ze benotzen", +"Allow links" => "Links erlaben", +"Allow resharing" => "Resharing erlaben", +"Allow users to share with anyone" => "Useren erlaben mat egal wiem ze sharen", +"Allow users to only share with users in their groups" => "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen", "Log" => "Log", "More" => "Méi", "Add your App" => "Setz deng App bei", "Select an App" => "Wiel eng Applikatioun aus", +"See application page at apps.owncloud.com" => "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un", "-licensed" => "-Lizenséiert", "by" => "vun", "Documentation" => "Dokumentatioun", @@ -37,6 +57,7 @@ "Create" => "Erstellen", "Default Quota" => "Standard Quota", "Other" => "Aner", +"Group Admin" => "Gruppen Admin", "Quota" => "Quota", "Delete" => "Läschen" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index de9384a2440..d331f2e1472 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -16,6 +16,11 @@ "execute one task with each page loaded" => "wykonanie jednego zadania z każdej załadowanej strony", "cron.php is registered at a webcron service" => "cron.php jest zarejestrowany w usłudze webcron", "use systems cron service" => "korzystaj z usługi systemowej cron", +"Share API" => "Udostępnij API", +"Enable Share API" => "Włącz udostępniane API", +"Allow apps to use the Share API" => "Zezwalaj aplikacjom na używanie API", +"Allow links" => "Zezwalaj na łącza", +"Allow resharing" => "Zezwól na ponowne udostępnianie", "Log" => "Log", "More" => "Więcej", "Add your App" => "Dodaj aplikacje", -- cgit v1.2.3 From 9760b5e1531fd48a5744750e5eeec1d448b305f4 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 4 Sep 2012 13:32:27 +0300 Subject: Respect coding style --- lib/app.php | 100 ++++++++++++++++++++++++++++++------------------------------ 1 file changed, 50 insertions(+), 50 deletions(-) (limited to 'lib') diff --git a/lib/app.php b/lib/app.php index 261f0793994..154b1a964e7 100755 --- a/lib/app.php +++ b/lib/app.php @@ -54,14 +54,14 @@ class OC_App{ // prevent app.php from printing output ob_start(); foreach( $apps as $app ){ - if((is_null($types) or self::isType($app,$types)) && !in_array($app, self::$loadedApps)){ + if((is_null($types) or self::isType($app, $types)) && !in_array($app, self::$loadedApps)) { self::loadApp($app); self::$loadedApps[] = $app; } } ob_end_clean(); - if (!defined('DEBUG') || !DEBUG){ + if (!defined('DEBUG') || !DEBUG) { if (is_null($types)) { OC_Util::$core_scripts = OC_Util::$scripts; OC_Util::$scripts = array(); @@ -82,10 +82,10 @@ class OC_App{ * load a single app * @param string app */ - public static function loadApp($app){ + public static function loadApp($app) { if(is_file(self::getAppPath($app).'/appinfo/app.php')){ self::checkUpgrade($app); - require_once( $app.'/appinfo/app.php' ); + require_once $app.'/appinfo/app.php'; } } @@ -95,12 +95,12 @@ class OC_App{ * @param string/array $types */ public static function isType($app,$types){ - if(is_string($types)){ + if(is_string($types)) { $types=array($types); } $appTypes=self::getAppTypes($app); foreach($types as $type){ - if(array_search($type,$appTypes)!==false){ + if(array_search($type, $appTypes)!==false) { return true; } } @@ -114,12 +114,12 @@ class OC_App{ */ private static function getAppTypes($app){ //load the cache - if(count(self::$appTypes)==0){ - self::$appTypes=OC_Appconfig::getValues(false,'types'); + if(count(self::$appTypes)==0) { + self::$appTypes=OC_Appconfig::getValues(false, 'types'); } - if(isset(self::$appTypes[$app])){ - return explode(',',self::$appTypes[$app]); + if(isset(self::$appTypes[$app])) { + return explode(',', self::$appTypes[$app]); }else{ return array(); } @@ -131,13 +131,13 @@ class OC_App{ public static function setAppTypes($app){ $appData=self::getAppInfo($app); - if(isset($appData['types'])){ - $appTypes=implode(',',$appData['types']); + if(isset($appData['types'])) { + $appTypes=implode(',', $appData['types']); }else{ $appTypes=''; } - OC_Appconfig::setValue($app,'types',$appTypes); + OC_Appconfig::setValue($app, 'types', $appTypes); } /** @@ -150,7 +150,7 @@ class OC_App{ $query = OC_DB::prepare( 'SELECT `appid` FROM `*PREFIX*appconfig` WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\'' ); $result=$query->execute(); while($row=$result->fetchRow()){ - if(array_search($row['appid'],$apps)===false){ + if(array_search($row['appid'], $apps)===false) { $apps[]=$row['appid']; } } @@ -165,7 +165,7 @@ class OC_App{ * This function checks whether or not an app is enabled. */ public static function isEnabled( $app ){ - if( 'files'==$app or 'yes' == OC_Appconfig::getValue( $app, 'enabled' )){ + if( 'files'==$app or 'yes' == OC_Appconfig::getValue( $app, 'enabled' )) { return true; } @@ -180,23 +180,23 @@ class OC_App{ * This function set an app as enabled in appconfig. */ public static function enable( $app ){ - if(!OC_Installer::isInstalled($app)){ + if(!OC_Installer::isInstalled($app)) { // check if app is a shipped app or not. OCS apps have an integer as id, shipped apps use a string - if(!is_numeric($app)){ + if(!is_numeric($app)) { $app = OC_Installer::installShippedApp($app); }else{ - $download=OC_OCSClient::getApplicationDownload($app,1); + $download=OC_OCSClient::getApplicationDownload($app, 1); if(isset($download['downloadlink']) and $download['downloadlink']!='') { $app=OC_Installer::installApp(array('source'=>'http','href'=>$download['downloadlink'])); } } } - if($app!==false){ + if($app!==false) { // check if the app is compatible with this version of ownCloud $info=OC_App::getAppInfo($app); $version=OC_Util::getVersion(); - if(!isset($info['require']) or ($version[0]>$info['require'])){ - OC_Log::write('core','App "'.$info['name'].'" can\'t be installed because it is not compatible with this version of ownCloud',OC_Log::ERROR); + if(!isset($info['require']) or ($version[0]>$info['require'])) { + OC_Log::write('core', 'App "'.$info['name'].'" can\'t be installed because it is not compatible with this version of ownCloud', OC_Log::ERROR); return false; }else{ OC_Appconfig::setValue( $app, 'enabled', 'yes' ); @@ -239,7 +239,7 @@ class OC_App{ */ public static function addNavigationEntry( $data ){ $data['active']=false; - if(!isset($data['icon'])){ + if(!isset($data['icon'])) { $data['icon']=''; } OC_App::$navigation[] = $data; @@ -283,7 +283,7 @@ class OC_App{ $settings = array(); // by default, settings only contain the help menu - if(OC_Config::getValue('knowledgebaseenabled', true)==true){ + if(OC_Config::getValue('knowledgebaseenabled', true)==true) { $settings = array( array( "id" => "help", "order" => 1000, "href" => OC_Helper::linkTo( "settings", "help.php" ), "name" => $l->t("Help"), "icon" => OC_Helper::imagePath( "settings", "help.svg" )) ); @@ -300,7 +300,7 @@ class OC_App{ $settings[]=array( "id" => "settings", "order" => 1000, "href" => OC_Helper::linkTo( "settings", "settings.php" ), "name" => $l->t("Settings"), "icon" => OC_Helper::imagePath( "settings", "settings.svg" )); //SubAdmins are also allowed to access user management - if(OC_SubAdmin::isSubAdmin($_SESSION["user_id"]) || OC_Group::inGroup( $_SESSION["user_id"], "admin" )){ + if(OC_SubAdmin::isSubAdmin($_SESSION["user_id"]) || OC_Group::inGroup( $_SESSION["user_id"], "admin" )) { // admin users menu $settings[] = array( "id" => "core_users", "order" => 2, "href" => OC_Helper::linkTo( "settings", "users.php" ), "name" => $l->t("Users"), "icon" => OC_Helper::imagePath( "settings", "users.svg" )); } @@ -323,7 +323,7 @@ class OC_App{ private static function proceedNavigation( $list ){ foreach( $list as &$naventry ){ $naventry['subnavigation'] = array(); - if( $naventry['id'] == self::$activeapp ){ + if( $naventry['id'] == self::$activeapp ) { $naventry['active'] = true; } else{ @@ -349,7 +349,7 @@ class OC_App{ return $dir['path']; } - OC_Log::write('core','No application directories are marked as writable.',OC_Log::ERROR); + OC_Log::write('core', 'No application directories are marked as writable.', OC_Log::ERROR); return null; } @@ -391,7 +391,7 @@ class OC_App{ public static function getAppVersion($appid){ $file= self::getAppPath($appid).'/appinfo/version'; $version=@file_get_contents($file); - if($version){ + if($version) { return trim($version); }else{ $appData=self::getAppInfo($appid); @@ -406,17 +406,17 @@ class OC_App{ * @returns array */ public static function getAppInfo($appid,$path=false){ - if($path){ + if($path) { $file=$appid; }else{ - if(isset(self::$appInfo[$appid])){ + if(isset(self::$appInfo[$appid])) { return self::$appInfo[$appid]; } $file= self::getAppPath($appid).'/appinfo/info.xml'; } $data=array(); $content=@file_get_contents($file); - if(!$content){ + if(!$content) { return; } $xml = new SimpleXMLElement($content); @@ -424,22 +424,22 @@ class OC_App{ $data['remote']=array(); $data['public']=array(); foreach($xml->children() as $child){ - if($child->getName()=='remote'){ + if($child->getName()=='remote') { foreach($child->children() as $remote){ $data['remote'][$remote->getName()]=(string)$remote; } - }elseif($child->getName()=='public'){ + }elseif($child->getName()=='public') { foreach($child->children() as $public){ $data['public'][$public->getName()]=(string)$public; } - }elseif($child->getName()=='types'){ + }elseif($child->getName()=='types') { $data['types']=array(); foreach($child->children() as $type){ $data['types'][]=$type->getName(); } - }elseif($child->getName()=='description'){ + }elseif($child->getName()=='description') { $xml=(string)$child->asXML(); - $data[$child->getName()]=substr($xml,13,-14);//script tags + $data[$child->getName()]=substr($xml, 13, -14);//script tags }else{ $data[$child->getName()]=(string)$child; } @@ -469,11 +469,11 @@ class OC_App{ * @return string */ public static function getCurrentApp(){ - $script=substr($_SERVER["SCRIPT_NAME"],strlen(OC::$WEBROOT)+1); - $topFolder=substr($script,0,strpos($script,'/')); - if($topFolder=='apps'){ + $script=substr($_SERVER["SCRIPT_NAME"], strlen(OC::$WEBROOT)+1); + $topFolder=substr($script, 0, strpos($script, '/')); + if($topFolder=='apps') { $length=strlen($topFolder); - return substr($script,$length+1,strpos($script,'/',$length+1)-$length-1); + return substr($script, $length+1, strpos($script, '/', $length+1)-$length-1); }else{ return $topFolder; } @@ -531,7 +531,7 @@ class OC_App{ foreach(OC::$APPSROOTS as $apps_dir) { $dh=opendir($apps_dir['path']); while($file=readdir($dh)){ - if($file[0]!='.' and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php')){ + if($file[0]!='.' and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php')) { $apps[]=$file; } } @@ -552,7 +552,7 @@ class OC_App{ if ($currentVersion) { $installedVersion = $versions[$app]; if (version_compare($currentVersion, $installedVersion, '>')) { - OC_Log::write($app, 'starting app upgrade from '.$installedVersion.' to '.$currentVersion,OC_Log::DEBUG); + OC_Log::write($app, 'starting app upgrade from '.$installedVersion.' to '.$currentVersion, OC_Log::DEBUG); OC_App::updateApp($app); OC_Appconfig::setValue($app, 'installed_version', OC_App::getAppVersion($app)); } @@ -573,8 +573,8 @@ class OC_App{ foreach($apps as $app) { // check if the app is compatible with this version of ownCloud $info = OC_App::getAppInfo($app); - if(!isset($info['require']) or ($version[0]>$info['require'])){ - OC_Log::write('core','App "'.$info['name'].'" ('.$app.') can\'t be used because it is not compatible with this version of ownCloud',OC_Log::ERROR); + if(!isset($info['require']) or ($version[0]>$info['require'])) { + OC_Log::write('core', 'App "'.$info['name'].'" ('.$app.') can\'t be used because it is not compatible with this version of ownCloud', OC_Log::ERROR); OC_App::disable( $app ); } } @@ -602,13 +602,13 @@ class OC_App{ * @param string appid */ public static function updateApp($appid){ - if(file_exists(self::getAppPath($appid).'/appinfo/database.xml')){ + if(file_exists(self::getAppPath($appid).'/appinfo/database.xml')) { OC_DB::updateDbFromStructure(self::getAppPath($appid).'/appinfo/database.xml'); } - if(!self::isEnabled($appid)){ + if(!self::isEnabled($appid)) { return; } - if(file_exists(self::getAppPath($appid).'/appinfo/update.php')){ + if(file_exists(self::getAppPath($appid).'/appinfo/update.php')) { self::loadApp($appid); include self::getAppPath($appid).'/appinfo/update.php'; } @@ -630,19 +630,19 @@ class OC_App{ * @return OC_FilesystemView */ public static function getStorage($appid){ - if(OC_App::isEnabled($appid)){//sanity check - if(OC_User::isLoggedIn()){ + if(OC_App::isEnabled($appid)) {//sanity check + if(OC_User::isLoggedIn()) { $view = new OC_FilesystemView('/'.OC_User::getUser()); if(!$view->file_exists($appid)) { $view->mkdir($appid); } return new OC_FilesystemView('/'.OC_User::getUser().'/'.$appid); }else{ - OC_Log::write('core','Can\'t get app storage, app, user not logged in',OC_Log::ERROR); + OC_Log::write('core', 'Can\'t get app storage, app, user not logged in', OC_Log::ERROR); return false; } }else{ - OC_Log::write('core','Can\'t get app storage, app '.$appid.' not enabled',OC_Log::ERROR); + OC_Log::write('core', 'Can\'t get app storage, app '.$appid.' not enabled', OC_Log::ERROR); false; } } -- cgit v1.2.3 From d14f8fa681aa820334fcb1747cc171275c84a72d Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 4 Sep 2012 15:21:52 +0300 Subject: Respect coding style --- lib/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/app.php b/lib/app.php index 154b1a964e7..e772704b7d2 100755 --- a/lib/app.php +++ b/lib/app.php @@ -83,7 +83,7 @@ class OC_App{ * @param string app */ public static function loadApp($app) { - if(is_file(self::getAppPath($app).'/appinfo/app.php')){ + if(is_file(self::getAppPath($app).'/appinfo/app.php')) { self::checkUpgrade($app); require_once $app.'/appinfo/app.php'; } -- cgit v1.2.3 From e4e0b5a82217be7a86d47db1b5fd0de545a6fbb2 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 4 Sep 2012 15:34:09 +0300 Subject: Respect coding style --- lib/base.php | 165 +++++++++++++++++++++++++++++------------------------------ 1 file changed, 82 insertions(+), 83 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 1875edb5000..20f5fca2041 100644 --- a/lib/base.php +++ b/lib/base.php @@ -70,32 +70,32 @@ class OC{ * SPL autoload */ public static function autoload($className){ - if(array_key_exists($className,OC::$CLASSPATH)){ + if(array_key_exists($className, OC::$CLASSPATH)) { /** @TODO: Remove this when necessary Remove "apps/" from inclusion path for smooth migration to mutli app dir */ - $path = preg_replace('/apps\//','', OC::$CLASSPATH[$className]); + $path = preg_replace('/apps\//', '', OC::$CLASSPATH[$className]); require_once $path; } - elseif(strpos($className,'OC_')===0){ - $path = strtolower(str_replace('_','/',substr($className,3)) . '.php'); + elseif(strpos($className, 'OC_')===0) { + $path = strtolower(str_replace('_', '/', substr($className,3)) . '.php'); } - elseif(strpos($className,'OCP\\')===0){ - $path = 'public/'.strtolower(str_replace('\\','/',substr($className,3)) . '.php'); + elseif(strpos($className, 'OCP\\')===0) { + $path = 'public/'.strtolower(str_replace('\\',' /',s ubstr($className,3)) . '.php'); } - elseif(strpos($className,'OCA\\')===0){ - $path = 'apps/'.strtolower(str_replace('\\','/',substr($className,3)) . '.php'); + elseif(strpos($className, 'OCA\\')===0) { + $path = 'apps/'.strtolower(str_replace('\\', '/', substr($className,3)) . '.php'); } - elseif(strpos($className,'Sabre_')===0) { - $path = str_replace('_','/',$className) . '.php'; + elseif(strpos($className, 'Sabre_')===0) { + $path = str_replace('_', '/', $className) . '.php'; } - elseif(strpos($className,'Test_')===0){ - $path = 'tests/lib/'.strtolower(str_replace('_','/',substr($className,5)) . '.php'); + elseif(strpos($className,'Test_')===0) { + $path = 'tests/lib/'.strtolower(str_replace('_', '/', substr($className,5 )) . '.php'); }else{ return false; } - if($fullPath = stream_resolve_include_path($path)){ + if($fullPath = stream_resolve_include_path($path)) { require_once $path; } return false; @@ -103,23 +103,23 @@ class OC{ public static function initPaths(){ // calculate the root directories - OC::$SERVERROOT=str_replace("\\",'/',substr(__FILE__,0,-13)); - OC::$SUBURI= str_replace("\\","/",substr(realpath($_SERVER["SCRIPT_FILENAME"]),strlen(OC::$SERVERROOT))); + OC::$SERVERROOT=str_replace("\\", '/', substr(__FILE__, 0, -13)); + OC::$SUBURI= str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen(OC::$SERVERROOT))); $scriptName=$_SERVER["SCRIPT_NAME"]; - if(substr($scriptName,-1)=='/'){ + if(substr($scriptName, -1)=='/') { $scriptName.='index.php'; //make sure suburi follows the same rules as scriptName - if(substr(OC::$SUBURI,-9)!='index.php'){ - if(substr(OC::$SUBURI,-1)!='/'){ + if(substr(OC::$SUBURI, -9)!='index.php') { + if(substr(OC::$SUBURI,-1)!='/' { OC::$SUBURI=OC::$SUBURI.'/'; } OC::$SUBURI=OC::$SUBURI.'index.php'; } } - OC::$WEBROOT=substr($scriptName,0,strlen($scriptName)-strlen(OC::$SUBURI)); + OC::$WEBROOT=substr($scriptName, 0, strlen($scriptName)-strlen(OC::$SUBURI)); - if(OC::$WEBROOT!='' and OC::$WEBROOT[0]!=='/'){ + if(OC::$WEBROOT!='' and OC::$WEBROOT[0]!=='/') { OC::$WEBROOT='/'.OC::$WEBROOT; } @@ -130,13 +130,13 @@ class OC{ ); // search the 3rdparty folder - if(OC_Config::getValue('3rdpartyroot', '')<>'' and OC_Config::getValue('3rdpartyurl', '')<>''){ + if(OC_Config::getValue('3rdpartyroot', '')<>'' and OC_Config::getValue('3rdpartyurl', '')<>'') { OC::$THIRDPARTYROOT=OC_Config::getValue('3rdpartyroot', ''); OC::$THIRDPARTYWEBROOT=OC_Config::getValue('3rdpartyurl', ''); - }elseif(file_exists(OC::$SERVERROOT.'/3rdparty')){ + }elseif(file_exists(OC::$SERVERROOT.'/3rdparty')) { OC::$THIRDPARTYROOT=OC::$SERVERROOT; OC::$THIRDPARTYWEBROOT=OC::$WEBROOT; - }elseif(file_exists(OC::$SERVERROOT.'/../3rdparty')){ + }elseif(file_exists(OC::$SERVERROOT.'/../3rdparty')) { OC::$THIRDPARTYWEBROOT=rtrim(dirname(OC::$WEBROOT), '/'); OC::$THIRDPARTYROOT=rtrim(dirname(OC::$SERVERROOT), '/'); }else{ @@ -145,21 +145,21 @@ class OC{ } // search the apps folder $config_paths = OC_Config::getValue('apps_paths', array()); - if(! empty($config_paths)){ + if(! empty($config_paths)) { foreach($config_paths as $paths) { if( isset($paths['url']) && isset($paths['path'])) { - $paths['url'] = rtrim($paths['url'],'/'); - $paths['path'] = rtrim($paths['path'],'/'); + $paths['url'] = rtrim($paths['url'], '/'); + $paths['path'] = rtrim($paths['path'], '/'); OC::$APPSROOTS[] = $paths; } } - }elseif(file_exists(OC::$SERVERROOT.'/apps')){ + }elseif(file_exists(OC::$SERVERROOT.'/apps')) { OC::$APPSROOTS[] = array('path'=> OC::$SERVERROOT.'/apps', 'url' => '/apps', 'writable' => true); - }elseif(file_exists(OC::$SERVERROOT.'/../apps')){ + }elseif(file_exists(OC::$SERVERROOT.'/../apps')) { OC::$APPSROOTS[] = array('path'=> rtrim(dirname(OC::$SERVERROOT), '/').'/apps', 'url' => '/apps', 'writable' => true); } - if(empty(OC::$APPSROOTS)){ + if(empty(OC::$APPSROOTS)) { echo("apps directory not found! Please put the ownCloud apps folder in the ownCloud folder or the folder above. You can also configure the location in the config.php file."); exit; } @@ -181,7 +181,7 @@ class OC{ public static function checkInstalled() { // Redirect to installer if not installed if (!OC_Config::getValue('installed', false) && OC::$SUBURI != '/index.php') { - if(!OC::$CLI){ + if(!OC::$CLI) { $url = 'http://'.$_SERVER['SERVER_NAME'].OC::$WEBROOT.'/index.php'; header("Location: $url"); } @@ -191,7 +191,7 @@ class OC{ public static function checkSSL() { // redirect to https site if configured - if( OC_Config::getValue( "forcessl", false )){ + if( OC_Config::getValue( "forcessl", false )) { ini_set("session.cookie_secure", "on"); if(OC_Request::serverProtocol()<>'https' and !OC::$CLI) { $url = "https://". OC_Request::serverHost() . $_SERVER['REQUEST_URI']; @@ -202,24 +202,24 @@ class OC{ } public static function checkUpgrade() { - if(OC_Config::getValue('installed', false)){ - $installedVersion=OC_Config::getValue('version','0.0.0'); - $currentVersion=implode('.',OC_Util::getVersion()); + if(OC_Config::getValue('installed', false)) { + $installedVersion=OC_Config::getValue('version', '0.0.0'); + $currentVersion=implode('.', OC_Util::getVersion()); if (version_compare($currentVersion, $installedVersion, '>')) { - OC_Log::write('core','starting upgrade from '.$installedVersion.' to '.$currentVersion,OC_Log::DEBUG); + OC_Log::write('core', 'starting upgrade from '.$installedVersion.' to '.$currentVersion, OC_Log::DEBUG); $result=OC_DB::updateDbFromStructure(OC::$SERVERROOT.'/db_structure.xml'); - if(!$result){ + if(!$result) { echo 'Error while upgrading the database'; die(); } if(file_exists(OC::$SERVERROOT."/config/config.php") and !is_writable(OC::$SERVERROOT."/config/config.php")) { $tmpl = new OC_Template( '', 'error', 'guest' ); - $tmpl->assign('errors',array(1=>array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud"))); + $tmpl->assign('errors', array(1=>array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud"))); $tmpl->printPage(); exit; } - OC_Config::setValue('version',implode('.',OC_Util::getVersion())); + OC_Config::setValue('version', implode('.', OC_Util::getVersion())); OC_App::checkAppsRequirements(); // load all apps to also upgrade enabled apps OC_App::loadApps(); @@ -239,10 +239,10 @@ class OC{ OC_Util::addScript( "eventsource" ); OC_Util::addScript( "config" ); //OC_Util::addScript( "multiselect" ); - OC_Util::addScript('search','result'); + OC_Util::addScript('search', 'result'); if( OC_Config::getValue( 'installed', false )){ - if( OC_Appconfig::getValue( 'core', 'backgroundjobs_mode', 'ajax' ) == 'ajax' ){ + if( OC_Appconfig::getValue( 'core', 'backgroundjobs_mode', 'ajax' ) == 'ajax' ) { OC_Util::addScript( 'backgroundjobs' ); } } @@ -254,7 +254,7 @@ class OC{ } public static function initSession() { - ini_set('session.cookie_httponly','1;'); + ini_set('session.cookie_httponly', '1;'); session_start(); } @@ -266,13 +266,13 @@ class OC{ // set some stuff //ob_start(); error_reporting(E_ALL | E_STRICT); - if (defined('DEBUG') && DEBUG){ + if (defined('DEBUG') && DEBUG) { ini_set('display_errors', 1); } self::$CLI=(php_sapi_name() == 'cli'); date_default_timezone_set('UTC'); - ini_set('arg_separator.output','&'); + ini_set('arg_separator.output', '&'); // try to switch magic quotes off. if(function_exists('set_magic_quotes_runtime')) { @@ -285,29 +285,27 @@ class OC{ //try to set the maximum execution time to 60min @set_time_limit(3600); - @ini_set('max_execution_time',3600); - @ini_set('max_input_time',3600); + @ini_set('max_execution_time', 3600); + @ini_set('max_input_time', 3600); //try to set the maximum filesize to 10G - @ini_set('upload_max_filesize','10G'); - @ini_set('post_max_size','10G'); - @ini_set('file_uploads','50'); + @ini_set('upload_max_filesize', '10G'); + @ini_set('post_max_size', '10G'); + @ini_set('file_uploads', '50'); //try to set the session lifetime to 60min - @ini_set('gc_maxlifetime','3600'); + @ini_set('gc_maxlifetime', '3600'); //set http auth headers for apache+php-cgi work around - if (isset($_SERVER['HTTP_AUTHORIZATION']) && preg_match('/Basic\s+(.*)$/i', $_SERVER['HTTP_AUTHORIZATION'], $matches)) - { + if (isset($_SERVER['HTTP_AUTHORIZATION']) && preg_match('/Basic\s+(.*)$/i', $_SERVER['HTTP_AUTHORIZATION'], $matches)) { list($name, $password) = explode(':', base64_decode($matches[1])); $_SERVER['PHP_AUTH_USER'] = strip_tags($name); $_SERVER['PHP_AUTH_PW'] = strip_tags($password); } //set http auth headers for apache+php-cgi work around if variable gets renamed by apache - if (isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION']) && preg_match('/Basic\s+(.*)$/i', $_SERVER['REDIRECT_HTTP_AUTHORIZATION'], $matches)) - { + if (isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION']) && preg_match('/Basic\s+(.*)$/i', $_SERVER['REDIRECT_HTTP_AUTHORIZATION'], $matches)) { list($name, $password) = explode(':', base64_decode($matches[1])); $_SERVER['PHP_AUTH_USER'] = strip_tags($name); $_SERVER['PHP_AUTH_PW'] = strip_tags($password); @@ -316,14 +314,14 @@ class OC{ self::initPaths(); // set debug mode if an xdebug session is active - if (!defined('DEBUG') || !DEBUG){ - if(isset($_COOKIE['XDEBUG_SESSION'])){ + if (!defined('DEBUG') || !DEBUG) { + if(isset($_COOKIE['XDEBUG_SESSION'])) { define('DEBUG',true); } } // register the stream wrappers - require_once('streamwrappers.php'); + require_once 'streamwrappers.php'; stream_wrapper_register("fakedir", "OC_FakeDirStream"); stream_wrapper_register('static', 'OC_StaticStreamWrapper'); stream_wrapper_register('close', 'OC_CloseStreamWrapper'); @@ -341,7 +339,7 @@ class OC{ } // User and Groups - if( !OC_Config::getValue( "installed", false )){ + if( !OC_Config::getValue( "installed", false )) { $_SESSION['user_id'] = ''; } @@ -352,8 +350,8 @@ class OC{ // This includes plugins for users and filesystems as well global $RUNTIME_NOAPPS; global $RUNTIME_APPTYPES; - if(!$RUNTIME_NOAPPS ){ - if($RUNTIME_APPTYPES){ + if(!$RUNTIME_NOAPPS ) { + if($RUNTIME_APPTYPES) { OC_App::loadApps($RUNTIME_APPTYPES); }else{ OC_App::loadApps(); @@ -368,7 +366,7 @@ class OC{ OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); // Check for blacklisted files - OC_Hook::connect('OC_Filesystem','write','OC_Filesystem','isBlacklisted'); + OC_Hook::connect('OC_Filesystem','write', 'OC_Filesystem', 'isBlacklisted'); OC_Hook::connect('OC_Filesystem', 'rename', 'OC_Filesystem', 'isBlacklisted'); //make sure temporary files are cleaned up @@ -376,7 +374,7 @@ class OC{ //parse the given parameters self::$REQUESTEDAPP = (isset($_GET['app']) && trim($_GET['app']) != '' && !is_null($_GET['app'])?str_replace(array('\0', '/', '\\', '..'), '', strip_tags($_GET['app'])):OC_Config::getValue('defaultapp', 'files')); - if(substr_count(self::$REQUESTEDAPP, '?') != 0){ + if(substr_count(self::$REQUESTEDAPP, '?') != 0) { $app = substr(self::$REQUESTEDAPP, 0, strpos(self::$REQUESTEDAPP, '?')); $param = substr($_GET['app'], strpos($_GET['app'], '?') + 1); parse_str($param, $get); @@ -385,7 +383,7 @@ class OC{ $_GET['app'] = $app; } self::$REQUESTEDFILE = (isset($_GET['getfile'])?$_GET['getfile']:null); - if(substr_count(self::$REQUESTEDFILE, '?') != 0){ + if(substr_count(self::$REQUESTEDFILE, '?') != 0) { $file = substr(self::$REQUESTEDFILE, 0, strpos(self::$REQUESTEDFILE, '?')); $param = substr(self::$REQUESTEDFILE, strpos(self::$REQUESTEDFILE, '?') + 1); parse_str($param, $get); @@ -393,10 +391,10 @@ class OC{ self::$REQUESTEDFILE = $file; $_GET['getfile'] = $file; } - if(!is_null(self::$REQUESTEDFILE)){ + if(!is_null(self::$REQUESTEDFILE)) { $subdir = OC_App::getAppPath(OC::$REQUESTEDAPP) . '/' . self::$REQUESTEDFILE; $parent = OC_App::getAppPath(OC::$REQUESTEDAPP); - if(!OC_Helper::issubdirectory($subdir, $parent)){ + if(!OC_Helper::issubdirectory($subdir, $parent)) { self::$REQUESTEDFILE = null; header('HTTP/1.0 404 Not Found'); exit; @@ -411,24 +409,24 @@ class OC{ if (!OC_Config::getValue('installed', false)) { // Check for autosetup: $autosetup_file = OC::$SERVERROOT."/config/autoconfig.php"; - if( file_exists( $autosetup_file )){ - OC_Log::write('core','Autoconfig file found, setting up owncloud...',OC_Log::INFO); - include( $autosetup_file ); + if( file_exists( $autosetup_file )) { + OC_Log::write('core', 'Autoconfig file found, setting up owncloud...', OC_Log::INFO); + include $autosetup_file; $_POST['install'] = 'true'; $_POST = array_merge ($_POST, $AUTOCONFIG); unlink($autosetup_file); } OC_Util::addScript('setup'); - require_once('setup.php'); + require_once 'setup.php'; exit(); } // Handle WebDAV - if($_SERVER['REQUEST_METHOD']=='PROPFIND'){ + if($_SERVER['REQUEST_METHOD']=='PROPFIND') { header('location: '.OC_Helper::linkToRemote('webdav')); return; } // Handle app css files - if(substr(OC::$REQUESTEDFILE,-3) == 'css') { + if(substr(OC::$REQUESTEDFILE, -3) == 'css') { self::loadCSSFile(); return; } @@ -446,8 +444,7 @@ class OC{ $file = 'index.php'; } $file_ext = substr($file, -3); - if ($file_ext != 'php' - || !self::loadAppScriptFile($app, $file)) { + if ($file_ext != 'php'|| !self::loadAppScriptFile($app, $file)) { header('HTTP/1.0 404 Not Found'); } } @@ -462,7 +459,7 @@ class OC{ $file = $app_path . '/' . $file; unset($app, $app_path); if (file_exists($file)) { - require_once($file); + require_once $file; return true; } return false; @@ -501,18 +498,20 @@ class OC{ protected static function tryRememberLogin() { if(!isset($_COOKIE["oc_remember_login"]) - || !isset($_COOKIE["oc_token"]) - || !isset($_COOKIE["oc_username"]) - || !$_COOKIE["oc_remember_login"]) { + || !isset($_COOKIE["oc_token"]) + || !isset($_COOKIE["oc_username"]) + || !$_COOKIE["oc_remember_login"]) + { return false; } OC_App::loadApps(array('authentication')); if(defined("DEBUG") && DEBUG) { - OC_Log::write('core','Trying to login from cookie',OC_Log::DEBUG); + OC_Log::write('core', 'Trying to login from cookie', OC_Log::DEBUG); } // confirm credentials in cookie if(isset($_COOKIE['oc_token']) && OC_User::userExists($_COOKIE['oc_username']) && - OC_Preferences::getValue($_COOKIE['oc_username'], "login", "token") === $_COOKIE['oc_token']) { + OC_Preferences::getValue($_COOKIE['oc_username'], "login", "token") === $_COOKIE['oc_token']) + { OC_User::setUserId($_COOKIE['oc_username']); OC_Util::redirectToDefaultPage(); } @@ -537,9 +536,9 @@ class OC{ OC_User::setupBackends(); if(OC_User::login($_POST["user"], $_POST["password"])) { - if(!empty($_POST["remember_login"])){ + if(!empty($_POST["remember_login"])) { if(defined("DEBUG") && DEBUG) { - OC_Log::write('core','Setting remember login to cookie', OC_Log::DEBUG); + OC_Log::write('core', 'Setting remember login to cookie', OC_Log::DEBUG); } $token = md5($_POST["user"].time().$_POST['password']); OC_Preferences::setValue($_POST['user'], 'login', 'token', $token); @@ -559,7 +558,7 @@ class OC{ return false; } OC_App::loadApps(array('authentication')); - if (OC_User::login($_SERVER["PHP_AUTH_USER"],$_SERVER["PHP_AUTH_PW"])) { + if (OC_User::login($_SERVER["PHP_AUTH_USER"],$_SERVER["PHP_AUTH_PW"])) { //OC_Log::write('core',"Logged in with HTTP Authentication",OC_Log::DEBUG); OC_User::unsetMagicInCookie(); $_REQUEST['redirect_url'] = (isset($_SERVER['REQUEST_URI'])?$_SERVER['REQUEST_URI']:''); @@ -571,7 +570,7 @@ class OC{ } // define runtime variables - unless this already has been done -if( !isset( $RUNTIME_NOAPPS )){ +if( !isset( $RUNTIME_NOAPPS )) { $RUNTIME_NOAPPS = false; } @@ -581,7 +580,7 @@ if(!function_exists('get_temp_dir')) { if( $temp=getenv('TMP') ) return $temp; if( $temp=getenv('TEMP') ) return $temp; if( $temp=getenv('TMPDIR') ) return $temp; - $temp=tempnam(__FILE__,''); + $temp=tempnam(__FILE__, ''); if (file_exists($temp)) { unlink($temp); return dirname($temp); -- cgit v1.2.3 From 2028500c0a46440c635d0fb8daec38abc4742700 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 4 Sep 2012 15:42:58 +0300 Subject: fixing syntax error - sorry for that --- lib/base.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 20f5fca2041..b1117eda111 100644 --- a/lib/base.php +++ b/lib/base.php @@ -78,19 +78,19 @@ class OC{ require_once $path; } elseif(strpos($className, 'OC_')===0) { - $path = strtolower(str_replace('_', '/', substr($className,3)) . '.php'); + $path = strtolower(str_replace('_', '/', substr($className, 3)) . '.php'); } elseif(strpos($className, 'OCP\\')===0) { - $path = 'public/'.strtolower(str_replace('\\',' /',s ubstr($className,3)) . '.php'); + $path = 'public/'.strtolower(str_replace('\\',' /', substr($className, 3)) . '.php'); } elseif(strpos($className, 'OCA\\')===0) { - $path = 'apps/'.strtolower(str_replace('\\', '/', substr($className,3)) . '.php'); + $path = 'apps/'.strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); } elseif(strpos($className, 'Sabre_')===0) { $path = str_replace('_', '/', $className) . '.php'; } elseif(strpos($className,'Test_')===0) { - $path = 'tests/lib/'.strtolower(str_replace('_', '/', substr($className,5 )) . '.php'); + $path = 'tests/lib/'.strtolower(str_replace('_', '/', substr($className, 5)) . '.php'); }else{ return false; } -- cgit v1.2.3 From aff08925c1a831ca494bdabcd96ed97f15d0f08b Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 4 Sep 2012 15:46:43 +0300 Subject: fixing syntax error - sorry for that --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index b1117eda111..9b728de25aa 100644 --- a/lib/base.php +++ b/lib/base.php @@ -110,7 +110,7 @@ class OC{ $scriptName.='index.php'; //make sure suburi follows the same rules as scriptName if(substr(OC::$SUBURI, -9)!='index.php') { - if(substr(OC::$SUBURI,-1)!='/' { + if(substr(OC::$SUBURI, -1)!='/') { OC::$SUBURI=OC::$SUBURI.'/'; } OC::$SUBURI=OC::$SUBURI.'index.php'; -- cgit v1.2.3 From 7901fc33a867d5bdb121ce29d1d09d549d84b173 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 4 Sep 2012 15:54:38 +0300 Subject: fixing syntax error --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 9b728de25aa..61dea18689b 100644 --- a/lib/base.php +++ b/lib/base.php @@ -81,7 +81,7 @@ class OC{ $path = strtolower(str_replace('_', '/', substr($className, 3)) . '.php'); } elseif(strpos($className, 'OCP\\')===0) { - $path = 'public/'.strtolower(str_replace('\\',' /', substr($className, 3)) . '.php'); + $path = 'public/'.strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); } elseif(strpos($className, 'OCA\\')===0) { $path = 'apps/'.strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); -- cgit v1.2.3 From 69ee84252135cc9ef4aa4526c3dbe6483e2459f5 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 4 Sep 2012 17:13:34 +0300 Subject: Fixing: http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-1617 --- lib/mail.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/mail.php b/lib/mail.php index acdadeffd33..fc9aebfda3b 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -55,6 +55,7 @@ class OC_Mail { $mailo->From =$fromaddress; $mailo->FromName = $fromname;; + $mailo->Sender =$fromaddress; $a=explode(' ',$toaddress); try { foreach($a as $ad) { -- cgit v1.2.3 From 41f135daeeff8ddb6914be786ebf4b90272b15b6 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 4 Sep 2012 08:18:28 +0200 Subject: Remove () from return statement --- lib/request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/request.php b/lib/request.php index 3fe61fbddcd..10f6e91bac8 100644 --- a/lib/request.php +++ b/lib/request.php @@ -49,7 +49,7 @@ class OC_Request { $proto = 'http'; } } - return($proto); + return $proto; } /** -- cgit v1.2.3 From 1e2d5821235d47584e0dd7ebf48b3e3c3afc68d8 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 4 Sep 2012 21:01:36 +0200 Subject: fixing button to add additional site --- lib/l10n.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'lib') diff --git a/lib/l10n.php b/lib/l10n.php index cd1d53bce0b..0421e4eba88 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -137,15 +137,15 @@ class OC_L10N{ } } - /** - * @brief Translating - * @param $text The text we need a translation for - * @param $parameters default:array() Parameters for sprintf - * @returns Translation or the same text - * - * Returns the translation. If no translation is found, $text will be - * returned. - */ + /** + * @brief Translating + * @param $text String The text we need a translation for + * @param array|\default $parameters default:array() Parameters for sprintf + * @return \OC_L10N_String Translation or the same text + * + * Returns the translation. If no translation is found, $text will be + * returned. + */ public function t($text, $parameters = array()){ return new OC_L10N_String($this, $text, $parameters); } -- cgit v1.2.3 From e8fcc7112918ac425560655384ba54ed09657145 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 5 Sep 2012 02:05:39 +0200 Subject: [tx-robot] updated from transifex --- apps/files_external/l10n/he.php | 13 ++++++ apps/files_sharing/l10n/he.php | 7 ++++ apps/files_versions/l10n/he.php | 6 +++ apps/user_ldap/l10n/fi_FI.php | 12 +++--- l10n/af/files.po | 10 +++-- l10n/af/settings.po | 22 ++++++---- l10n/ar/files.po | 10 +++-- l10n/ar/settings.po | 24 ++++++----- l10n/ar_SA/files.po | 10 +++-- l10n/ar_SA/settings.po | 22 ++++++---- l10n/bg_BG/files.po | 10 +++-- l10n/bg_BG/settings.po | 24 ++++++----- l10n/ca/files.po | 12 ++++-- l10n/ca/settings.po | 32 +++++++++------ l10n/cs_CZ/files.po | 10 +++-- l10n/cs_CZ/settings.po | 24 ++++++----- l10n/da/files.po | 12 ++++-- l10n/da/settings.po | 24 ++++++----- l10n/de/files.po | 12 ++++-- l10n/de/settings.po | 32 +++++++++------ l10n/el/files.po | 10 +++-- l10n/el/settings.po | 24 ++++++----- l10n/eo/files.po | 10 +++-- l10n/eo/settings.po | 24 ++++++----- l10n/es/files.po | 12 ++++-- l10n/es/settings.po | 32 +++++++++------ l10n/et_EE/files.po | 10 +++-- l10n/et_EE/settings.po | 24 ++++++----- l10n/eu/files.po | 10 +++-- l10n/eu/settings.po | 24 ++++++----- l10n/eu_ES/files.po | 10 +++-- l10n/eu_ES/settings.po | 22 ++++++---- l10n/fa/files.po | 10 +++-- l10n/fa/settings.po | 24 ++++++----- l10n/fi/files.po | 10 +++-- l10n/fi/settings.po | 22 ++++++---- l10n/fi_FI/files.po | 10 +++-- l10n/fi_FI/settings.po | 32 +++++++++------ l10n/fi_FI/user_ldap.po | 20 ++++----- l10n/fr/files.po | 12 ++++-- l10n/fr/settings.po | 32 +++++++++------ l10n/gl/files.po | 10 +++-- l10n/gl/settings.po | 24 ++++++----- l10n/he/files.po | 10 +++-- l10n/he/files_external.po | 31 +++++++------- l10n/he/files_sharing.po | 21 +++++----- l10n/he/files_versions.po | 17 ++++---- l10n/he/lib.po | 81 +++++++++++++++++++------------------ l10n/he/settings.po | 24 ++++++----- l10n/hi/files.po | 10 +++-- l10n/hi/settings.po | 22 ++++++---- l10n/hr/files.po | 10 +++-- l10n/hr/settings.po | 24 ++++++----- l10n/hu_HU/files.po | 10 +++-- l10n/hu_HU/settings.po | 24 ++++++----- l10n/hy/files.po | 10 +++-- l10n/hy/settings.po | 22 ++++++---- l10n/ia/files.po | 10 +++-- l10n/ia/settings.po | 22 ++++++---- l10n/id/files.po | 10 +++-- l10n/id/settings.po | 24 ++++++----- l10n/id_ID/files.po | 10 +++-- l10n/id_ID/settings.po | 22 ++++++---- l10n/it/files.po | 12 ++++-- l10n/it/settings.po | 32 +++++++++------ l10n/ja_JP/files.po | 12 ++++-- l10n/ja_JP/settings.po | 24 ++++++----- l10n/ko/files.po | 10 +++-- l10n/ko/settings.po | 24 ++++++----- l10n/lb/files.po | 10 +++-- l10n/lb/settings.po | 24 ++++++----- l10n/lt_LT/files.po | 10 +++-- l10n/lt_LT/settings.po | 22 ++++++---- l10n/lv/files.po | 10 +++-- l10n/lv/settings.po | 24 ++++++----- l10n/mk/files.po | 10 +++-- l10n/mk/settings.po | 24 ++++++----- l10n/ms_MY/files.po | 10 +++-- l10n/ms_MY/settings.po | 24 ++++++----- l10n/nb_NO/files.po | 10 +++-- l10n/nb_NO/settings.po | 24 ++++++----- l10n/nl/files.po | 10 +++-- l10n/nl/settings.po | 24 ++++++----- l10n/nn_NO/files.po | 10 +++-- l10n/nn_NO/settings.po | 24 ++++++----- l10n/pl/files.po | 10 +++-- l10n/pl/settings.po | 32 +++++++++------ l10n/pl_PL/files.po | 10 +++-- l10n/pl_PL/settings.po | 22 ++++++---- l10n/pt_BR/files.po | 10 +++-- l10n/pt_BR/settings.po | 24 ++++++----- l10n/pt_PT/files.po | 10 +++-- l10n/pt_PT/settings.po | 24 ++++++----- l10n/ro/files.po | 10 +++-- l10n/ro/settings.po | 24 ++++++----- l10n/ru/files.po | 12 ++++-- l10n/ru/settings.po | 24 ++++++----- l10n/ru_RU/files.po | 10 +++-- l10n/ru_RU/settings.po | 22 ++++++---- l10n/sk_SK/files.po | 10 +++-- l10n/sk_SK/settings.po | 24 ++++++----- l10n/sl/files.po | 12 ++++-- l10n/sl/settings.po | 32 +++++++++------ l10n/so/files.po | 10 +++-- l10n/so/settings.po | 22 ++++++---- l10n/sr/files.po | 10 +++-- l10n/sr/settings.po | 24 ++++++----- l10n/sr@latin/files.po | 10 +++-- l10n/sr@latin/settings.po | 24 ++++++----- l10n/sv/files.po | 12 ++++-- l10n/sv/settings.po | 24 ++++++----- l10n/templates/core.pot | 28 ++++++------- l10n/templates/files.pot | 6 ++- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 21 ++++++---- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/files.po | 12 ++++-- l10n/th_TH/settings.po | 24 ++++++----- l10n/tr/files.po | 12 ++++-- l10n/tr/settings.po | 24 ++++++----- l10n/uk/files.po | 10 +++-- l10n/uk/settings.po | 24 ++++++----- l10n/vi/files.po | 10 +++-- l10n/vi/settings.po | 24 ++++++----- l10n/zh_CN.GB2312/files.po | 10 +++-- l10n/zh_CN.GB2312/settings.po | 24 ++++++----- l10n/zh_CN/files.po | 10 +++-- l10n/zh_CN/settings.po | 24 ++++++----- l10n/zh_TW/files.po | 12 ++++-- l10n/zh_TW/settings.po | 24 ++++++----- lib/l10n/he.php | 28 +++++++++++++ settings/l10n/ar.php | 2 - settings/l10n/bg_BG.php | 2 - settings/l10n/ca.php | 6 ++- settings/l10n/cs_CZ.php | 2 - settings/l10n/da.php | 2 - settings/l10n/de.php | 6 ++- settings/l10n/el.php | 2 - settings/l10n/eo.php | 2 - settings/l10n/es.php | 6 ++- settings/l10n/et_EE.php | 2 - settings/l10n/eu.php | 2 - settings/l10n/fa.php | 2 - settings/l10n/fi_FI.php | 6 ++- settings/l10n/fr.php | 6 ++- settings/l10n/gl.php | 2 - settings/l10n/he.php | 2 - settings/l10n/hr.php | 2 - settings/l10n/hu_HU.php | 2 - settings/l10n/ia.php | 1 - settings/l10n/id.php | 2 - settings/l10n/it.php | 6 ++- settings/l10n/ja_JP.php | 2 - settings/l10n/ko.php | 2 - settings/l10n/lb.php | 2 - settings/l10n/lt_LT.php | 1 - settings/l10n/lv.php | 2 - settings/l10n/mk.php | 2 - settings/l10n/ms_MY.php | 2 - settings/l10n/nb_NO.php | 2 - settings/l10n/nl.php | 2 - settings/l10n/nn_NO.php | 2 - settings/l10n/pl.php | 6 ++- settings/l10n/pt_BR.php | 2 - settings/l10n/pt_PT.php | 2 - settings/l10n/ro.php | 2 - settings/l10n/ru.php | 2 - settings/l10n/sk_SK.php | 2 - settings/l10n/sl.php | 6 ++- settings/l10n/sr.php | 2 - settings/l10n/sr@latin.php | 2 - settings/l10n/sv.php | 2 - settings/l10n/th_TH.php | 2 - settings/l10n/tr.php | 2 - settings/l10n/uk.php | 2 - settings/l10n/vi.php | 2 - settings/l10n/zh_CN.GB2312.php | 2 - settings/l10n/zh_CN.php | 2 - settings/l10n/zh_TW.php | 2 - 183 files changed, 1527 insertions(+), 940 deletions(-) create mode 100644 apps/files_external/l10n/he.php create mode 100644 apps/files_sharing/l10n/he.php create mode 100644 apps/files_versions/l10n/he.php create mode 100644 lib/l10n/he.php (limited to 'lib') diff --git a/apps/files_external/l10n/he.php b/apps/files_external/l10n/he.php new file mode 100644 index 00000000000..edfa9aa85f0 --- /dev/null +++ b/apps/files_external/l10n/he.php @@ -0,0 +1,13 @@ + "אחסון חיצוני", +"Configuration" => "הגדרות", +"Options" => "אפשרויות", +"All Users" => "כל המשתמשים", +"Groups" => "קבוצות", +"Users" => "משתמשים", +"Delete" => "מחיקה", +"SSL root certificates" => "שורש אישורי אבטחת SSL ", +"Import Root Certificate" => "ייבוא אישור אבטחת שורש", +"Enable User External Storage" => "הפעלת אחסון חיצוני למשתמשים", +"Allow users to mount their own external storage" => "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם" +); diff --git a/apps/files_sharing/l10n/he.php b/apps/files_sharing/l10n/he.php new file mode 100644 index 00000000000..68a337241da --- /dev/null +++ b/apps/files_sharing/l10n/he.php @@ -0,0 +1,7 @@ + "ססמה", +"Submit" => "שליחה", +"Download" => "הורדה", +"No preview available for" => "אין תצוגה מקדימה זמינה עבור", +"web services under your control" => "שירותי רשת תחת השליטה שלך" +); diff --git a/apps/files_versions/l10n/he.php b/apps/files_versions/l10n/he.php new file mode 100644 index 00000000000..097169b2a49 --- /dev/null +++ b/apps/files_versions/l10n/he.php @@ -0,0 +1,6 @@ + "הפגת תוקף כל הגרסאות", +"Versions" => "גרסאות", +"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך", +"Enable Files Versioning" => "הפעלת ניהול גרסאות לקבצים" +); diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index f6d16f3acc1..8bf3a024efb 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -1,8 +1,8 @@ "Isäntä", -"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Voit jättää protokollan määrittämättä, paitsi kun käytät SSL:ää. Aloita silloin ldaps://", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Voit jättää protokollan määrittämättä, paitsi kun vaadit SSL:ää. Aloita silloin ldaps://", "Base DN" => "Oletus DN", -"You can specify Base DN for users and groups in the Advanced tab" => "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset' välilehdeltä ", +"You can specify Base DN for users and groups in the Advanced tab" => "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä ", "User DN" => "Käyttäjän 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." => "Asiakasohjelman DN, jolla yhdistäminen tehdään, ts. uid=agent,dc=example,dc=com. Mahdollistaaksesi anonyymin yhteyden, jätä DN ja salasana tyhjäksi.", "Password" => "Salasana", @@ -16,14 +16,14 @@ "Defines the filter to apply, when retrieving groups." => "Määrittelee käytettävän suodattimen, kun ryhmiä haetaan. ", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ilman paikanvaraustermiä, ts. \"objectClass=posixGroup\".", "Port" => "Portti", -"Base User Tree" => "Oletus käyttäjäpuu", +"Base User Tree" => "Oletuskäyttäjäpuu", "Base Group Tree" => "Ryhmien juuri", "Group-Member association" => "Ryhmä-jäsen assosiaatio (yhteys)", "Use TLS" => "Käytä TLS:ää", -"Do not use it for SSL connections, it will fail." => "Älä käytä SSL yhteyttä varten, se epäonnistuu. ", +"Do not use it for SSL connections, it will fail." => "Älä käytä SSL-yhteyttä varten, se epäonnistuu. ", "Case insensitve LDAP server (Windows)" => "Kirjainkoosta piittamaton LDAP-palvelin (Windows)", -"Turn off SSL certificate validation." => "Sulje SSL sertifikaatin käyttö", -"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jos yhteys toimii vain tällä optiolla, siirrä LDAP palvelimen SSL sertifikaatti onwCloud palvelimellesi. ", +"Turn off SSL certificate validation." => "Poista käytöstä SSL-varmenteen vahvistus", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi.", "Not recommended, use for testing only." => "Ei suositella, käytä vain testausta varten.", "in bytes" => "tavuissa", "in seconds. A change empties the cache." => "sekunneissa. Muutos tyhjentää välimuistin.", diff --git a/l10n/af/files.po b/l10n/af/files.po index 8e51d3bfb68..f93921f751c 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/af/settings.po b/l10n/af/settings.po index 3011a186624..b6b7b9e1565 100644 --- a/l10n/af/settings.po +++ b/l10n/af/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 5c481bb7b5c..f0fdb23c940 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "جديد" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 3de638d666b..ece25b8fda8 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "تم تغيير اللغة" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-مسجل" - -#: templates/apps.php:30 -msgid "by" -msgstr "من قبل" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po index 70a8de06f9e..7f04256bac7 100644 --- a/l10n/ar_SA/files.po +++ b/l10n/ar_SA/files.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po index ee8598f1bf1..22e19d517db 100644 --- a/l10n/ar_SA/settings.po +++ b/l10n/ar_SA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 98e68910a2b..9eb5ac463a2 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 означава без ограничение" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Нов" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index a2fc986bb27..fc6de0ffaac 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Езика е сменен" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-лицензирано" - -#: templates/apps.php:30 -msgid "by" -msgstr "от" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 0857b5ed92e..93e8a182607 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 11:28+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 és sense límit" msgid "Maximum input size for ZIP files" msgstr "Mida màxima d'entrada per fitxers ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nou" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 3a8b55e793f..baded31fd54 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -24,17 +24,17 @@ msgid "Unable to load list from App Store" msgstr "No s'ha pogut carregar la llista des de l'App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Error d'autenticació" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "El grup ja existeix" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "No es pot afegir el grup" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -54,16 +54,26 @@ msgstr "Sol.licitud no vàlida" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "No es pot eliminar el grup" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "No es pot eliminar l'usuari" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "S'ha canviat l'idioma" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Error" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Mireu la pàgina d'aplicacions a apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "- amb llicència" - -#: templates/apps.php:30 -msgid "by" -msgstr "de" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 0fbfcb882df..2e9b7e78c13 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 znamená bez omezení" msgid "Maximum input size for ZIP files" msgstr "Maximální velikost vstupu pro ZIP soubory" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nový" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index bd57318d44c..b83f36882a4 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgid "Unable to load list from App Store" msgstr "Nepodařílo se stáhnout seznam z App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Chyba autorizace" @@ -67,6 +67,16 @@ msgstr "" msgid "Language changed" msgstr "Jazyk byl změněn" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Chyba" @@ -183,12 +193,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Více na stránce s aplikacemi na apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencováno" - -#: templates/apps.php:30 -msgid "by" -msgstr "podle" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/da/files.po b/l10n/da/files.po index de51c340b83..5c3233a2810 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" -"PO-Revision-Date: 2012-09-02 14:21+0000\n" -"Last-Translator: muunsim \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -169,6 +169,10 @@ msgstr "0 er ubegrænset" msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse på ZIP filer" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Ny" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 48df28c6b19..022d5ee2338 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgid "Unable to load list from App Store" msgstr "Kunne ikke indlæse listen fra App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Adgangsfejl" @@ -70,6 +70,16 @@ msgstr "" msgid "Language changed" msgstr "Sprog ændret" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Fejl" @@ -186,12 +196,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Se applikationens side på apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licenseret" - -#: templates/apps.php:30 -msgid "by" -msgstr "af" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/de/files.po b/l10n/de/files.po index 2f61acb8ec6..63ae8dc7c87 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -18,15 +18,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 07:32+0000\n" -"Last-Translator: JamFX \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -175,6 +175,10 @@ msgstr "0 bedeutet unbegrenzt" msgid "Maximum input size for ZIP files" msgstr "Maximale Größe für ZIP-Dateien" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Neu" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 01a425d2516..795cd88fa26 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -32,17 +32,17 @@ msgid "Unable to load list from App Store" msgstr "Die Liste der Apps im Store konnte nicht geladen werden." #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Anmeldungsfehler" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Gruppe existiert bereits" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Gruppe konnte nicht angelegt werden" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -62,16 +62,26 @@ msgstr "Ungültige Anfrage" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Gruppe konnte nicht gelöscht werden" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Benutzer konnte nicht gelöscht werden" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Sprache geändert" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Fehler" @@ -188,12 +198,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-lizenziert" - -#: templates/apps.php:30 -msgid "by" -msgstr "von" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/el/files.po b/l10n/el/files.po index cb1f1d7a3d7..ee2a70ac7cf 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 για απεριόριστο" msgid "Maximum input size for ZIP files" msgstr "Μέγιστο μέγεθος για αρχεία ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Νέο" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 2592bb4253f..bbec7abd9bf 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgid "Unable to load list from App Store" msgstr "Σφάλμα στην φόρτωση της λίστας από το App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Σφάλμα πιστοποίησης" @@ -69,6 +69,16 @@ msgstr "" msgid "Language changed" msgstr "Η γλώσσα άλλαξε" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Σφάλμα" @@ -185,12 +195,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Η σελίδα εφαρμογών στο apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-με άδεια" - -#: templates/apps.php:30 -msgid "by" -msgstr "από" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d84ef73a64a..d771ee745f5 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 signifas senlime" msgid "Maximum input size for ZIP files" msgstr "Maksimuma enirgrando por ZIP-dosieroj" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nova" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 63892169303..d51e0c54239 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "Ne eblis ŝargi liston el aplikaĵovendejo" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Aŭtentiga eraro" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "La lingvo estas ŝanĝita" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Eraro" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-permesila" - -#: templates/apps.php:30 -msgid "by" -msgstr "de" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/es/files.po b/l10n/es/files.po index b8ef1ea5821..28809d589c5 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 22:38+0000\n" -"Last-Translator: Rubén Trujillo \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -168,6 +168,10 @@ msgstr "0 es ilimitado" msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo para archivos ZIP de entrada" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nuevo" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index c8eaee979f2..2d38de5f755 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -31,17 +31,17 @@ msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Error de autenticación" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "El grupo ya existe" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "No se pudo añadir el grupo" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -61,16 +61,26 @@ msgstr "Solicitud no válida" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "No se pudo eliminar el grupo" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "No se pudo eliminar el usuario" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Idioma cambiado" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Error" @@ -187,12 +197,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Echa un vistazo a la web de aplicaciones apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-autorizado" - -#: templates/apps.php:30 -msgid "by" -msgstr "por" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 89b36a84150..7b09da2e4f5 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "0 tähendab piiramatut" msgid "Maximum input size for ZIP files" msgstr "Maksimaalne ZIP-faili sisestatava faili suurus" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Uus" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 4c8dabda4a5..2060adcac0d 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "App Sotre'i nimekirja laadimine ebaõnnestus" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Autentimise viga" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "Keel on muudetud" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Viga" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Vaata rakenduste lehte aadressil apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-litsenseeritud" - -#: templates/apps.php:30 -msgid "by" -msgstr "kelle poolt" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index a0e689fba4d..19d4a2e58c1 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 mugarik gabe esan nahi du" msgid "Maximum input size for ZIP files" msgstr "ZIP fitxategien gehienezko tamaina" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Berria" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index c7fd18eb34c..f23e12e7289 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "Ezin izan da App Dendatik zerrenda kargatu" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Autentifikazio errorea" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Hizkuntza aldatuta" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Errorea" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Ikusi programen orria apps.owncloud.com en" #: templates/apps.php:30 -msgid "-licensed" -msgstr "lizentziarekin" - -#: templates/apps.php:30 -msgid "by" -msgstr " Egilea:" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 1a86a78d4b6..5a8745c0316 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index a4cf700a20b..bca1c25debd 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 136043a67d5..a1981830b70 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 نامحدود است" msgid "Maximum input size for ZIP files" msgstr "حداکثرمقدار برای بار گزاری پرونده های فشرده" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "جدید" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 17f939836af..9f3314e7060 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "زبان تغییر کرد" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "خطا" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "صفحه این اٌپ را در apps.owncloud.com ببینید" #: templates/apps.php:30 -msgid "-licensed" -msgstr "مجوزنامه" - -#: templates/apps.php:30 -msgid "by" -msgstr "به وسیله" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index 64ed9831969..a46618c5029 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/fi/settings.po b/l10n/fi/settings.po index e91b258aa20..b2daafd990f 100644 --- a/l10n/fi/settings.po +++ b/l10n/fi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 4bac70c1c2b..7b28a31a632 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 16:25+0000\n" -"Last-Translator: teho \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -169,6 +169,10 @@ msgstr "0 on rajoittamaton" msgid "Maximum input size for ZIP files" msgstr "ZIP-tiedostojen enimmäiskoko" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Uusi" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 405a3a62d3a..e540a68630f 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -25,17 +25,17 @@ msgid "Unable to load list from App Store" msgstr "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Todennusvirhe" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Ryhmä on jo olemassa" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Ryhmän lisäys epäonnistui" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -55,16 +55,26 @@ msgstr "Virheellinen pyyntö" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Ryhmän poisto epäonnistui" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Käyttäjän poisto epäonnistui" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Kieli on vaihdettu" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Virhe" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Katso sovellussivu osoitteessa apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-lisenssöity" - -#: templates/apps.php:30 -msgid "by" -msgstr "henkilölle" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 8d3344a8317..e1e890a1617 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-04 14:29+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:8 msgid "Host" @@ -26,7 +26,7 @@ msgstr "Isäntä" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Voit jättää protokollan määrittämättä, paitsi kun käytät SSL:ää. Aloita silloin ldaps://" +msgstr "Voit jättää protokollan määrittämättä, paitsi kun vaadit SSL:ää. Aloita silloin ldaps://" #: templates/settings.php:9 msgid "Base DN" @@ -34,7 +34,7 @@ msgstr "Oletus DN" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset' välilehdeltä " +msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä " #: templates/settings.php:10 msgid "User DN" @@ -101,7 +101,7 @@ msgstr "Portti" #: templates/settings.php:18 msgid "Base User Tree" -msgstr "Oletus käyttäjäpuu" +msgstr "Oletuskäyttäjäpuu" #: templates/settings.php:19 msgid "Base Group Tree" @@ -117,7 +117,7 @@ msgstr "Käytä TLS:ää" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "Älä käytä SSL yhteyttä varten, se epäonnistuu. " +msgstr "Älä käytä SSL-yhteyttä varten, se epäonnistuu. " #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" @@ -125,13 +125,13 @@ msgstr "Kirjainkoosta piittamaton LDAP-palvelin (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "Sulje SSL sertifikaatin käyttö" +msgstr "Poista käytöstä SSL-varmenteen vahvistus" #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Jos yhteys toimii vain tällä optiolla, siirrä LDAP palvelimen SSL sertifikaatti onwCloud palvelimellesi. " +msgstr "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi." #: templates/settings.php:23 msgid "Not recommended, use for testing only." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 9131d0d3508..6467b476975 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -15,15 +15,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 09:27+0000\n" -"Last-Translator: gp4004 \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -172,6 +172,10 @@ msgstr "0 est illimité" msgid "Maximum input size for ZIP files" msgstr "Taille maximale pour les fichiers ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nouveau" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 0c8e1d758d3..0fd897ba24f 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -32,17 +32,17 @@ msgid "Unable to load list from App Store" msgstr "Impossible de charger la liste depuis l'App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Erreur d'authentification" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Ce groupe existe déjà" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Impossible d'ajouter le groupe" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -62,16 +62,26 @@ msgstr "Requête invalide" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Impossible de supprimer le groupe" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Impossible de supprimer l'utilisateur" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Langue changée" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Erreur" @@ -188,12 +198,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Voir la page des applications à l'url apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "sous licence" - -#: templates/apps.php:30 -msgid "by" -msgstr "par" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index d42c63821bc..9413551a21a 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 significa ilimitado" msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo de descarga para os ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Novo" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index abf9124621e..60828ee96fa 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "Non se puido cargar a lista desde a App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Erro na autenticación" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "O idioma mudou" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Erro" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Vexa a páxina do aplicativo en apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licenciado" - -#: templates/apps.php:30 -msgid "by" -msgstr "por" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/he/files.po b/l10n/he/files.po index 2d4d668d0cf..51db52ac274 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 - ללא הגבלה" msgid "Maximum input size for ZIP files" msgstr "גודל הקלט המרבי לקובצי ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "חדש" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index ba3aa0596eb..78e36b4a5ab 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -3,23 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tomer Cohen , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-04 23:27+0000\n" +"Last-Translator: Tomer Cohen \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "אחסון חיצוני" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" @@ -31,11 +32,11 @@ msgstr "" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "הגדרות" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "אפשרויות" #: templates/settings.php:11 msgid "Applicable" @@ -51,32 +52,32 @@ msgstr "" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "כל המשתמשים" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "קבוצות" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "משתמשים" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "מחיקה" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "שורש אישורי אבטחת SSL " #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "ייבוא אישור אבטחת שורש" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "הפעלת אחסון חיצוני למשתמשים" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index e9ce7816e23..0e6dea4b5b1 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -3,36 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tomer Cohen , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-04 23:20+0000\n" +"Last-Translator: Tomer Cohen \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "ססמה" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "שליחה" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "הורדה" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "אין תצוגה מקדימה זמינה עבור" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "שירותי רשת תחת השליטה שלך" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index bab655f32c2..e0cb0e526e3 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tomer Cohen , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-04 23:22+0000\n" +"Last-Translator: Tomer Cohen \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "הפגת תוקף כל הגרסאות" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "גרסאות" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך" #: templates/settings.php:3 msgid "Enable Files Versioning" -msgstr "" +msgstr "הפעלת ניהול גרסאות לקבצים" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index eed328e6ce5..d85313a6ab8 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -3,123 +3,124 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tomer Cohen , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-04 23:19+0000\n" +"Last-Translator: Tomer Cohen \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: app.php:288 msgid "Help" -msgstr "" +msgstr "עזרה" #: app.php:295 msgid "Personal" -msgstr "" +msgstr "אישי" #: app.php:300 msgid "Settings" -msgstr "" +msgstr "הגדרות" #: app.php:305 msgid "Users" -msgstr "" +msgstr "משתמשים" #: app.php:312 msgid "Apps" -msgstr "" +msgstr "יישומים" #: app.php:314 msgid "Admin" -msgstr "" +msgstr "מנהל" #: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "הורדת ZIP כבויה" #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "יש להוריד את הקבצים אחד אחרי השני." #: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "חזרה לקבצים" #: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "יישומים אינם מופעלים" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "שגיאת הזדהות" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "פג תוקף. נא לטעון שוב את הדף." -#: template.php:86 +#: template.php:87 msgid "seconds ago" -msgstr "" +msgstr "שניות" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" -msgstr "" +msgstr "לפני דקה אחת" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "לפני %d דקות" -#: template.php:91 +#: template.php:92 msgid "today" -msgstr "" +msgstr "היום" -#: template.php:92 +#: template.php:93 msgid "yesterday" -msgstr "" +msgstr "אתמול" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" -msgstr "" +msgstr "לפני %d ימים" -#: template.php:94 +#: template.php:95 msgid "last month" -msgstr "" +msgstr "חודש שעבר" -#: template.php:95 +#: template.php:96 msgid "months ago" -msgstr "" +msgstr "חודשים" -#: template.php:96 +#: template.php:97 msgid "last year" -msgstr "" +msgstr "שנה שעברה" -#: template.php:97 +#: template.php:98 msgid "years ago" -msgstr "" +msgstr "שנים" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s זמין. קבלת מידע נוסף" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "עדכני" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "בדיקת עדכונים מנוטרלת" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 1bad10caaf8..bd56d364279 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "שפה השתנתה" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "צפה בעמוד הישום ב apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "רשיון" - -#: templates/apps.php:30 -msgid "by" -msgstr "מאת" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 8270c796eb7..58546409d54 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index f29fbed4142..db0cc7e30fa 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/hr/files.po b/l10n/hr/files.po index f6640c03c3d..c0d12a58c89 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 je \"bez limita\"" msgid "Maximum input size for ZIP files" msgstr "Maksimalna veličina za ZIP datoteke" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "novo" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 22cbd59156d..ef3eacff148 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "Nemogićnost učitavanja liste sa Apps Stora" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Greška kod autorizacije" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Jezik promijenjen" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Greška" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Pogledajte stranicu s aplikacijama na apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencirano" - -#: templates/apps.php:30 -msgid "by" -msgstr "od" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 4a97620ae7e..a2baaea8442 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 = korlátlan" msgid "Maximum input size for ZIP files" msgstr "ZIP file-ok maximum mérete" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Új" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 1a47a633a73..5f3d66a4dd9 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "Nem tölthető le a lista az App Store-ból" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Hitelesítési hiba" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "A nyelv megváltozott" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Hiba" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Lásd apps.owncloud.com, alkalmazások oldal" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencelt" - -#: templates/apps.php:30 -msgid "by" -msgstr ":" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 1e64d6f49e5..fdc067d3262 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 17b840f15d0..394122cdf15 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 66430afef4b..b2010914e28 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nove" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index b495b59ed97..ab80ed851ad 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "Linguage cambiate" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -180,13 +190,9 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" +msgid "-licensed by " msgstr "" -#: templates/apps.php:30 -msgid "by" -msgstr "per" - #: templates/help.php:9 msgid "Documentation" msgstr "Documentation" diff --git a/l10n/id/files.po b/l10n/id/files.po index 53122c53b6a..806ae3250e2 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 adalah tidak terbatas" msgid "Maximum input size for ZIP files" msgstr "Ukuran masukan maksimal untuk berkas ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Baru" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index b5a17ff7645..c2bd93b9e17 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Bahasa telah diganti" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Lihat halaman aplikasi di apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-terlisensi" - -#: templates/apps.php:30 -msgid "by" -msgstr "oleh" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po index cbc59367cd1..a138ce1d22c 100644 --- a/l10n/id_ID/files.po +++ b/l10n/id_ID/files.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po index 140d43b4803..b70af6b0c3f 100644 --- a/l10n/id_ID/settings.po +++ b/l10n/id_ID/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/it/files.po b/l10n/it/files.po index ccf33f1c454..29c50647d14 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 05:43+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -168,6 +168,10 @@ msgstr "0 è illimitato" msgid "Maximum input size for ZIP files" msgstr "Dimensione massima per i file ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nuovo" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index a0f75975444..7a1601c8818 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -29,17 +29,17 @@ msgid "Unable to load list from App Store" msgstr "Impossibile caricare l'elenco dall'App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Errore di autenticazione" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Il gruppo esiste già" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Impossibile aggiungere il gruppo" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,16 +59,26 @@ msgstr "Richiesta non valida" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Impossibile eliminare il gruppo" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Impossibile eliminare l'utente" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Lingua modificata" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Errore" @@ -185,12 +195,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Vedere la pagina dell'applicazione su apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-rilasciato" - -#: templates/apps.php:30 -msgid "by" -msgstr "da" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 3fbe7f60e99..74741422170 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 07:52+0000\n" -"Last-Translator: ttyn \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0を指定した場合は無制限" msgid "Maximum input size for ZIP files" msgstr "ZIPファイルへの最大入力サイズ" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "新規" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 4721075e9d3..b98da01025a 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "アプリストアからリストをロードできません" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "認証エラー" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "言語が変更されました" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "エラー" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "apps.owncloud.com でアプリケーションのページを見てください" #: templates/apps.php:30 -msgid "-licensed" -msgstr "ライセンス" - -#: templates/apps.php:30 -msgid "by" -msgstr "@" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index fa66c139882..05dda7be5a3 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0은 무제한 입니다" msgid "Maximum input size for ZIP files" msgstr "ZIP 파일에 대한 최대 입력 크기" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "새로 만들기" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 8fd52bd74a0..74a1df47382 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "앱 스토어에서 목록을 가져올 수 없습니다" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "인증 오류" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "언어가 변경되었습니다" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "에러" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "application page at apps.owncloud.com을 보시오." #: templates/apps.php:30 -msgid "-licensed" -msgstr " 라이선스 사용" - -#: templates/apps.php:30 -msgid "by" -msgstr " by " +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 45773897b67..bda384f1ce1 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 21:52+0000\n" -"Last-Translator: sim0n \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,6 +165,10 @@ msgstr "0 ass onlimitéiert" msgid "Maximum input size for ZIP files" msgstr "Maximal Gréisst fir ZIP Fichieren" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nei" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 1359a8c64f8..ae12b3db40d 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "Konnt Lescht net vum App Store lueden" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Authentifikatioun's Fehler" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Sprooch huet geännert" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Fehler" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-Lizenséiert" - -#: templates/apps.php:30 -msgid "by" -msgstr "vun" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 940281d35e3..1aff17e92e2 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 yra neribotas" msgid "Maximum input size for ZIP files" msgstr "Maksimalus ZIP archyvo failo dydis" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Naujas" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index d6268c7d3f4..5db913f5a2b 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "Neįmanoma įkelti sąrašo iš Programų Katalogo" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Kalba pakeista" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Klaida" @@ -179,11 +189,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencijuota" - -#: templates/apps.php:30 -msgid "by" +msgid "-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/lv/files.po b/l10n/lv/files.po index f4af2d90e40..b6fb8d8d076 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "0 ir neierobežots" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Jauns" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 3e27f0ed58c..6c04e77d75a 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "Nebija iespējams lejuplādēt sarakstu no aplikāciju veikala" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Ielogošanās kļūme" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Valoda tika nomainīta" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Kļūme" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Apskatie aplikāciju lapu - apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "licenzēts" - -#: templates/apps.php:30 -msgid "by" -msgstr "no" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 378ca4a4e1e..2ddfad5b8ce 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 е неограничено" msgid "Maximum input size for ZIP files" msgstr "Максимална големина за внес на ZIP датотеки" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Ново" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index ab5e4f3717d..6bd27051c39 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "Јазикот е сменет" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Види ја страницата со апликации на apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licensed" - -#: templates/apps.php:30 -msgid "by" -msgstr "од" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index ebf4d8af0f5..9ba3bb1e22b 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -168,6 +168,10 @@ msgstr "0 adalah tanpa had" msgid "Maximum input size for ZIP files" msgstr "Saiz maksimum input untuk fail ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Baru" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 68249d4e7ec..585daefb75b 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -26,7 +26,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Ralat pengesahan" @@ -66,6 +66,16 @@ msgstr "" msgid "Language changed" msgstr "Bahasa diubah" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -182,12 +192,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Lihat halaman applikasi di apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-dilesen" - -#: templates/apps.php:30 -msgid "by" -msgstr "oleh" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index e909322805c..a65a66c9649 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -169,6 +169,10 @@ msgstr "0 er ubegrenset" msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse på ZIP-filer" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Ny" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 56f93ec3e43..4b095682b56 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgid "Unable to load list from App Store" msgstr "Lasting av liste fra App Store feilet." #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Autentikasjonsfeil" @@ -68,6 +68,16 @@ msgstr "" msgid "Language changed" msgstr "Språk endret" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Feil" @@ -184,12 +194,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Se applikasjonens side på apps.owncloud.org" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-lisensiert" - -#: templates/apps.php:30 -msgid "by" -msgstr "av" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index f5d8cf3bfe5..96f7a87e84e 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -15,15 +15,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -172,6 +172,10 @@ msgstr "0 is ongelimiteerd" msgid "Maximum input size for ZIP files" msgstr "Maximale grootte voor ZIP bestanden" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nieuw" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index a3a72a33798..3c52376d35c 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgid "Unable to load list from App Store" msgstr "Kan de lijst niet van de App store laden" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Authenticatie fout" @@ -69,6 +69,16 @@ msgstr "" msgid "Language changed" msgstr "Taal aangepast" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Fout" @@ -185,12 +195,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Zie de applicatiepagina op apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-gelicentieerd" - -#: templates/apps.php:30 -msgid "by" -msgstr "door" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 1fecca7984d..9bf43656e8a 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Ny" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 82dfce0048e..8276d41ed6d 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "Klarer ikkje å laste inn liste fra App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Feil i autentisering" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "Språk endra" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Feil" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-lisensiert" - -#: templates/apps.php:30 -msgid "by" -msgstr "av" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 02f24afbe72..cce7204605e 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 06:33+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -168,6 +168,10 @@ msgstr "0 jest nielimitowane" msgid "Maximum input size for ZIP files" msgstr "Maksymalna wielkość pliku wejściowego ZIP " +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nowy" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index b0b24757ca6..d6fef0cea3e 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -29,17 +29,17 @@ msgid "Unable to load list from App Store" msgstr "Nie mogę załadować listy aplikacji" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Błąd uwierzytelniania" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Grupa już istnieje" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Nie można dodać grupy" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,16 +59,26 @@ msgstr "Nieprawidłowe żądanie" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Nie można usunąć grupy" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Nie można usunąć użytkownika" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Język zmieniony" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Błąd" @@ -185,12 +195,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Zobacz stronę aplikacji na apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencjonowany" - -#: templates/apps.php:30 -msgid "by" -msgstr "przez" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index de6cf10414c..c47ae7e8223 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index 7f69392cff9..0d571388740 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index c7241bdb7df..82a5a58bd6e 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -169,6 +169,10 @@ msgstr "0 para ilimitado" msgid "Maximum input size for ZIP files" msgstr "Tamanho máximo para arquivo ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Novo" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index f8da7b4d5d3..5c7f19c7695 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "erro de autenticação" @@ -68,6 +68,16 @@ msgstr "" msgid "Language changed" msgstr "Mudou Idioma" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Erro" @@ -184,12 +194,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Ver página do aplicativo em apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licenciados" - -#: templates/apps.php:30 -msgid "by" -msgstr "por" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 57098cd5e05..80b71ab553e 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 é ilimitado" msgid "Maximum input size for ZIP files" msgstr "Tamanho máximo para ficheiros ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Novo" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 7e75ded7dfc..05fcf5b8bd0 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "Incapaz de carregar a lista da App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Erro de autenticação" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Idioma alterado" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Erro" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Ver a página da aplicação em apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licenciado" - -#: templates/apps.php:30 -msgid "by" -msgstr "por" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 44b3e74b60b..c9ff62753cc 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 e nelimitat" msgid "Maximum input size for ZIP files" msgstr "Dimensiunea maximă de intrare pentru fișiere compresate" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nou" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index a79fb9745d9..a1bc80deb8a 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -27,7 +27,7 @@ msgid "Unable to load list from App Store" msgstr "Imposibil de încărcat lista din App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Eroare de autentificare" @@ -67,6 +67,16 @@ msgstr "" msgid "Language changed" msgstr "Limba a fost schimbată" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Erroare" @@ -183,12 +193,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Vizualizează pagina applicației pe apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-autorizat" - -#: templates/apps.php:30 -msgid "by" -msgstr "de" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 2203f972c16..e558e9777a9 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 02:57+0000\n" -"Last-Translator: Denis \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -170,6 +170,10 @@ msgstr "0 - без ограничений" msgid "Maximum input size for ZIP files" msgstr "Максимальный исходный размер для ZIP файлов" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Новый" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 77b85075ddf..e898279374c 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -30,7 +30,7 @@ msgid "Unable to load list from App Store" msgstr "Загрузка из App Store запрещена" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Ошибка авторизации" @@ -70,6 +70,16 @@ msgstr "" msgid "Language changed" msgstr "Язык изменён" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Ошибка" @@ -186,12 +196,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Смотрите дополнения на apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-лицензия" - -#: templates/apps.php:30 -msgid "by" -msgstr "от" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index f9bdd2abc96..2ea2165835d 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 83bd8af32d9..210a41b0491 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 49d1f0dcb6b..5d83420becd 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 znamená neobmedzené" msgid "Maximum input size for ZIP files" msgstr "Najväčšia veľkosť ZIP súborov" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nový" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 3bf4af03dcd..952da745483 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Jazyk zmenený" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Pozrite si stránku aplikácie na apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencované" - -#: templates/apps.php:30 -msgid "by" -msgstr "od" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 10c581f9878..f905c7b48cb 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 14:14+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 je neskončno" msgid "Maximum input size for ZIP files" msgstr "Največja vhodna velikost za ZIP datoteke" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nova" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index b30ea513e31..870976e9060 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgid "Unable to load list from App Store" msgstr "Ne morem naložiti seznama iz App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Napaka overitve" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Skupina že obstaja" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Ni mogoče dodati skupine" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -55,16 +55,26 @@ msgstr "Neveljaven zahtevek" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Ni mogoče izbrisati skupine" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Ni mogoče izbrisati uporabnika" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Jezik je bil spremenjen" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Napaka" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Obiščite spletno stran aplikacije na apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencirana" - -#: templates/apps.php:30 -msgid "by" -msgstr "s strani" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/so/files.po b/l10n/so/files.po index 346d96b8bd9..c9c8fbd1ca1 100644 --- a/l10n/so/files.po +++ b/l10n/so/files.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/so/settings.po b/l10n/so/settings.po index 6663a83b9ab..8ed5f9eb221 100644 --- a/l10n/so/settings.po +++ b/l10n/so/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 67e491506f3..49d3090e681 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Нови" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 2106184cec8..bccf5024d34 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Језик је измењен" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-лиценциран" - -#: templates/apps.php:30 -msgid "by" -msgstr "од" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 0c7f3b5acae..fd9e18816f3 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 4ed74b2b60e..4e8ca925401 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Jezik je izmenjen" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licenciran" - -#: templates/apps.php:30 -msgid "by" -msgstr "od" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 719ccf3db60..38e7c5af596 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 08:09+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -170,6 +170,10 @@ msgstr "0 är oändligt" msgid "Maximum input size for ZIP files" msgstr "Största tillåtna storlek för ZIP-filer" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Ny" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index d764dba4745..77788a1797d 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgid "Unable to load list from App Store" msgstr "Kan inte ladda listan från App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Autentiseringsfel" @@ -69,6 +69,16 @@ msgstr "" msgid "Language changed" msgstr "Språk ändrades" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Fel" @@ -185,12 +195,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Se programsida på apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licensierat" - -#: templates/apps.php:30 -msgid "by" -msgstr "av" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index bd9a67a3e18..329879e864c 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 44f427e91d9..9d519c1a517 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 9a7f6a0e570..460fd2df782 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index f8a9b597aa2..de03296ccbb 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 7365c769038..e1ab849fe35 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index bf919618a28..61a011e4e32 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 100a1972264..82f5c27fddd 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 15dce5bb11d..7c8028eff73 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -177,11 +187,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "" +"-licensed by " msgstr "" #: templates/help.php:9 diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 0b3490afd51..b33a2245ac2 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 5068c75cf78..93ca73a3d10 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 17:03+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 หมายถึงไม่จำกัด" msgid "Maximum input size for ZIP files" msgstr "ขนาดไฟล์ ZIP สูงสุด" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "อัพโหลดไฟล์ใหม่" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 0e3f5e33989..4de68241556 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "ไม่สามารถโหลดรายการจาก App Store ได้" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "เปลี่ยนภาษาเรียบร้อยแล้ว" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "ข้อผิดพลาด" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-ได้รับอนุญาติแล้ว" - -#: templates/apps.php:30 -msgid "by" -msgstr "โดย" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 94595a995e7..865f2bc6d66 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 13:44+0000\n" -"Last-Translator: Caner Başaran \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -168,6 +168,10 @@ msgstr "0 limitsiz demektir" msgid "Maximum input size for ZIP files" msgstr "ZIP dosyaları için en fazla girdi sayısı" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Yeni" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f5eccfa4001..927817d5436 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Eşleşme hata" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Dil değiştirildi" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Uygulamanın sayfasına apps.owncloud.com adresinden bakın " #: templates/apps.php:30 -msgid "-licensed" -msgstr "-lisanslı" - -#: templates/apps.php:30 -msgid "by" -msgstr "yapan" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 7b0f0a27ec5..ebdc5f8b9c0 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 є безліміт" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Створити" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index c0020d02c08..7a1ef6e3a0a 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Мова змінена" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-ліцензовано" - -#: templates/apps.php:30 -msgid "by" -msgstr "по" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 556eb3d9acb..6e2d43a3496 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "0 là không giới hạn" msgid "Maximum input size for ZIP files" msgstr "Kích thước tối đa cho các tập tin ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Mới" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index d1b52d33422..b8c57b37234 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "Không thể tải danh sách ứng dụng từ App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Lỗi xác thực" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Ngôn ngữ đã được thay đổi" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Lỗi" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Xem ứng dụng tại apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "Giấy phép đã được cấp" - -#: templates/apps.php:30 -msgid "by" -msgstr "bởi" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index fb7416be4a0..00bdb62e96f 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "0是无限的" msgid "Maximum input size for ZIP files" msgstr "最大的ZIP文件输入大小" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "新建" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 5b26ea59048..5e3311e0216 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "不能从App Store 中加载列表" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "认证错误" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "语言改变了" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "错误" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "在owncloud.com上查看应用程序" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-许可了" - -#: templates/apps.php:30 -msgid "by" -msgstr "由" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 315f2654827..4e2d600c1e5 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 为无限制" msgid "Maximum input size for ZIP files" msgstr "ZIP 文件的最大输入大小" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "新建" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 9d7fb799dbb..8af73f8879a 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgid "Unable to load list from App Store" msgstr "无法从应用商店载入列表" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "认证错误" @@ -66,6 +66,16 @@ msgstr "" msgid "Language changed" msgstr "语言已修改" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "错误" @@ -182,12 +192,8 @@ msgid "See application page at apps.owncloud.com" msgstr "查看在 app.owncloud.com 的应用程序页面" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-许可证" - -#: templates/apps.php:30 -msgid "by" -msgstr "由" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 2bbfc8d8603..3c6aad93fce 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 20:40+0000\n" -"Last-Translator: ywang \n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0代表沒有限制" msgid "Maximum input size for ZIP files" msgstr "針對ZIP檔案最大輸入大小" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "新增" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index fe812d4e273..ed6dc81bc13 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\n" +"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:02+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" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "無法從 App Store 讀取清單" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "認證錯誤" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "語言已變更" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "錯誤" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "查看應用程式頁面於 apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-已許可" - -#: templates/apps.php:30 -msgid "by" -msgstr "由" +msgid "-licensed by " +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/lib/l10n/he.php b/lib/l10n/he.php new file mode 100644 index 00000000000..149637d09d2 --- /dev/null +++ b/lib/l10n/he.php @@ -0,0 +1,28 @@ + "עזרה", +"Personal" => "אישי", +"Settings" => "הגדרות", +"Users" => "משתמשים", +"Apps" => "יישומים", +"Admin" => "מנהל", +"ZIP download is turned off." => "הורדת ZIP כבויה", +"Files need to be downloaded one by one." => "יש להוריד את הקבצים אחד אחרי השני.", +"Back to Files" => "חזרה לקבצים", +"Selected files too large to generate zip file." => "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip.", +"Application is not enabled" => "יישומים אינם מופעלים", +"Authentication error" => "שגיאת הזדהות", +"Token expired. Please reload page." => "פג תוקף. נא לטעון שוב את הדף.", +"seconds ago" => "שניות", +"1 minute ago" => "לפני דקה אחת", +"%d minutes ago" => "לפני %d דקות", +"today" => "היום", +"yesterday" => "אתמול", +"%d days ago" => "לפני %d ימים", +"last month" => "חודש שעבר", +"months ago" => "חודשים", +"last year" => "שנה שעברה", +"years ago" => "שנים", +"%s is available. Get more information" => "%s זמין. קבלת מידע נוסף", +"up to date" => "עדכני", +"updates check is disabled" => "בדיקת עדכונים מנוטרלת" +); diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index ff711e7ccc9..eca8a300b1b 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -4,8 +4,6 @@ "Language changed" => "تم تغيير اللغة", "__language_name__" => "__language_name__", "Select an App" => "إختر تطبيقاً", -"-licensed" => "-مسجل", -"by" => "من قبل", "Ask a question" => "إسأل سؤال", "Problems connecting to help database." => "الاتصال بقاعدة بيانات المساعدة لم يتم بنجاح", "Go there manually." => "إذهب هنالك بنفسك", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 4464f7596d3..b261c22b032 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -8,8 +8,6 @@ "Enable" => "Включване", "Saving..." => "Записване...", "Select an App" => "Изберете програма", -"-licensed" => "-лицензирано", -"by" => "от", "Documentation" => "Документация", "Ask a question" => "Задайте въпрос", "Problems connecting to help database." => "Проблеми при свързване с помощната база", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 5c3f0edd97c..76fb2fd7fe5 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,10 +1,14 @@ "No s'ha pogut carregar la llista des de l'App Store", "Authentication error" => "Error d'autenticació", +"Group already exists" => "El grup ja existeix", +"Unable to add group" => "No es pot afegir el grup", "Email saved" => "S'ha desat el correu electrònic", "Invalid email" => "El correu electrònic no és vàlid", "OpenID Changed" => "OpenID ha canviat", "Invalid request" => "Sol.licitud no vàlida", +"Unable to delete group" => "No es pot eliminar el grup", +"Unable to delete user" => "No es pot eliminar l'usuari", "Language changed" => "S'ha canviat l'idioma", "Error" => "Error", "Disable" => "Desactiva", @@ -32,8 +36,6 @@ "Add your App" => "Afegiu la vostra aplicació", "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", -"-licensed" => "- amb llicència", -"by" => "de", "Documentation" => "Documentació", "Managing Big Files" => "Gestió de fitxers grans", "Ask a question" => "Feu una pregunta", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index a9c14b53663..e0be2117b84 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -21,8 +21,6 @@ "Add your App" => "Přidat vaší aplikaci", "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", -"-licensed" => "-licencováno", -"by" => "podle", "Documentation" => "Dokumentace", "Managing Big Files" => "Spravování velkých souborů", "Ask a question" => "Zeptat se", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 35d34f6d3e4..0c09a25dfdb 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -29,8 +29,6 @@ "Add your App" => "Tilføj din App", "Select an App" => "Vælg en App", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", -"-licensed" => "-licenseret", -"by" => "af", "Documentation" => "Dokumentation", "Managing Big Files" => "Håndter store filer", "Ask a question" => "Stil et spørgsmål", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 09fc7674d50..d955b75d0c3 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,10 +1,14 @@ "Die Liste der Apps im Store konnte nicht geladen werden.", "Authentication error" => "Anmeldungsfehler", +"Group already exists" => "Gruppe existiert bereits", +"Unable to add group" => "Gruppe konnte nicht angelegt werden", "Email saved" => "E-Mail gespeichert", "Invalid email" => "Ungültige E-Mail", "OpenID Changed" => "OpenID geändert", "Invalid request" => "Ungültige Anfrage", +"Unable to delete group" => "Gruppe konnte nicht gelöscht werden", +"Unable to delete user" => "Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", "Error" => "Fehler", "Disable" => "Deaktivieren", @@ -32,8 +36,6 @@ "Add your App" => "Fügen Sie Ihre App hinzu", "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", -"-licensed" => "-lizenziert", -"by" => "von", "Documentation" => "Dokumentation", "Managing Big Files" => "Große Dateien verwalten", "Ask a question" => "Stellen Sie eine Frage", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 671c3960bdd..833ef8e10d5 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -21,8 +21,6 @@ "Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ", "Select an App" => "Επιλέξτε μια εφαρμογή", "See application page at apps.owncloud.com" => "Η σελίδα εφαρμογών στο apps.owncloud.com", -"-licensed" => "-με άδεια", -"by" => "από", "Documentation" => "Τεκμηρίωση", "Managing Big Files" => "Διαχείριση μεγάλων αρχείων", "Ask a question" => "Ρωτήστε μια ερώτηση", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index ccc184097a5..cb84b2da037 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -21,8 +21,6 @@ "Add your App" => "Aldonu vian aplikaĵon", "Select an App" => "Elekti aplikaĵon", "See application page at apps.owncloud.com" => "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com", -"-licensed" => "-permesila", -"by" => "de", "Documentation" => "Dokumentaro", "Managing Big Files" => "Administrante grandajn dosierojn", "Ask a question" => "Faru demandon", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 4b6bb2b90be..3ab7cb32ba8 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,10 +1,14 @@ "Imposible cargar la lista desde el App Store", "Authentication error" => "Error de autenticación", +"Group already exists" => "El grupo ya existe", +"Unable to add group" => "No se pudo añadir el grupo", "Email saved" => "Correo guardado", "Invalid email" => "Correo no válido", "OpenID Changed" => "OpenID cambiado", "Invalid request" => "Solicitud no válida", +"Unable to delete group" => "No se pudo eliminar el grupo", +"Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", "Error" => "Error", "Disable" => "Desactivar", @@ -32,8 +36,6 @@ "Add your App" => "Añade tu aplicación", "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", -"-licensed" => "-autorizado", -"by" => "por", "Documentation" => "Documentación", "Managing Big Files" => "Administra archivos grandes", "Ask a question" => "Hacer una pregunta", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index e0f0bcf7cf0..1f6cf1265dd 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -21,8 +21,6 @@ "Add your App" => "Lisa oma rakendus", "Select an App" => "Vali programm", "See application page at apps.owncloud.com" => "Vaata rakenduste lehte aadressil apps.owncloud.com", -"-licensed" => "-litsenseeritud", -"by" => "kelle poolt", "Documentation" => "Dokumentatsioon", "Managing Big Files" => "Suurte failide haldamine", "Ask a question" => "Küsi küsimus", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index ab3d36e2a46..4c95c7e4718 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -32,8 +32,6 @@ "Add your App" => "Gehitu zure aplikazioa", "Select an App" => "Aukeratu programa bat", "See application page at apps.owncloud.com" => "Ikusi programen orria apps.owncloud.com en", -"-licensed" => "lizentziarekin", -"by" => " Egilea:", "Documentation" => "Dokumentazioa", "Managing Big Files" => "Fitxategi handien kudeaketa", "Ask a question" => "Egin galdera bat", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 5fe6df4d9d9..215966728d6 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -15,8 +15,6 @@ "Add your App" => "برنامه خود را بیافزایید", "Select an App" => "یک برنامه انتخاب کنید", "See application page at apps.owncloud.com" => "صفحه این اٌپ را در apps.owncloud.com ببینید", -"-licensed" => "مجوزنامه", -"by" => "به وسیله", "Documentation" => "مستندات", "Managing Big Files" => "مدیریت پرونده های بزرگ", "Ask a question" => "یک سوال بپرسید", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 4671f8b39a2..37a80aaeea1 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,10 +1,14 @@ "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", "Authentication error" => "Todennusvirhe", +"Group already exists" => "Ryhmä on jo olemassa", +"Unable to add group" => "Ryhmän lisäys epäonnistui", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", "OpenID Changed" => "OpenID on vaihdettu", "Invalid request" => "Virheellinen pyyntö", +"Unable to delete group" => "Ryhmän poisto epäonnistui", +"Unable to delete user" => "Käyttäjän poisto epäonnistui", "Language changed" => "Kieli on vaihdettu", "Error" => "Virhe", "Disable" => "Poista käytöstä", @@ -32,8 +36,6 @@ "Add your App" => "Lisää ohjelmasi", "Select an App" => "Valitse ohjelma", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", -"-licensed" => "-lisenssöity", -"by" => "henkilölle", "Documentation" => "Dokumentaatio", "Managing Big Files" => "Suurten tiedostojen hallinta", "Ask a question" => "Kysy jotain", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index c0a9b17df0f..890d1e39f10 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,10 +1,14 @@ "Impossible de charger la liste depuis l'App Store", "Authentication error" => "Erreur d'authentification", +"Group already exists" => "Ce groupe existe déjà", +"Unable to add group" => "Impossible d'ajouter le groupe", "Email saved" => "E-mail sauvegardé", "Invalid email" => "E-mail invalide", "OpenID Changed" => "Identifiant OpenID changé", "Invalid request" => "Requête invalide", +"Unable to delete group" => "Impossible de supprimer le groupe", +"Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changée", "Error" => "Erreur", "Disable" => "Désactiver", @@ -32,8 +36,6 @@ "Add your App" => "Ajoutez votre application", "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", -"-licensed" => "sous licence", -"by" => "par", "Documentation" => "Documentation", "Managing Big Files" => "Gérer les gros fichiers", "Ask a question" => "Poser une question", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 96a6b53694e..52aa13c461c 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -21,8 +21,6 @@ "Add your App" => "Engade o teu aplicativo", "Select an App" => "Escolla un Aplicativo", "See application page at apps.owncloud.com" => "Vexa a páxina do aplicativo en apps.owncloud.com", -"-licensed" => "-licenciado", -"by" => "por", "Documentation" => "Documentación", "Managing Big Files" => "Xestionar Grandes Ficheiros", "Ask a question" => "Pregunte", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 17e803a3256..c7189e94354 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -13,8 +13,6 @@ "Add your App" => "הוספת היישום שלך", "Select an App" => "בחירת יישום", "See application page at apps.owncloud.com" => "צפה בעמוד הישום ב apps.owncloud.com", -"-licensed" => "רשיון", -"by" => "מאת", "Documentation" => "תיעוד", "Managing Big Files" => "ניהול קבצים גדולים", "Ask a question" => "שאל שאלה", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 608a23e69ec..8c5251520cc 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -19,8 +19,6 @@ "Add your App" => "Dodajte vašu aplikaciju", "Select an App" => "Odaberite Aplikaciju", "See application page at apps.owncloud.com" => "Pogledajte stranicu s aplikacijama na apps.owncloud.com", -"-licensed" => "-licencirano", -"by" => "od", "Documentation" => "dokumentacija", "Managing Big Files" => "Upravljanje velikih datoteka", "Ask a question" => "Postavite pitanje", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 0a8c6c14cd3..23534d85759 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -17,8 +17,6 @@ "Add your App" => "App hozzáadása", "Select an App" => "Egy App kiválasztása", "See application page at apps.owncloud.com" => "Lásd apps.owncloud.com, alkalmazások oldal", -"-licensed" => "-licencelt", -"by" => ":", "Documentation" => "Dokumentáció", "Managing Big Files" => "Nagy fájlok kezelése", "Ask a question" => "Tégy fel egy kérdést", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index 7b2b631b687..e9d6a065a21 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -7,7 +7,6 @@ "More" => "Plus", "Add your App" => "Adder tu application", "Select an App" => "Selectionar un app", -"by" => "per", "Documentation" => "Documentation", "Ask a question" => "Facer un question", "Answer" => "Responsa", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index a69d9855cae..636be1af955 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -14,8 +14,6 @@ "Add your App" => "Tambahkan App anda", "Select an App" => "Pilih satu aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman aplikasi di apps.owncloud.com", -"-licensed" => "-terlisensi", -"by" => "oleh", "Documentation" => "Dokumentasi", "Managing Big Files" => "Mengelola berkas besar", "Ask a question" => "Ajukan pertanyaan", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index cc3e6578ac3..8c8ec63f4c4 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -1,10 +1,14 @@ "Impossibile caricare l'elenco dall'App Store", "Authentication error" => "Errore di autenticazione", +"Group already exists" => "Il gruppo esiste già", +"Unable to add group" => "Impossibile aggiungere il gruppo", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", "OpenID Changed" => "OpenID modificato", "Invalid request" => "Richiesta non valida", +"Unable to delete group" => "Impossibile eliminare il gruppo", +"Unable to delete user" => "Impossibile eliminare l'utente", "Language changed" => "Lingua modificata", "Error" => "Errore", "Disable" => "Disabilita", @@ -32,8 +36,6 @@ "Add your App" => "Aggiungi la tua applicazione", "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", -"-licensed" => "-rilasciato", -"by" => "da", "Documentation" => "Documentazione", "Managing Big Files" => "Gestione file grandi", "Ask a question" => "Fai una domanda", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 0e5add877c0..dcf0568cbaa 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -32,8 +32,6 @@ "Add your App" => "アプリを追加", "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", -"-licensed" => "ライセンス", -"by" => "@", "Documentation" => "ドキュメント", "Managing Big Files" => "大きなファイルを扱うには", "Ask a question" => "質問してください", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index e0baad73d23..ada09c845cf 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -21,8 +21,6 @@ "Add your App" => "앱 추가", "Select an App" => "프로그램 선택", "See application page at apps.owncloud.com" => "application page at apps.owncloud.com을 보시오.", -"-licensed" => " 라이선스 사용", -"by" => " by ", "Documentation" => "문서", "Managing Big Files" => "큰 파일 관리", "Ask a question" => "질문하기", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 8dc05e6b497..55db067f8cf 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -27,8 +27,6 @@ "Add your App" => "Setz deng App bei", "Select an App" => "Wiel eng Applikatioun aus", "See application page at apps.owncloud.com" => "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un", -"-licensed" => "-Lizenséiert", -"by" => "vun", "Documentation" => "Dokumentatioun", "Managing Big Files" => "Grouss Fichieren verwalten", "Ask a question" => "Stell eng Fro", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index e8076e293be..701ec867270 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -17,7 +17,6 @@ "More" => "Daugiau", "Add your App" => "Pridėti programėlę", "Select an App" => "Pasirinkite programą", -"-licensed" => "-licencijuota", "Documentation" => "Dokumentacija", "Ask a question" => "Užduoti klausimą", "Problems connecting to help database." => "Problemos jungiantis prie duomenų bazės", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 67b55f90017..9780127890a 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -18,8 +18,6 @@ "Add your App" => "Pievieno savu aplikāciju", "Select an App" => "Izvēlies aplikāciju", "See application page at apps.owncloud.com" => "Apskatie aplikāciju lapu - apps.owncloud.com", -"-licensed" => "licenzēts", -"by" => "no", "Documentation" => "Dokumentācija", "Managing Big Files" => "Rīkoties ar apjomīgiem failiem", "Ask a question" => "Uzdod jautajumu", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 38e3cc6e09e..ce89f3b40c7 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -13,8 +13,6 @@ "Add your App" => "Додадете ја Вашата апликација", "Select an App" => "Избери аппликација", "See application page at apps.owncloud.com" => "Види ја страницата со апликации на apps.owncloud.com", -"-licensed" => "-licensed", -"by" => "од", "Documentation" => "Документација", "Managing Big Files" => "Управување со големи датотеки", "Ask a question" => "Постави прашање", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 8d9ac2fa695..a1d3007c895 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -15,8 +15,6 @@ "Add your App" => "Tambah apps anda", "Select an App" => "Pilih aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman applikasi di apps.owncloud.com", -"-licensed" => "-dilesen", -"by" => "oleh", "Documentation" => "Dokumentasi", "Managing Big Files" => "Mengurus Fail Besar", "Ask a question" => "Tanya soalan", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 6536e50e21f..57c18813522 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -21,8 +21,6 @@ "Add your App" => "Legg til din App", "Select an App" => "Velg en app", "See application page at apps.owncloud.com" => "Se applikasjonens side på apps.owncloud.org", -"-licensed" => "-lisensiert", -"by" => "av", "Documentation" => "Dokumentasjon", "Managing Big Files" => "Håndtere store filer", "Ask a question" => "Still et spørsmål", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 081e6af8f50..ffa00dabaa1 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -30,8 +30,6 @@ "Add your App" => "Voeg je App toe", "Select an App" => "Selecteer een app", "See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", -"-licensed" => "-gelicentieerd", -"by" => "door", "Documentation" => "Documentatie", "Managing Big Files" => "Onderhoud van grote bestanden", "Ask a question" => "Stel een vraag", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 7b1a35c8efb..25cf29b91d5 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -11,8 +11,6 @@ "Enable" => "Slå på", "__language_name__" => "Nynorsk", "Select an App" => "Vel ein applikasjon", -"-licensed" => "-lisensiert", -"by" => "av", "Ask a question" => "Spør om noko", "Problems connecting to help database." => "Problem ved tilkopling til hjelpedatabasen.", "Go there manually." => "Gå der på eigen hand.", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 693727bcb75..ee50d0fffa7 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -1,10 +1,14 @@ "Nie mogę załadować listy aplikacji", "Authentication error" => "Błąd uwierzytelniania", +"Group already exists" => "Grupa już istnieje", +"Unable to add group" => "Nie można dodać grupy", "Email saved" => "Email zapisany", "Invalid email" => "Niepoprawny email", "OpenID Changed" => "Zmieniono OpenID", "Invalid request" => "Nieprawidłowe żądanie", +"Unable to delete group" => "Nie można usunąć grupy", +"Unable to delete user" => "Nie można usunąć użytkownika", "Language changed" => "Język zmieniony", "Error" => "Błąd", "Disable" => "Wyłączone", @@ -26,8 +30,6 @@ "Add your App" => "Dodaj aplikacje", "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", -"-licensed" => "-licencjonowany", -"by" => "przez", "Documentation" => "Dokumentacja", "Managing Big Files" => "Zarządzanie dużymi plikami", "Ask a question" => "Zadaj pytanie", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 55b09b27f89..6933e585545 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -18,8 +18,6 @@ "Add your App" => "Adicione seu Aplicativo", "Select an App" => "Selecione uma Aplicação", "See application page at apps.owncloud.com" => "Ver página do aplicativo em apps.owncloud.com", -"-licensed" => "-licenciados", -"by" => "por", "Documentation" => "Documentação", "Managing Big Files" => "Gerênciando Arquivos Grandes", "Ask a question" => "Faça uma pergunta", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index c3c575bcbe6..bf939df4aeb 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -21,8 +21,6 @@ "Add your App" => "Adicione a sua aplicação", "Select an App" => "Selecione uma aplicação", "See application page at apps.owncloud.com" => "Ver a página da aplicação em apps.owncloud.com", -"-licensed" => "-licenciado", -"by" => "por", "Documentation" => "Documentação", "Managing Big Files" => "Gestão de ficheiros grandes", "Ask a question" => "Coloque uma questão", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index ebb1066a742..c82cdaab2a4 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -21,8 +21,6 @@ "Add your App" => "Adaugă aplicația ta", "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", -"-licensed" => "-autorizat", -"by" => "de", "Documentation" => "Documetație", "Managing Big Files" => "Gestionînd fișiere mari", "Ask a question" => "Întreabă", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 3d8ecbf5163..5cbeb002ec6 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -21,8 +21,6 @@ "Add your App" => "Добавить приложение", "Select an App" => "Выберите приложение", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", -"-licensed" => "-лицензия", -"by" => "от", "Documentation" => "Документация", "Managing Big Files" => "Управление большими файлами", "Ask a question" => "Задать вопрос", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index edf908ce097..f8032afe5b4 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -13,8 +13,6 @@ "Add your App" => "Pridať vašu aplikáciu", "Select an App" => "Vyberte aplikáciu", "See application page at apps.owncloud.com" => "Pozrite si stránku aplikácie na apps.owncloud.com", -"-licensed" => "-licencované", -"by" => "od", "Documentation" => "Dokumentácia", "Managing Big Files" => "Spravovanie veľké súbory", "Ask a question" => "Opýtajte sa otázku", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 834311a7e73..fc49d940b47 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,10 +1,14 @@ "Ne morem naložiti seznama iz App Store", "Authentication error" => "Napaka overitve", +"Group already exists" => "Skupina že obstaja", +"Unable to add group" => "Ni mogoče dodati skupine", "Email saved" => "E-poštni naslov je bil shranjen", "Invalid email" => "Neveljaven e-poštni naslov", "OpenID Changed" => "OpenID je bil spremenjen", "Invalid request" => "Neveljaven zahtevek", +"Unable to delete group" => "Ni mogoče izbrisati skupine", +"Unable to delete user" => "Ni mogoče izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", "Error" => "Napaka", "Disable" => "Onemogoči", @@ -32,8 +36,6 @@ "Add your App" => "Dodajte vašo aplikacijo", "Select an App" => "Izberite aplikacijo", "See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com", -"-licensed" => "-licencirana", -"by" => "s strani", "Documentation" => "Dokumentacija", "Managing Big Files" => "Upravljanje velikih datotek", "Ask a question" => "Postavi vprašanje", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 7dede8fdc74..84881c2f1a8 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -3,8 +3,6 @@ "Invalid request" => "Неисправан захтев", "Language changed" => "Језик је измењен", "Select an App" => "Изаберите програм", -"-licensed" => "-лиценциран", -"by" => "од", "Ask a question" => "Поставите питање", "Problems connecting to help database." => "Проблем у повезивању са базом помоћи", "Go there manually." => "Отиђите тамо ручно.", diff --git a/settings/l10n/sr@latin.php b/settings/l10n/sr@latin.php index 0229a763613..8bfc0fa989f 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -3,8 +3,6 @@ "Invalid request" => "Neispravan zahtev", "Language changed" => "Jezik je izmenjen", "Select an App" => "Izaberite program", -"-licensed" => "-licenciran", -"by" => "od", "Ask a question" => "Postavite pitanje", "Problems connecting to help database." => "Problem u povezivanju sa bazom pomoći", "Go there manually." => "Otiđite tamo ručno.", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index c2292b23f9c..9beb500194d 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -32,8 +32,6 @@ "Add your App" => "Lägg till din applikation", "Select an App" => "Välj en App", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", -"-licensed" => "-licensierat", -"by" => "av", "Documentation" => "Dokumentation", "Managing Big Files" => "Hantering av stora filer", "Ask a question" => "Ställ en fråga", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 46bdf08aa92..7166c26a1ce 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -32,8 +32,6 @@ "Add your App" => "เพิ่มแอปของคุณ", "Select an App" => "เลือก App", "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", -"-licensed" => "-ได้รับอนุญาติแล้ว", -"by" => "โดย", "Documentation" => "เอกสารคู่มือการใช้งาน", "Managing Big Files" => "การจัดการไฟล์ขนาดใหญ่", "Ask a question" => "สอบถามข้อมูล", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 2350dc49aa6..6e68d792e74 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -15,8 +15,6 @@ "Add your App" => "Uygulamanı Ekle", "Select an App" => "Bir uygulama seçin", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", -"-licensed" => "-lisanslı", -"by" => "yapan", "Documentation" => "Dökümantasyon", "Managing Big Files" => "Büyük Dosyaların Yönetimi", "Ask a question" => "Bir soru sorun", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 7331ff324c1..37ecd73fb68 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -3,8 +3,6 @@ "Invalid request" => "Помилковий запит", "Language changed" => "Мова змінена", "Select an App" => "Вибрати додаток", -"-licensed" => "-ліцензовано", -"by" => "по", "Ask a question" => "Запитати", "Problems connecting to help database." => "Проблема при з'єднані з базою допомоги", "You use" => "Ви використовуєте", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 95dd88c62c0..1cad2e148d0 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -17,8 +17,6 @@ "Add your App" => "Thêm ứng dụng của bạn", "Select an App" => "Chọn một ứng dụng", "See application page at apps.owncloud.com" => "Xem ứng dụng tại apps.owncloud.com", -"-licensed" => "Giấy phép đã được cấp", -"by" => "bởi", "Documentation" => "Tài liệu", "Managing Big Files" => "Quản lý tập tin lớn", "Ask a question" => "Đặt câu hỏi", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index f4e0a42c83b..83111beb10e 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -18,8 +18,6 @@ "Add your App" => "添加你的应用程序", "Select an App" => "选择一个程序", "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", -"-licensed" => "-许可了", -"by" => "由", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提一个问题", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 2adb0e104e5..0667cee74bb 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -21,8 +21,6 @@ "Add your App" => "添加应用", "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", -"-licensed" => "-许可证", -"by" => "由", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提问", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 82dd8dd42be..e0eeddb375e 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -17,8 +17,6 @@ "Add your App" => "添加你的 App", "Select an App" => "選擇一個應用程式", "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", -"-licensed" => "-已許可", -"by" => "由", "Documentation" => "文件", "Managing Big Files" => "管理大檔案", "Ask a question" => "提問", -- cgit v1.2.3 From 9eccc0121a5274627a3b32324b5a86c32e09aba8 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Wed, 5 Sep 2012 13:22:38 +0300 Subject: Respect coding style --- lib/base.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 61dea18689b..6c556e3d19c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -51,7 +51,8 @@ class OC{ */ public static $THIRDPARTYWEBROOT = ''; /** - * The installation path array of the apps folder on the server (e.g. /srv/http/owncloud) 'path' and web path in 'url' + * The installation path array of the apps folder on the server (e.g. /srv/http/owncloud) 'path' and + * web path in 'url' */ public static $APPSROOTS = array(); /* @@ -89,7 +90,7 @@ class OC{ elseif(strpos($className, 'Sabre_')===0) { $path = str_replace('_', '/', $className) . '.php'; } - elseif(strpos($className,'Test_')===0) { + elseif(strpos($className, 'Test_')===0) { $path = 'tests/lib/'.strtolower(str_replace('_', '/', substr($className, 5)) . '.php'); }else{ return false; @@ -241,7 +242,7 @@ class OC{ //OC_Util::addScript( "multiselect" ); OC_Util::addScript('search', 'result'); - if( OC_Config::getValue( 'installed', false )){ + if( OC_Config::getValue( 'installed', false )) { if( OC_Appconfig::getValue( 'core', 'backgroundjobs_mode', 'ajax' ) == 'ajax' ) { OC_Util::addScript( 'backgroundjobs' ); } @@ -316,7 +317,7 @@ class OC{ // set debug mode if an xdebug session is active if (!defined('DEBUG') || !DEBUG) { if(isset($_COOKIE['XDEBUG_SESSION'])) { - define('DEBUG',true); + define('DEBUG', true); } } @@ -366,7 +367,7 @@ class OC{ OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); // Check for blacklisted files - OC_Hook::connect('OC_Filesystem','write', 'OC_Filesystem', 'isBlacklisted'); + OC_Hook::connect('OC_Filesystem', 'write', 'OC_Filesystem', 'isBlacklisted'); OC_Hook::connect('OC_Filesystem', 'rename', 'OC_Filesystem', 'isBlacklisted'); //make sure temporary files are cleaned up @@ -558,7 +559,7 @@ class OC{ return false; } OC_App::loadApps(array('authentication')); - if (OC_User::login($_SERVER["PHP_AUTH_USER"],$_SERVER["PHP_AUTH_PW"])) { + if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) { //OC_Log::write('core',"Logged in with HTTP Authentication",OC_Log::DEBUG); OC_User::unsetMagicInCookie(); $_REQUEST['redirect_url'] = (isset($_SERVER['REQUEST_URI'])?$_SERVER['REQUEST_URI']:''); -- cgit v1.2.3 From d5fd5cd5845b29312d301f57324c406e812ed9c2 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Wed, 5 Sep 2012 15:40:21 +0300 Subject: Respect coding style --- lib/cache.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/cache.php b/lib/cache.php index fed990b5b34..62003793d5f 100644 --- a/lib/cache.php +++ b/lib/cache.php @@ -44,8 +44,8 @@ class OC_Cache { self::$global_cache = new OC_Cache_Broker(self::$global_cache_fast, self::$global_cache); } } - if($fast){ - if(self::$global_cache_fast){ + if($fast) { + if(self::$global_cache_fast) { return self::$global_cache_fast; }else{ return false; @@ -74,8 +74,8 @@ class OC_Cache { } } - if($fast){ - if(self::$user_cache_fast){ + if($fast) { + if(self::$user_cache_fast) { return self::$user_cache_fast; }else{ return false; @@ -138,7 +138,7 @@ class OC_Cache { * @return true */ static public function isFast() { - if(is_null(self::$isFast)){ + if(is_null(self::$isFast)) { self::$isFast=function_exists('xcache_set') || function_exists('apc_store'); } return self::$isFast; -- cgit v1.2.3 From e5cb638c0920c421b7e0104d19591720eed6fe56 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Wed, 5 Sep 2012 15:42:06 +0300 Subject: Respect coding style --- lib/config.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'lib') diff --git a/lib/config.php b/lib/config.php index 266d559126c..390469beacf 100644 --- a/lib/config.php +++ b/lib/config.php @@ -70,7 +70,7 @@ class OC_Config{ public static function getValue( $key, $default = null ){ self::readData(); - if( array_key_exists( $key, self::$cache )){ + if( array_key_exists( $key, self::$cache )) { return self::$cache[$key]; } @@ -108,7 +108,7 @@ class OC_Config{ public static function deleteKey( $key ){ self::readData(); - if( array_key_exists( $key, self::$cache )){ + if( array_key_exists( $key, self::$cache )) { // Delete key from cache unset( self::$cache[$key] ); @@ -126,17 +126,17 @@ class OC_Config{ * Reads the config file and saves it to the cache */ private static function readData(){ - if( self::$init ){ + if( self::$init ) { return true; } - if( !file_exists( OC::$SERVERROOT."/config/config.php" )){ + if( !file_exists( OC::$SERVERROOT."/config/config.php" )) { return false; } // Include the file, save the data from $CONFIG - include( OC::$SERVERROOT."/config/config.php" ); - if( isset( $CONFIG ) && is_array( $CONFIG )){ + include OC::$SERVERROOT."/config/config.php"; + if( isset( $CONFIG ) && is_array( $CONFIG )) { self::$cache = $CONFIG; } @@ -164,7 +164,9 @@ class OC_Config{ $result=@file_put_contents( $filename, $content ); if(!$result) { $tmpl = new OC_Template( '', 'error', 'guest' ); - $tmpl->assign('errors',array(1=>array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud"))); + $tmpl->assign('errors', array(1=>array( + 'error'=>"Can't write into config directory 'config'", + 'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud"))); $tmpl->printPage(); exit; } -- cgit v1.2.3 From 24977d0fd07ab40564cddae5661a4ae6bbfec7f2 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Wed, 5 Sep 2012 15:49:42 +0300 Subject: Respect coding style --- lib/db.php | 114 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 57 insertions(+), 57 deletions(-) (limited to 'lib') diff --git a/lib/db.php b/lib/db.php index 16b39208735..2f36416d0a6 100644 --- a/lib/db.php +++ b/lib/db.php @@ -42,14 +42,15 @@ class OC_DB { * @return BACKEND_MDB2 or BACKEND_PDO */ private static function getDBBackend(){ - if(class_exists('PDO') && OC_Config::getValue('installed', false)){//check if we can use PDO, else use MDB2 (installation always needs to be done my mdb2) + //check if we can use PDO, else use MDB2 (installation always needs to be done my mdb2) + if(class_exists('PDO') && OC_Config::getValue('installed', false)) { $type = OC_Config::getValue( "dbtype", "sqlite" ); if($type=='oci') { //oracle also always needs mdb2 return self::BACKEND_MDB2; } if($type=='sqlite3') $type='sqlite'; $drivers=PDO::getAvailableDrivers(); - if(array_search($type,$drivers)!==false){ + if(array_search($type, $drivers)!==false) { return self::BACKEND_PDO; } } @@ -63,13 +64,13 @@ class OC_DB { * Connects to the database as specified in config.php */ public static function connect($backend=null){ - if(self::$connection){ + if(self::$connection) { return; } - if(is_null($backend)){ + if(is_null($backend)) { $backend=self::getDBBackend(); } - if($backend==self::BACKEND_PDO){ + if($backend==self::BACKEND_PDO) { self::connectPDO(); self::$connection=self::$PDO; self::$backend=self::BACKEND_PDO; @@ -84,8 +85,8 @@ class OC_DB { * connect to the database using pdo */ public static function connectPDO(){ - if(self::$connection){ - if(self::$backend==self::BACKEND_MDB2){ + if(self::$connection) { + if(self::$backend==self::BACKEND_MDB2) { self::disconnect(); }else{ return; @@ -97,8 +98,8 @@ class OC_DB { $user = OC_Config::getValue( "dbuser", "" ); $pass = OC_Config::getValue( "dbpassword", "" ); $type = OC_Config::getValue( "dbtype", "sqlite" ); - if(strpos($host,':')){ - list($host,$port)=explode(':',$host,2); + if(strpos($host, ':')) { + list($host, $port)=explode(':', $host,2); }else{ $port=false; } @@ -106,9 +107,9 @@ class OC_DB { $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); // do nothing if the connection already has been established - if(!self::$PDO){ + if(!self::$PDO) { // Add the dsn according to the database type - switch($type){ + switch($type) { case 'sqlite': $dsn='sqlite2:'.$datadir.'/'.$name.'.db'; break; @@ -116,7 +117,7 @@ class OC_DB { $dsn='sqlite:'.$datadir.'/'.$name.'.db'; break; case 'mysql': - if($port){ + if($port) { $dsn='mysql:dbname='.$name.';host='.$host.';port='.$port; }else{ $dsn='mysql:dbname='.$name.';host='.$host; @@ -124,7 +125,7 @@ class OC_DB { $opts[PDO::MYSQL_ATTR_INIT_COMMAND] = "SET NAMES 'UTF8'"; break; case 'pgsql': - if($port){ + if($port) { $dsn='pgsql:dbname='.$name.';host='.$host.';port='.$port; }else{ $dsn='pgsql:dbname='.$name.';host='.$host; @@ -139,22 +140,22 @@ class OC_DB { /** END OF FIX***/ break; case 'oci': // Oracle with PDO is unsupported - if ($port) { - $dsn = 'oci:dbname=//' . $host . ':' . $port . '/' . $name; - } else { - $dsn = 'oci:dbname=//' . $host . '/' . $name; - } - break; + if ($port) { + $dsn = 'oci:dbname=//' . $host . ':' . $port . '/' . $name; + } else { + $dsn = 'oci:dbname=//' . $host . '/' . $name; + } + break; } try{ - self::$PDO=new PDO($dsn,$user,$pass,$opts); + self::$PDO=new PDO($dsn, $user, $pass, $opts); }catch(PDOException $e){ echo( 'can not connect to database, using '.$type.'. ('.$e->getMessage().')'); die(); } // We always, really always want associative arrays - self::$PDO->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE,PDO::FETCH_ASSOC); - self::$PDO->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); + self::$PDO->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); + self::$PDO->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } return true; } @@ -162,9 +163,9 @@ class OC_DB { /** * connect to the database using mdb2 */ - public static function connectMDB2(){ - if(self::$connection){ - if(self::$backend==self::BACKEND_PDO){ + public static function connectMDB2() { + if(self::$connection) { + if(self::$backend==self::BACKEND_PDO) { self::disconnect(); }else{ return; @@ -180,9 +181,9 @@ class OC_DB { $datadir=OC_Config::getValue( "datadirectory", "$SERVERROOT/data" ); // do nothing if the connection already has been established - if(!self::$MDB2){ + if(!self::$MDB2) { // Require MDB2.php (not required in the head of the file so we only load it when needed) - require_once('MDB2.php'); + require_once 'MDB2.php'; // Prepare options array $options = array( @@ -239,10 +240,10 @@ class OC_DB { self::$MDB2 = MDB2::factory( $dsn, $options ); // Die if we could not connect - if( PEAR::isError( self::$MDB2 )){ + if( PEAR::isError( self::$MDB2 )) { echo( 'can not connect to database, using '.$type.'. ('.self::$MDB2->getUserInfo().')'); - OC_Log::write('core',self::$MDB2->getUserInfo(),OC_Log::FATAL); - OC_Log::write('core',self::$MDB2->getMessage(),OC_Log::FATAL); + OC_Log::write('core', self::$MDB2->getUserInfo(), OC_Log::FATAL); + OC_Log::write('core', self::$MDB2->getMessage(), OC_Log::FATAL); die( $error ); } @@ -290,14 +291,14 @@ class OC_DB { self::connect(); // return the result - if(self::$backend==self::BACKEND_MDB2){ + if(self::$backend==self::BACKEND_MDB2) { $result = self::$connection->prepare( $query ); // Die if we have an error (error means: bad query, not 0 results!) if( PEAR::isError($result)) { $entry = 'DB Error: "'.$result->getMessage().'"
    '; $entry .= 'Offending command was: '.$query.'
    '; - OC_Log::write('core',$entry,OC_Log::FATAL); + OC_Log::write('core', $entry,OC_Log::FATAL); error_log('DB error: '.$entry); die( $entry ); } @@ -307,7 +308,7 @@ class OC_DB { }catch(PDOException $e){ $entry = 'DB Error: "'.$e->getMessage().'"
    '; $entry .= 'Offending command was: '.$query.'
    '; - OC_Log::write('core',$entry,OC_Log::FATAL); + OC_Log::write('core', $entry,OC_Log::FATAL); error_log('DB error: '.$entry); die( $entry ); } @@ -328,7 +329,7 @@ class OC_DB { */ public static function insertid($table=null){ self::connect(); - if($table !== null){ + if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); $suffix = OC_Config::getValue( "dbsequencesuffix", "_id_seq" ); $table = str_replace( '*PREFIX*', $prefix, $table ); @@ -344,8 +345,8 @@ class OC_DB { */ public static function disconnect(){ // Cut connection if required - if(self::$connection){ - if(self::$backend==self::BACKEND_MDB2){ + if(self::$connection) { + if(self::$backend==self::BACKEND_MDB2) { self::$connection->disconnect(); } self::$connection=false; @@ -407,7 +408,7 @@ class OC_DB { * http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions037.htm */ - if( $CONFIG_DBTYPE == 'pgsql' ){ //mysql support it too but sqlite doesn't + if( $CONFIG_DBTYPE == 'pgsql' ) { //mysql support it too but sqlite doesn't $content = str_replace( '0000-00-00 00:00:00', 'CURRENT_TIMESTAMP', $content ); } @@ -420,10 +421,10 @@ class OC_DB { unlink( $file2 ); // Die in case something went wrong - if( $definition instanceof MDB2_Schema_Error ){ + if( $definition instanceof MDB2_Schema_Error ) { die( $definition->getMessage().': '.$definition->getUserInfo()); } - if(OC_Config::getValue('dbtype','sqlite')==='oci'){ + if(OC_Config::getValue('dbtype', 'sqlite')==='oci') { unset($definition['charset']); //or MDB2 tries SHUTDOWN IMMEDIATE $oldname = $definition['name']; $definition['name']=OC_Config::getValue( "dbuser", $oldname ); @@ -432,7 +433,7 @@ class OC_DB { $ret=self::$schema->createDatabase( $definition ); // Die in case something went wrong - if( $ret instanceof MDB2_Error ){ + if( $ret instanceof MDB2_Error ) { echo (self::$MDB2->getDebugOutput()); die ($ret->getMessage() . ': ' . $ret->getUserInfo()); } @@ -456,7 +457,7 @@ class OC_DB { $previousSchema = self::$schema->getDefinitionFromDatabase(); if (PEAR::isError($previousSchema)) { $error = $previousSchema->getMessage(); - OC_Log::write('core','Failed to get existing database structure for upgrading ('.$error.')',OC_Log::FATAL); + OC_Log::write('core', 'Failed to get existing database structure for upgrading ('.$error.')', OC_Log::FATAL); return false; } @@ -483,7 +484,7 @@ class OC_DB { if (PEAR::isError($op)) { $error = $op->getMessage(); $detail = $op->getDebugInfo(); - OC_Log::write('core','Failed to update database structure ('.$error.', '.$detail.')',OC_Log::FATAL); + OC_Log::write('core', 'Failed to update database structure ('.$error.', '.$detail.')', OC_Log::FATAL); return false; } return true; @@ -502,8 +503,8 @@ class OC_DB { self::$MDB2->loadModule('Reverse'); // Connect if this did not happen before - if(!self::$schema){ - require_once('MDB2/Schema.php'); + if(!self::$schema) { + require_once 'MDB2/Schema.php'; self::$schema=MDB2_Schema::factory(self::$MDB2); } @@ -521,24 +522,24 @@ class OC_DB { private static function processQuery( $query ){ self::connect(); // We need Database type and table prefix - if(is_null(self::$type)){ + if(is_null(self::$type)) { self::$type=OC_Config::getValue( "dbtype", "sqlite" ); } $type = self::$type; - if(is_null(self::$prefix)){ + if(is_null(self::$prefix)) { self::$prefix=OC_Config::getValue( "dbtableprefix", "oc_" ); } $prefix = self::$prefix; // differences in escaping of table names ('`' for mysql) and getting the current timestamp - if( $type == 'sqlite' || $type == 'sqlite3' ){ + if( $type == 'sqlite' || $type == 'sqlite3' ) { $query = str_replace( '`', '"', $query ); $query = str_ireplace( 'NOW()', 'datetime(\'now\')', $query ); $query = str_ireplace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $query ); - }elseif( $type == 'pgsql' ){ + }elseif( $type == 'pgsql' ) { $query = str_replace( '`', '"', $query ); $query = str_ireplace( 'UNIX_TIMESTAMP()', 'cast(extract(epoch from current_timestamp) as integer)', $query ); - }elseif( $type == 'oci' ){ + }elseif( $type == 'oci' ) { $query = str_replace( '`', '"', $query ); $query = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); } @@ -600,7 +601,7 @@ class OC_DB { foreach($apps as $app){ $path = OC_App::getAppPath($app).'/appinfo/database.xml'; - if(file_exists($path)){ + if(file_exists($path)) { self::removeDBStructure( $path ); } } @@ -608,8 +609,7 @@ class OC_DB { // Create new tables self::createDBFromStructure( $file ); self::commit(); - - } + } /** * Start a transaction @@ -626,9 +626,9 @@ class OC_DB { /** * Commit the database changes done during a transaction that is in progress */ - public static function commit(){ + public static function commit() { self::connect(); - if(!self::$inTransaction){ + if(!self::$inTransaction) { return false; } self::$connection->commit(); @@ -641,7 +641,7 @@ class OC_DB { * @return bool */ public static function isError($result){ - if(!$result){ + if(!$result) { return true; }elseif(self::$backend==self::BACKEND_MDB2 and PEAR::isError($result)){ return true; @@ -672,7 +672,7 @@ class PDOStatementWrapper{ }else{ $result=$this->statement->execute(); } - if($result){ + if($result) { return $this; }else{ return false; @@ -703,7 +703,7 @@ class PDOStatementWrapper{ * pass all other function directly to the PDOStatement */ public function __call($name,$arguments){ - return call_user_func_array(array($this->statement,$name),$arguments); + return call_user_func_array(array($this->statement,$name), $arguments); } /** -- cgit v1.2.3 From ebb28412ca47889019aa4c0f278fe3b9097996f8 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 5 Sep 2012 23:28:59 +0200 Subject: no more require_once() --- apps/files_encryption/lib/crypt.php | 2 +- apps/files_external/lib/smb.php | 2 +- apps/files_external/lib/swift.php | 2 +- apps/files_versions/appinfo/app.php | 2 +- apps/user_webdavauth/appinfo/app.php | 2 +- l10n/templates/core.pot | 6 +---- l10n/templates/files.pot | 44 ++++++++++++++++++++---------------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- lib/MDB2/Driver/Datatype/sqlite3.php | 2 +- lib/MDB2/Driver/Function/sqlite3.php | 2 +- lib/MDB2/Driver/Manager/sqlite3.php | 2 +- lib/MDB2/Driver/Reverse/sqlite3.php | 2 +- lib/filesystem.php | 2 +- lib/mail.php | 2 +- lib/migrate.php | 4 ++-- lib/minimizer/css.php | 2 +- lib/minimizer/js.php | 2 +- search/ajax/search.php | 2 +- settings/admin.php | 2 +- settings/ajax/disableapp.php | 2 +- settings/ajax/enableapp.php | 2 +- settings/ajax/togglesubadmins.php | 2 +- tests/lib/archive/tar.php | 2 +- tests/lib/archive/zip.php | 2 +- 30 files changed, 54 insertions(+), 54 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 0770bca018d..ebc09e78961 100644 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -31,7 +31,7 @@ // - IMPORTANT! Check if the block lenght of the encrypted data stays the same -require_once('Crypt_Blowfish/Blowfish.php'); +require_once 'Crypt_Blowfish/Blowfish.php'; /** * This class is for crypting and decrypting diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php index 8a5e993b1d0..91c0f16c1f6 100644 --- a/apps/files_external/lib/smb.php +++ b/apps/files_external/lib/smb.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -require_once('smb4php/smb.php'); +require_once 'smb4php/smb.php'; class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{ private $password; diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 1868bc4ba77..9a4b5c6dd2b 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -require_once('php-cloudfiles/cloudfiles.php'); +require_once 'php-cloudfiles/cloudfiles.php'; class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ private $host; diff --git a/apps/files_versions/appinfo/app.php b/apps/files_versions/appinfo/app.php index 9ac7f6d5cde..746f89a8139 100644 --- a/apps/files_versions/appinfo/app.php +++ b/apps/files_versions/appinfo/app.php @@ -1,6 +1,6 @@ \n" "Language-Team: LANGUAGE \n" @@ -29,10 +29,6 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - #: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9d519c1a517..44a43dfd40b 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 460fd2df782..99b6ae69c3b 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index de03296ccbb..adca26e6ea3 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index e1ab849fe35..160cb143db5 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 61a011e4e32..be0aedd0b89 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 82f5c27fddd..cfbef6875d2 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:51+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 7c8028eff73..f506265f120 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"POT-Creation-Date: 2012-09-05 22:51+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index b33a2245ac2..403d1173b37 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/MDB2/Driver/Datatype/sqlite3.php b/lib/MDB2/Driver/Datatype/sqlite3.php index 66c68b93778..673706e518c 100644 --- a/lib/MDB2/Driver/Datatype/sqlite3.php +++ b/lib/MDB2/Driver/Datatype/sqlite3.php @@ -20,7 +20,7 @@ * */ -require_once('MDB2/Driver/Datatype/Common.php'); +require_once 'MDB2/Driver/Datatype/Common.php'; /** * MDB2 SQLite driver diff --git a/lib/MDB2/Driver/Function/sqlite3.php b/lib/MDB2/Driver/Function/sqlite3.php index 790bd0e747b..235a106e183 100644 --- a/lib/MDB2/Driver/Function/sqlite3.php +++ b/lib/MDB2/Driver/Function/sqlite3.php @@ -20,7 +20,7 @@ * */ -require_once('MDB2/Driver/Function/Common.php'); +require_once 'MDB2/Driver/Function/Common.php'; /** * MDB2 SQLite driver for the function modules diff --git a/lib/MDB2/Driver/Manager/sqlite3.php b/lib/MDB2/Driver/Manager/sqlite3.php index 10255a3619a..0101f8ee2ab 100644 --- a/lib/MDB2/Driver/Manager/sqlite3.php +++ b/lib/MDB2/Driver/Manager/sqlite3.php @@ -20,7 +20,7 @@ * */ -require_once('MDB2/Driver/Manager/Common.php'); +require_once 'MDB2/Driver/Manager/Common.php'; /** * MDB2 SQLite driver for the management modules diff --git a/lib/MDB2/Driver/Reverse/sqlite3.php b/lib/MDB2/Driver/Reverse/sqlite3.php index e5c758e3503..36626478ce8 100644 --- a/lib/MDB2/Driver/Reverse/sqlite3.php +++ b/lib/MDB2/Driver/Reverse/sqlite3.php @@ -20,7 +20,7 @@ * */ -require_once('MDB2/Driver/Reverse/Common.php'); +require_once 'MDB2/Driver/Reverse/Common.php'; /** * MDB2 SQlite driver for the schema reverse engineering module diff --git a/lib/filesystem.php b/lib/filesystem.php index 327329f9d91..c69970467f5 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -559,4 +559,4 @@ OC_Hook::connect('OC_Filesystem','post_delete','OC_Filesystem','removeETagHook') OC_Hook::connect('OC_Filesystem','post_rename','OC_Filesystem','removeETagHook'); OC_Util::setupFS(); -require_once('filecache.php'); +require_once 'filecache.php'; diff --git a/lib/mail.php b/lib/mail.php index fc9aebfda3b..15e91158e1c 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -12,7 +12,7 @@ * A class to handle mail sending. */ -require_once('class.phpmailer.php'); +require_once 'class.phpmailer.php'; class OC_Mail { diff --git a/lib/migrate.php b/lib/migrate.php index 7d7169c4e46..b3ef00cbf6d 100644 --- a/lib/migrate.php +++ b/lib/migrate.php @@ -376,7 +376,7 @@ class OC_Migrate{ // Connect if this did not happen before if( !self::$schema ){ - require_once('MDB2/Schema.php'); + require_once 'MDB2/Schema.php'; self::$schema=MDB2_Schema::factory( self::$MDB2 ); } @@ -471,7 +471,7 @@ class OC_Migrate{ } // Already connected if(!self::$MDB2){ - require_once('MDB2.php'); + require_once 'MDB2.php'; $datadir = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); diff --git a/lib/minimizer/css.php b/lib/minimizer/css.php index 110935ea3b7..0f1435fde45 100644 --- a/lib/minimizer/css.php +++ b/lib/minimizer/css.php @@ -1,6 +1,6 @@ Date: Thu, 6 Sep 2012 02:06:37 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 3 +- apps/files/l10n/cs_CZ.php | 58 ++++++++++--------- apps/files/l10n/da.php | 2 +- apps/files/l10n/de.php | 3 +- apps/files/l10n/el.php | 2 +- apps/files/l10n/eo.php | 2 +- apps/files/l10n/es.php | 3 +- apps/files/l10n/et_EE.php | 2 +- apps/files/l10n/eu.php | 2 +- apps/files/l10n/fa.php | 2 +- apps/files/l10n/fi_FI.php | 3 +- apps/files/l10n/fr.php | 3 +- apps/files/l10n/gl.php | 2 +- apps/files/l10n/hr.php | 2 +- apps/files/l10n/hu_HU.php | 2 +- apps/files/l10n/id.php | 2 +- apps/files/l10n/it.php | 3 +- apps/files/l10n/ja_JP.php | 3 +- apps/files/l10n/ko.php | 2 +- apps/files/l10n/lb.php | 2 +- apps/files/l10n/lv.php | 2 +- apps/files/l10n/nb_NO.php | 2 +- apps/files/l10n/nl.php | 4 +- apps/files/l10n/pl.php | 3 +- apps/files/l10n/pt_BR.php | 2 +- apps/files/l10n/pt_PT.php | 2 +- apps/files/l10n/ru.php | 2 +- apps/files/l10n/sl.php | 3 +- apps/files/l10n/sv.php | 3 +- apps/files/l10n/th_TH.php | 3 +- apps/files/l10n/tr.php | 2 +- apps/files/l10n/zh_CN.GB2312.php | 2 +- apps/files/l10n/zh_CN.php | 2 +- apps/files_encryption/l10n/cs_CZ.php | 8 +-- apps/files_encryption/l10n/sk_SK.php | 6 ++ apps/files_external/l10n/cs_CZ.php | 16 ++--- apps/files_external/l10n/fi_FI.php | 2 + apps/files_sharing/l10n/cs_CZ.php | 5 +- apps/files_sharing/l10n/nl.php | 3 +- apps/files_versions/l10n/cs_CZ.php | 4 +- apps/user_ldap/l10n/cs_CZ.php | 46 +++++++-------- apps/user_ldap/l10n/fi_FI.php | 6 ++ core/l10n/ca.php | 1 - core/l10n/cs_CZ.php | 38 ++++++------ core/l10n/da.php | 1 - core/l10n/de.php | 1 - core/l10n/el.php | 1 - core/l10n/eo.php | 1 - core/l10n/es.php | 1 - core/l10n/et_EE.php | 1 - core/l10n/eu.php | 1 - core/l10n/fa.php | 1 - core/l10n/fi_FI.php | 1 - core/l10n/fr.php | 1 - core/l10n/gl.php | 1 - core/l10n/hr.php | 1 - core/l10n/hu_HU.php | 1 - core/l10n/it.php | 1 - core/l10n/ja_JP.php | 1 - core/l10n/ko.php | 1 - core/l10n/lt_LT.php | 1 - core/l10n/mk.php | 1 - core/l10n/ms_MY.php | 1 - core/l10n/nb_NO.php | 1 - core/l10n/nl.php | 2 +- core/l10n/pl.php | 1 - core/l10n/pt_BR.php | 1 - core/l10n/pt_PT.php | 1 - core/l10n/ru.php | 1 - core/l10n/sk_SK.php | 1 - core/l10n/sl.php | 1 - core/l10n/sv.php | 1 - core/l10n/th_TH.php | 1 - core/l10n/tr.php | 1 - core/l10n/vi.php | 1 - core/l10n/zh_CN.GB2312.php | 1 - core/l10n/zh_TW.php | 1 - l10n/af/core.po | 38 ++++++------ l10n/af/files.po | 46 ++++++++------- l10n/ar/core.po | 38 ++++++------ l10n/ar/files.po | 46 ++++++++------- l10n/ar_SA/core.po | 38 ++++++------ l10n/ar_SA/files.po | 46 ++++++++------- l10n/bg_BG/core.po | 38 ++++++------ l10n/bg_BG/files.po | 46 ++++++++------- l10n/ca/core.po | 40 ++++++------- l10n/ca/files.po | 51 ++++++++-------- l10n/ca/settings.po | 13 +++-- l10n/cs_CZ/core.po | 79 ++++++++++++------------- l10n/cs_CZ/files.po | 109 ++++++++++++++++++----------------- l10n/cs_CZ/files_encryption.po | 17 +++--- l10n/cs_CZ/files_external.po | 25 ++++---- l10n/cs_CZ/files_sharing.po | 19 +++--- l10n/cs_CZ/files_versions.po | 15 ++--- l10n/cs_CZ/lib.po | 45 ++++++++------- l10n/cs_CZ/settings.po | 87 ++++++++++++++-------------- l10n/cs_CZ/user_ldap.po | 55 +++++++++--------- l10n/da/core.po | 40 ++++++------- l10n/da/files.po | 48 ++++++++------- l10n/de/core.po | 40 ++++++------- l10n/de/files.po | 50 ++++++++-------- l10n/de/settings.po | 10 ++-- l10n/el/core.po | 38 ++++++------ l10n/el/files.po | 48 ++++++++------- l10n/eo/core.po | 38 ++++++------ l10n/eo/files.po | 48 ++++++++------- l10n/es/core.po | 40 ++++++------- l10n/es/files.po | 50 ++++++++-------- l10n/es/settings.po | 12 ++-- l10n/et_EE/core.po | 38 ++++++------ l10n/et_EE/files.po | 48 ++++++++------- l10n/eu/core.po | 38 ++++++------ l10n/eu/files.po | 48 ++++++++------- l10n/eu_ES/core.po | 38 ++++++------ l10n/eu_ES/files.po | 46 ++++++++------- l10n/fa/core.po | 38 ++++++------ l10n/fa/files.po | 48 ++++++++------- l10n/fi/core.po | 38 ++++++------ l10n/fi/files.po | 46 ++++++++------- l10n/fi_FI/core.po | 38 ++++++------ l10n/fi_FI/files.po | 50 ++++++++-------- l10n/fi_FI/files_external.po | 13 +++-- l10n/fi_FI/settings.po | 12 ++-- l10n/fi_FI/user_ldap.po | 19 +++--- l10n/fr/core.po | 40 ++++++------- l10n/fr/files.po | 51 ++++++++-------- l10n/fr/settings.po | 13 +++-- l10n/gl/core.po | 38 ++++++------ l10n/gl/files.po | 48 ++++++++------- l10n/he/core.po | 38 ++++++------ l10n/he/files.po | 46 ++++++++------- l10n/hi/core.po | 38 ++++++------ l10n/hi/files.po | 46 ++++++++------- l10n/hr/core.po | 38 ++++++------ l10n/hr/files.po | 48 ++++++++------- l10n/hu_HU/core.po | 38 ++++++------ l10n/hu_HU/files.po | 48 ++++++++------- l10n/hy/core.po | 38 ++++++------ l10n/hy/files.po | 46 ++++++++------- l10n/ia/core.po | 38 ++++++------ l10n/ia/files.po | 46 ++++++++------- l10n/id/core.po | 38 ++++++------ l10n/id/files.po | 48 ++++++++------- l10n/id_ID/core.po | 38 ++++++------ l10n/id_ID/files.po | 46 ++++++++------- l10n/it/core.po | 40 ++++++------- l10n/it/files.po | 50 ++++++++-------- l10n/it/settings.po | 12 ++-- l10n/ja_JP/core.po | 40 ++++++------- l10n/ja_JP/files.po | 50 ++++++++-------- l10n/ja_JP/settings.po | 20 +++---- l10n/ko/core.po | 38 ++++++------ l10n/ko/files.po | 48 ++++++++------- l10n/lb/core.po | 38 ++++++------ l10n/lb/files.po | 48 ++++++++------- l10n/lt_LT/core.po | 38 ++++++------ l10n/lt_LT/files.po | 46 ++++++++------- l10n/lv/core.po | 38 ++++++------ l10n/lv/files.po | 48 ++++++++------- l10n/mk/core.po | 38 ++++++------ l10n/mk/files.po | 46 ++++++++------- l10n/ms_MY/core.po | 38 ++++++------ l10n/ms_MY/files.po | 48 ++++++++------- l10n/nb_NO/core.po | 38 ++++++------ l10n/nb_NO/files.po | 48 ++++++++------- l10n/nl/core.po | 43 +++++++------- l10n/nl/files.po | 53 +++++++++-------- l10n/nl/files_sharing.po | 15 ++--- l10n/nl/settings.po | 23 ++++---- l10n/nn_NO/core.po | 38 ++++++------ l10n/nn_NO/files.po | 46 ++++++++------- l10n/pl/core.po | 38 ++++++------ l10n/pl/files.po | 51 ++++++++-------- l10n/pl/settings.po | 25 ++++---- l10n/pl_PL/core.po | 38 ++++++------ l10n/pl_PL/files.po | 46 ++++++++------- l10n/pt_BR/core.po | 38 ++++++------ l10n/pt_BR/files.po | 48 ++++++++------- l10n/pt_PT/core.po | 38 ++++++------ l10n/pt_PT/files.po | 48 ++++++++------- l10n/ro/core.po | 38 ++++++------ l10n/ro/files.po | 46 ++++++++------- l10n/ru/core.po | 38 ++++++------ l10n/ru/files.po | 48 ++++++++------- l10n/ru_RU/core.po | 38 ++++++------ l10n/ru_RU/files.po | 46 ++++++++------- l10n/sk_SK/core.po | 38 ++++++------ l10n/sk_SK/files.po | 46 ++++++++------- l10n/sk_SK/files_encryption.po | 17 +++--- l10n/sl/core.po | 40 ++++++------- l10n/sl/files.po | 50 ++++++++-------- l10n/sl/settings.po | 12 ++-- l10n/so/core.po | 38 ++++++------ l10n/so/files.po | 46 ++++++++------- l10n/sr/core.po | 38 ++++++------ l10n/sr/files.po | 46 ++++++++------- l10n/sr@latin/core.po | 38 ++++++------ l10n/sr@latin/files.po | 46 ++++++++------- l10n/sv/core.po | 40 ++++++------- l10n/sv/files.po | 50 ++++++++-------- l10n/sv/settings.po | 20 +++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/core.po | 40 ++++++------- l10n/th_TH/files.po | 50 ++++++++-------- l10n/th_TH/settings.po | 20 +++---- l10n/tr/core.po | 40 ++++++------- l10n/tr/files.po | 48 ++++++++------- l10n/uk/core.po | 38 ++++++------ l10n/uk/files.po | 48 ++++++++------- l10n/vi/core.po | 38 ++++++------ l10n/vi/files.po | 46 ++++++++------- l10n/zh_CN.GB2312/core.po | 38 ++++++------ l10n/zh_CN.GB2312/files.po | 48 ++++++++------- l10n/zh_CN/core.po | 38 ++++++------ l10n/zh_CN/files.po | 48 ++++++++------- l10n/zh_TW/core.po | 40 ++++++------- l10n/zh_TW/files.po | 46 ++++++++------- lib/l10n/cs_CZ.php | 15 +++-- settings/l10n/ca.php | 3 + settings/l10n/cs_CZ.php | 60 ++++++++++++------- settings/l10n/de.php | 3 + settings/l10n/es.php | 3 + settings/l10n/fi_FI.php | 3 + settings/l10n/fr.php | 3 + settings/l10n/it.php | 3 + settings/l10n/ja_JP.php | 7 +++ settings/l10n/nl.php | 8 +++ settings/l10n/pl.php | 9 +++ settings/l10n/sl.php | 3 + settings/l10n/sv.php | 7 +++ settings/l10n/th_TH.php | 7 +++ 239 files changed, 3091 insertions(+), 2987 deletions(-) create mode 100644 apps/files_encryption/l10n/sk_SK.php (limited to 'lib') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index d887c8a9521..6d232f217e8 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -12,8 +12,8 @@ "replace" => "substitueix", "cancel" => "cancel·la", "replaced" => "substituït", -"with" => "per", "undo" => "desfés", +"with" => "per", "deleted" => "esborrat", "generating ZIP-file, it may take some time." => "s'estan generant fitxers ZIP, pot trigar una estona.", "Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Activa la baixada ZIP", "0 is unlimited" => "0 és sense límit", "Maximum input size for ZIP files" => "Mida màxima d'entrada per fitxers ZIP", +"Save" => "Desar", "New" => "Nou", "Text file" => "Fitxer de text", "Folder" => "Carpeta", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 4dc4b8b0cb1..228f6a3898e 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,51 +1,53 @@ "Soubor byl odeslán úspěšně", -"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Odeslaný soubor přesáhl velikostí parametr upload_max_filesize v php.ini", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl velikostí parametr MAX_FILE_SIZE specifikovaný v HTML formuláři", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Odeslaný soubor přesáhl svou velikostí parametr upload_max_filesize v php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML", "The uploaded file was only partially uploaded" => "Soubor byl odeslán pouze částečně", -"No file was uploaded" => "Soubor nebyl odeslán", -"Missing a temporary folder" => "Chybí adresář pro sočasné soubory", -"Failed to write to disk" => "Zápis na disk se nezdařil", +"No file was uploaded" => "Žádný soubor nebyl odeslán", +"Missing a temporary folder" => "Chybí adresář pro dočasné soubory", +"Failed to write to disk" => "Zápis na disk selhal", "Files" => "Soubory", -"Delete" => "Vymazat", +"Delete" => "Smazat", "already exists" => "již existuje", -"replace" => "zaměnit", -"cancel" => "storno", -"replaced" => "zaměněno", -"with" => "s", +"replace" => "nahradit", +"cancel" => "zrušit", +"replaced" => "nahrazeno", "undo" => "zpět", +"with" => "s", "deleted" => "smazáno", -"generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to chvíli trvat", -"Unable to upload your file as it is a directory or has 0 bytes" => "Nemohu nahrát váš soubor neboť to je adresář a nebo má nulovou délku.", -"Upload Error" => "Chyba při nahrávání", -"Pending" => "Očekává se", -"Upload cancelled." => "Nahrávání zrušeno", -"Invalid name, '/' is not allowed." => "Špatné jméno, znak '/' není povolen", +"generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to nějakou dobu trvat.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů", +"Upload Error" => "Chyba odesílání", +"Pending" => "Čekající", +"Upload cancelled." => "Odesílání zrušeno.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", +"Invalid name, '/' is not allowed." => "Neplatný název, znak '/' není povolen", "Size" => "Velikost", "Modified" => "Změněno", -"folder" => "adresář", -"folders" => "adresáře", +"folder" => "složka", +"folders" => "složky", "file" => "soubor", "files" => "soubory", -"File handling" => "Nastavení chování k souborům", -"Maximum upload size" => "Maximální velikost ukládaných souborů", -"max. possible: " => "největší možná:", -"Needed for multi-file and folder downloads." => "Potřeba pro vícesoborvé stahování a stahování adresářů", +"File handling" => "Zacházení se soubory", +"Maximum upload size" => "Maximální velikost pro odesílání", +"max. possible: " => "největší možná: ", +"Needed for multi-file and folder downloads." => "Potřebné pro více-souborové stahování a stahování složek.", "Enable ZIP-download" => "Povolit ZIP-stahování", "0 is unlimited" => "0 znamená bez omezení", "Maximum input size for ZIP files" => "Maximální velikost vstupu pro ZIP soubory", +"Save" => "Uložit", "New" => "Nový", "Text file" => "Textový soubor", -"Folder" => "Adresář", +"Folder" => "Složka", "From url" => "Z url", -"Upload" => "Uložit", -"Cancel upload" => "Zrušit upload", -"Nothing in here. Upload something!" => "Žádný obsah. Uložte si něco!", +"Upload" => "Odeslat", +"Cancel upload" => "Zrušit odesílání", +"Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", "Name" => "Název", "Share" => "Sdílet", "Download" => "Stáhnout", -"Upload too large" => "Příliš velký soubor", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte uložit, překračují maximální velikosti uploadu na tomto serveru.", +"Upload too large" => "Odeslaný soubor je příliš velký", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.", "Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.", "Current scanning" => "Aktuální prohledávání" ); diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index a842088e7b5..020f6142ec6 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -12,8 +12,8 @@ "replace" => "erstat", "cancel" => "fortryd", "replaced" => "erstattet", -"with" => "med", "undo" => "fortryd", +"with" => "med", "deleted" => "Slettet", "generating ZIP-file, it may take some time." => "genererer ZIP-fil, det kan tage lidt tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 7a3e61f9bec..a267d31009b 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -12,8 +12,8 @@ "replace" => "ersetzen", "cancel" => "abbrechen", "replaced" => "ersetzt", -"with" => "mit", "undo" => "rückgängig machen", +"with" => "mit", "deleted" => "gelöscht", "generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie ein Verzeichnis ist oder 0 Bytes hat.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "ZIP-Download aktivieren", "0 is unlimited" => "0 bedeutet unbegrenzt", "Maximum input size for ZIP files" => "Maximale Größe für ZIP-Dateien", +"Save" => "Speichern", "New" => "Neu", "Text file" => "Textdatei", "Folder" => "Ordner", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 3ab4b120949..9f311c6b28e 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -12,8 +12,8 @@ "replace" => "αντικατέστησε", "cancel" => "ακύρωση", "replaced" => "αντικαταστάθηκε", -"with" => "με", "undo" => "αναίρεση", +"with" => "με", "deleted" => "διαγράφηκε", "generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.", "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index acaf06e830c..bf17b97244c 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -12,8 +12,8 @@ "replace" => "anstataŭigi", "cancel" => "nuligi", "replaced" => "anstataŭigita", -"with" => "kun", "undo" => "malfari", +"with" => "kun", "deleted" => "forigita", "generating ZIP-file, it may take some time." => "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo", "Unable to upload your file as it is a directory or has 0 bytes" => "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 8e17b7931b0..c998c8cb57a 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -12,8 +12,8 @@ "replace" => "reemplazar", "cancel" => "cancelar", "replaced" => "reemplazado", -"with" => "con", "undo" => "deshacer", +"with" => "con", "deleted" => "borrado", "generating ZIP-file, it may take some time." => "generando un fichero ZIP, puede llevar un tiempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Habilitar descarga en ZIP", "0 is unlimited" => "0 es ilimitado", "Maximum input size for ZIP files" => "Tamaño máximo para archivos ZIP de entrada", +"Save" => "Guardar", "New" => "Nuevo", "Text file" => "Archivo de texto", "Folder" => "Carpeta", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 956c5cc9115..0763745788b 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -12,8 +12,8 @@ "replace" => "asenda", "cancel" => "loobu", "replaced" => "asendatud", -"with" => "millega", "undo" => "tagasi", +"with" => "millega", "deleted" => "kustutatud", "generating ZIP-file, it may take some time." => "ZIP-faili loomine, see võib veidi aega võtta.", "Unable to upload your file as it is a directory or has 0 bytes" => "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index d9c2689d1cd..3897a5580f3 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -12,8 +12,8 @@ "replace" => "ordeztu", "cancel" => "ezeztatu", "replaced" => "ordeztua", -"with" => "honekin", "undo" => "desegin", +"with" => "honekin", "deleted" => "ezabatuta", "generating ZIP-file, it may take some time." => "ZIP-fitxategia sortzen ari da, denbora har dezake", "Unable to upload your file as it is a directory or has 0 bytes" => "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 4dac88fc542..e6ddd50f917 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -12,8 +12,8 @@ "replace" => "جایگزین", "cancel" => "لغو", "replaced" => "جایگزین‌شده", -"with" => "همراه", "undo" => "بازگشت", +"with" => "همراه", "deleted" => "حذف شده", "generating ZIP-file, it may take some time." => "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد", "Unable to upload your file as it is a directory or has 0 bytes" => "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 3ed56de6419..eaed70c6246 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -12,8 +12,8 @@ "replace" => "korvaa", "cancel" => "peru", "replaced" => "korvattu", -"with" => "käyttäen", "undo" => "kumoa", +"with" => "käyttäen", "deleted" => "poistettu", "generating ZIP-file, it may take some time." => "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken.", "Unable to upload your file as it is a directory or has 0 bytes" => "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Ota ZIP-paketin lataaminen käytöön", "0 is unlimited" => "0 on rajoittamaton", "Maximum input size for ZIP files" => "ZIP-tiedostojen enimmäiskoko", +"Save" => "Tallenna", "New" => "Uusi", "Text file" => "Tekstitiedosto", "Folder" => "Kansio", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index d0a4c020f38..0b7d226de74 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -12,8 +12,8 @@ "replace" => "remplacer", "cancel" => "annuler", "replaced" => "remplacé", -"with" => "avec", "undo" => "annuler", +"with" => "avec", "deleted" => "supprimé", "generating ZIP-file, it may take some time." => "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Activer le téléchargement ZIP", "0 is unlimited" => "0 est illimité", "Maximum input size for ZIP files" => "Taille maximale pour les fichiers ZIP", +"Save" => "Sauvegarder", "New" => "Nouveau", "Text file" => "Fichier texte", "Folder" => "Dossier", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 3a36a23f0ca..67293de5cb7 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -12,8 +12,8 @@ "replace" => "substituír", "cancel" => "cancelar", "replaced" => "substituído", -"with" => "con", "undo" => "desfacer", +"with" => "con", "deleted" => "eliminado", "generating ZIP-file, it may take some time." => "xerando ficheiro ZIP, pode levar un anaco.", "Unable to upload your file as it is a directory or has 0 bytes" => "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes", diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index cb8eb4033cf..b05b7c568b4 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -12,8 +12,8 @@ "replace" => "zamjeni", "cancel" => "odustani", "replaced" => "zamjenjeno", -"with" => "sa", "undo" => "vrati", +"with" => "sa", "deleted" => "izbrisano", "generating ZIP-file, it may take some time." => "generiranje ZIP datoteke, ovo može potrajati.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nemoguće poslati datoteku jer je prazna ili je direktorij", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 8d52765e93e..95b3c57ce11 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -12,8 +12,8 @@ "replace" => "cserél", "cancel" => "mégse", "replaced" => "kicserélve", -"with" => "-val/-vel", "undo" => "visszavon", +"with" => "-val/-vel", "deleted" => "törölve", "generating ZIP-file, it may take some time." => "ZIP-fájl generálása, ez eltarthat egy ideig.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 399056bf278..351d0641388 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -12,8 +12,8 @@ "replace" => "mengganti", "cancel" => "batalkan", "replaced" => "diganti", -"with" => "dengan", "undo" => "batal dikerjakan", +"with" => "dengan", "deleted" => "dihapus", "generating ZIP-file, it may take some time." => "membuat berkas ZIP, ini mungkin memakan waktu.", "Unable to upload your file as it is a directory or has 0 bytes" => "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 607969746cf..d0deb4f0f07 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -12,8 +12,8 @@ "replace" => "sostituisci", "cancel" => "annulla", "replaced" => "sostituito", -"with" => "con", "undo" => "annulla", +"with" => "con", "deleted" => "eliminati", "generating ZIP-file, it may take some time." => "creazione file ZIP, potrebbe richiedere del tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Abilita scaricamento ZIP", "0 is unlimited" => "0 è illimitato", "Maximum input size for ZIP files" => "Dimensione massima per i file ZIP", +"Save" => "Salva", "New" => "Nuovo", "Text file" => "File di testo", "Folder" => "Cartella", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 6dbdf8215da..2de716fec8a 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -12,8 +12,8 @@ "replace" => "置き換え", "cancel" => "キャンセル", "replaced" => "置換:", -"with" => "←", "undo" => "元に戻す", +"with" => "←", "deleted" => "削除", "generating ZIP-file, it may take some time." => "ZIPファイルを生成中です、しばらくお待ちください。", "Unable to upload your file as it is a directory or has 0 bytes" => "アップロード使用としているファイルがディレクトリ、もしくはサイズが0バイトのため、アップロードできません。", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "ZIP形式のダウンロードを有効にする", "0 is unlimited" => "0を指定した場合は無制限", "Maximum input size for ZIP files" => "ZIPファイルへの最大入力サイズ", +"Save" => "保存", "New" => "新規", "Text file" => "テキストファイル", "Folder" => "フォルダ", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index dafd8597024..121be7d1abb 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -12,8 +12,8 @@ "replace" => "대체", "cancel" => "취소", "replaced" => "대체됨", -"with" => "와", "undo" => "복구", +"with" => "와", "deleted" => "삭제", "generating ZIP-file, it may take some time." => "ZIP파일 생성에 시간이 걸릴 수 있습니다.", "Unable to upload your file as it is a directory or has 0 bytes" => "이 파일은 디렉토리이거나 0 바이트이기 때문에 업로드 할 수 없습니다.", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 7c8244a8747..92acea1d117 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -12,8 +12,8 @@ "replace" => "ersetzen", "cancel" => "ofbriechen", "replaced" => "ersat", -"with" => "mat", "undo" => "réckgängeg man", +"with" => "mat", "deleted" => "geläscht", "generating ZIP-file, it may take some time." => "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass.", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 2ce800a065e..eedab2546c5 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -7,8 +7,8 @@ "replace" => "aizvietot", "cancel" => "atcelt", "replaced" => "aizvietots", -"with" => "ar", "undo" => "vienu soli atpakaļ", +"with" => "ar", "deleted" => "izdzests", "generating ZIP-file, it may take some time." => "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida", "Unable to upload your file as it is a directory or has 0 bytes" => "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 92d0c23bfd2..4a747af2f3a 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -12,8 +12,8 @@ "replace" => "erstatt", "cancel" => "avbryt", "replaced" => "erstattet", -"with" => "med", "undo" => "angre", +"with" => "med", "deleted" => "slettet", "generating ZIP-file, it may take some time." => "opprettet ZIP-fil, dette kan ta litt tid", "Unable to upload your file as it is a directory or has 0 bytes" => "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index fb7ea34b9b8..7acb15054c5 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -12,14 +12,15 @@ "replace" => "vervang", "cancel" => "annuleren", "replaced" => "vervangen", -"with" => "door", "undo" => "ongedaan maken", +"with" => "door", "deleted" => "verwijderd", "generating ZIP-file, it may take some time." => "aanmaken ZIP-file, dit kan enige tijd duren.", "Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes", "Upload Error" => "Upload Fout", "Pending" => "Wachten", "Upload cancelled." => "Uploaden geannuleerd.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "Invalid name, '/' is not allowed." => "Ongeldige naam, '/' is niet toegestaan.", "Size" => "Bestandsgrootte", "Modified" => "Laatst aangepast", @@ -34,6 +35,7 @@ "Enable ZIP-download" => "Zet ZIP-download aan", "0 is unlimited" => "0 is ongelimiteerd", "Maximum input size for ZIP files" => "Maximale grootte voor ZIP bestanden", +"Save" => "Opslaan", "New" => "Nieuw", "Text file" => "Tekstbestand", "Folder" => "Map", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index a95c995d252..7fd31faefd7 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -12,8 +12,8 @@ "replace" => "zastap", "cancel" => "anuluj", "replaced" => "zastąpione", -"with" => "z", "undo" => "wróć", +"with" => "z", "deleted" => "skasuj", "generating ZIP-file, it may take some time." => "Generowanie pliku ZIP, może potrwać pewien czas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Włącz pobieranie ZIP-paczki", "0 is unlimited" => "0 jest nielimitowane", "Maximum input size for ZIP files" => "Maksymalna wielkość pliku wejściowego ZIP ", +"Save" => "Zapisz", "New" => "Nowy", "Text file" => "Plik tekstowy", "Folder" => "Katalog", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 09c4f2b0267..e9fe7747c13 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -12,8 +12,8 @@ "replace" => "substituir", "cancel" => "cancelar", "replaced" => "substituido ", -"with" => "com", "undo" => "desfazer", +"with" => "com", "deleted" => "deletado", "generating ZIP-file, it may take some time." => "gerando arquivo ZIP, isso pode levar um tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes.", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index e413d7cbe74..998c494a695 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -12,8 +12,8 @@ "replace" => "substituir", "cancel" => "cancelar", "replaced" => "substituido", -"with" => "com", "undo" => "desfazer", +"with" => "com", "deleted" => "apagado", "generating ZIP-file, it may take some time." => "a gerar o ficheiro ZIP, poderá demorar algum tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou ter 0 bytes", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 3976baeae38..6a76c254047 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -12,8 +12,8 @@ "replace" => "заменить", "cancel" => "отмена", "replaced" => "заменён", -"with" => "с", "undo" => "отмена", +"with" => "с", "deleted" => "удален", "generating ZIP-file, it may take some time." => "создание ZIP-файла, это может занять некоторое время.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не удается загрузить файл размером 0 байт в каталог", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index fa506795d9a..85da041629f 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -12,8 +12,8 @@ "replace" => "nadomesti", "cancel" => "ekliči", "replaced" => "nadomeščen", -"with" => "z", "undo" => "razveljavi", +"with" => "z", "deleted" => "izbrisano", "generating ZIP-file, it may take some time." => "Ustvarjam ZIP datoteko. To lahko traja nekaj časa.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nalaganje ni mogoče, saj gre za mapo, ali pa ima datoteka velikost 0 bajtov.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Omogoči ZIP-prejemanje", "0 is unlimited" => "0 je neskončno", "Maximum input size for ZIP files" => "Največja vhodna velikost za ZIP datoteke", +"Save" => "Shrani", "New" => "Nova", "Text file" => "Besedilna datoteka", "Folder" => "Mapa", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index b76914b642e..f63039d9ee7 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -12,8 +12,8 @@ "replace" => "ersätt", "cancel" => "avbryt", "replaced" => "ersatt", -"with" => "med", "undo" => "ångra", +"with" => "med", "deleted" => "raderad", "generating ZIP-file, it may take some time." => "genererar ZIP-fil, det kan ta lite tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Aktivera ZIP-nerladdning", "0 is unlimited" => "0 är oändligt", "Maximum input size for ZIP files" => "Största tillåtna storlek för ZIP-filer", +"Save" => "Spara", "New" => "Ny", "Text file" => "Textfil", "Folder" => "Mapp", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index d80ec2d877d..689871a11dd 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -12,8 +12,8 @@ "replace" => "แทนที่", "cancel" => "ยกเลิก", "replaced" => "แทนที่แล้ว", -"with" => "กับ", "undo" => "เลิกทำ", +"with" => "กับ", "deleted" => "ลบแล้ว", "generating ZIP-file, it may take some time." => "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่", "Unable to upload your file as it is a directory or has 0 bytes" => "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "อนุญาตให้ดาวน์โหลดเป็นไฟล์ ZIP ได้", "0 is unlimited" => "0 หมายถึงไม่จำกัด", "Maximum input size for ZIP files" => "ขนาดไฟล์ ZIP สูงสุด", +"Save" => "บันทึก", "New" => "อัพโหลดไฟล์ใหม่", "Text file" => "ไฟล์ข้อความ", "Folder" => "แฟ้มเอกสาร", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 630e3563adf..72e0e1427d3 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -12,8 +12,8 @@ "replace" => "değiştir", "cancel" => "iptal", "replaced" => "değiştirildi", -"with" => "ile", "undo" => "geri al", +"with" => "ile", "deleted" => "silindi", "generating ZIP-file, it may take some time." => "ZIP dosyası oluşturuluyor, biraz sürebilir.", "Unable to upload your file as it is a directory or has 0 bytes" => "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 6703e6f9088..42063712eac 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -12,8 +12,8 @@ "replace" => "替换", "cancel" => "取消", "replaced" => "替换过了", -"with" => "随着", "undo" => "撤销", +"with" => "随着", "deleted" => "删除", "generating ZIP-file, it may take some time." => "正在生成ZIP文件,这可能需要点时间", "Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index dc783018848..f24db8f3cb1 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -12,8 +12,8 @@ "replace" => "替换", "cancel" => "取消", "replaced" => "已经替换", -"with" => "随着", "undo" => "撤销", +"with" => "随着", "deleted" => "已经删除", "generating ZIP-file, it may take some time." => "正在生成 ZIP 文件,可能需要一些时间", "Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节", diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 15cf7705709..9be2be98092 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -1,6 +1,6 @@ "Kryptování", -"Exclude the following file types from encryption" => "Při kryptování vynechat následující typy souborů", -"None" => "Žádný", -"Enable Encryption" => "Povolit kryptování" +"Encryption" => "Šifrování", +"Exclude the following file types from encryption" => "Při šifrování vynechat následující typy souborů", +"None" => "Žádné", +"Enable Encryption" => "Povolit šifrování" ); diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php new file mode 100644 index 00000000000..598f1294f6e --- /dev/null +++ b/apps/files_encryption/l10n/sk_SK.php @@ -0,0 +1,6 @@ + "Šifrovanie", +"Exclude the following file types from encryption" => "Vynechať nasledujúce súbory pri šifrovaní", +"None" => "Žiadne", +"Enable Encryption" => "Zapnúť šifrovanie" +); diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index e8a38d86619..75899603349 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -1,18 +1,18 @@ "Externí úložiště", "Mount point" => "Přípojný bod", -"Backend" => "Končící", -"Configuration" => "Konfigurace", -"Options" => "Nastavení", +"Backend" => "Podpůrná vrstva", +"Configuration" => "Nastavení", +"Options" => "Možnosti", "Applicable" => "Platný", -"Add mount point" => "Přidat přípojný bod", +"Add mount point" => "Přidat bod připojení", "None set" => "Nenastaveno", "All Users" => "Všichni uživatelé", "Groups" => "Skupiny", "Users" => "Uživatelé", "Delete" => "Smazat", -"SSL root certificates" => "Kořenové SSL certifikáty", -"Import Root Certificate" => "Import kořenového certifikátu", -"Enable User External Storage" => "Zapnout uživatelské externí úložiště", -"Allow users to mount their own external storage" => "Povolit uživatelů připojit jejich vlastní externí úložiště" +"SSL root certificates" => "Kořenové certifikáty SSL", +"Import Root Certificate" => "Importovat kořenového certifikátu", +"Enable User External Storage" => "Zapnout externí uživatelské úložiště", +"Allow users to mount their own external storage" => "Povolit uživatelům připojení jejich vlastních externích úložišť" ); diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 7dca49791e4..cea671368ed 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -4,6 +4,7 @@ "Backend" => "Taustaosa", "Configuration" => "Asetukset", "Options" => "Valinnat", +"Applicable" => "Sovellettavissa", "Add mount point" => "Lisää liitospiste", "None set" => "Ei asetettu", "All Users" => "Kaikki käyttäjät", @@ -12,5 +13,6 @@ "Delete" => "Poista", "SSL root certificates" => "SSL-juurivarmenteet", "Import Root Certificate" => "Tuo juurivarmenne", +"Enable User External Storage" => "Ota käyttöön ulkopuoliset tallennuspaikat", "Allow users to mount their own external storage" => "Salli käyttäjien liittää omia erillisiä tallennusvälineitä" ); diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index 4836f151099..e9185e979cd 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -1,4 +1,7 @@ "Heslo", -"Submit" => "Potvrdit" +"Submit" => "Odeslat", +"Download" => "Stáhnout", +"No preview available for" => "Náhled není dostupný pro", +"web services under your control" => "služby webu pod Vaší kontrolou" ); diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index a4da2723cae..2f732ed662f 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -1,5 +1,6 @@ "Passeerwoord", +"Password" => "Wachtwoord", +"Submit" => "Verzenden", "Download" => "Downloaden", "No preview available for" => "Geen voorbeeldweergave beschikbaar voor", "web services under your control" => "Webdiensten in eigen beheer" diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index 3297648fa30..4f33c1915f2 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,4 +1,6 @@ "Vypršení všech verzí", +"Expire all versions" => "Vypršet všechny verze", +"Versions" => "Verze", +"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů", "Enable Files Versioning" => "Povolit verzování souborů" ); diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 31d9d7f0895..c90dc9ed568 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -1,37 +1,37 @@ "Hostitel", -"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Nelze vynechat protokol vyžadující SSL. Začněte s ldaps://", -"Base DN" => "Base DN", -"You can specify Base DN for users and groups in the Advanced tab" => "V Rozšířeném nastavení můžete specifikovat pro své uživatele a skupiny element Base DN", -"User DN" => "DN uživatele", +"Host" => "Počítač", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://", +"Base DN" => "Základní DN", +"You can specify Base DN for users and groups in the Advanced tab" => "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny", +"User DN" => "Uživatelské 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 klentského uživatele ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte údaje DN and Heslo prázdné.", "Password" => "Heslo", -"For anonymous access, leave DN and Password empty." => "Pro anonymní přístup ponechte údaje DN and Heslo prázdné.", -"User Login Filter" => "Filtr uživatelských loginů", -"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Definuje filtr, který je aplikován v průběhu logování. %%uid nahrazuje uživatelské jméno během logování.", -"use %%uid placeholder, e.g. \"uid=%%uid\"" => "použijte %%uid pro rezervované místo, např. \"uid=%%uid\"", -"User List Filter" => "Filtr uživateslkých seznamů", -"Defines the filter to apply, when retrieving users." => "Defunije filtr, který je plaikován při návratu uživatelů.", -"without any placeholder, e.g. \"objectClass=person\"." => "bez rezervace místa, např. \"objectClass=person\".", -"Group Filter" => "Filtr skupiny", -"Defines the filter to apply, when retrieving groups." => "Definuje filtr, který je aplikován při návratu skupin", -"without any placeholder, e.g. \"objectClass=posixGroup\"." => "bez rezervace místa, např. \"objectClass=posixGroup\".", +"For anonymous access, leave DN and Password empty." => "Pro anonymní přístup, ponechte údaje DN and heslo prázdné.", +"User Login Filter" => "Filtr přihlášení uživatelů", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Určuje použitý filtr, při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "použijte zástupný vzor %%uid, např. \"uid=%%uid\"", +"User List Filter" => "Filtr uživatelských seznamů", +"Defines the filter to apply, when retrieving users." => "Určuje použitý filtr, pro získávaní uživatelů.", +"without any placeholder, e.g. \"objectClass=person\"." => "bez zástupných znaků, např. \"objectClass=person\".", +"Group Filter" => "Filtr skupin", +"Defines the filter to apply, when retrieving groups." => "Určuje použitý filtr, pro získávaní skupin.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "bez zástupných znaků, např. \"objectClass=posixGroup\".", "Port" => "Port", "Base User Tree" => "Základní uživatelský strom", "Base Group Tree" => "Základní skupinový strom", "Group-Member association" => "Asociace člena skupiny", -"Use TLS" => "Použijte TLS", -"Do not use it for SSL connections, it will fail." => "Nepoužívejte pro SSL připojení, připojení selže.", +"Use TLS" => "Použít TLS", +"Do not use it for SSL connections, it will fail." => "Nepoužívejte pro připojení pomocí SSL, připojení selže.", "Case insensitve LDAP server (Windows)" => "LDAP server nerozlišující velikost znaků (Windows)", -"Turn off SSL certificate validation." => "Vypněte ověřování SSL certifikátu", -"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "pokud pracuje připojení pouze pokud je teto volba aktivní, importujte SSL certifikát LDAP serveru do Vašeho serveru ownCloud.", -"Not recommended, use for testing only." => "Není doporučeno, pouze pro účely testování.", +"Turn off SSL certificate validation." => "Vypnout ověřování SSL certifikátu.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud", +"Not recommended, use for testing only." => "Není doporučeno, pouze pro testovací účely.", "User Display Name Field" => "Pole pro zobrazované jméno uživatele", "The LDAP attribute to use to generate the user`s ownCloud name." => "Atribut LDAP použitý k vytvoření jména uživatele ownCloud", "Group Display Name Field" => "Pole pro zobrazení jména skupiny", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Atribut LDAP použitý k vytvoření jména skupiny ownCloud", -"in bytes" => "v bytech", -"in seconds. A change empties the cache." => "ve vteřinách. Změna vyprázdní dočasnou paměť.", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ponechte prázdné pro uživateslké jméno (výchozí). Jinak uveďte LDAP/AD paramerty", +"in bytes" => "v bajtech", +"in seconds. A change empties the cache." => "ve vteřinách. Změna vyprázdní vyrovnávací paměť.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr.", "Help" => "Nápověda" ); diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index 8bf3a024efb..6d0040868f8 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -8,6 +8,7 @@ "Password" => "Salasana", "For anonymous access, leave DN and Password empty." => "Jos haluat mahdollistaa anonyymin pääsyn, jätä DN ja Salasana tyhjäksi ", "User Login Filter" => "Login suodatus", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Määrittelee käytettävän suodattimen, kun sisäänkirjautumista yritetään. %%uid korvaa sisäänkirjautumisessa käyttäjätunnuksen.", "use %%uid placeholder, e.g. \"uid=%%uid\"" => "käytä %%uid paikanvaraajaa, ts. \"uid=%%uid\"", "User List Filter" => "Käyttäjien suodatus", "Defines the filter to apply, when retrieving users." => "Määrittelee käytettävän suodattimen, kun käyttäjiä haetaan. ", @@ -25,7 +26,12 @@ "Turn off SSL certificate validation." => "Poista käytöstä SSL-varmenteen vahvistus", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi.", "Not recommended, use for testing only." => "Ei suositella, käytä vain testausta varten.", +"User Display Name Field" => "Käyttäjän näytettävän nimen kenttä", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä ", +"Group Display Name Field" => "Ryhmän \"näytettävä nimi\"-kenttä", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi", "in bytes" => "tavuissa", "in seconds. A change empties the cache." => "sekunneissa. Muutos tyhjentää välimuistin.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti.", "Help" => "Ohje" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 52b6d68e47c..6c70c29e6cb 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -2,7 +2,6 @@ "Application name not provided." => "No s'ha facilitat cap nom per l'aplicació.", "No category to add?" => "No voleu afegir cap categoria?", "This category already exists: " => "Aquesta categoria ja existeix:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Arranjament", "January" => "Gener", "February" => "Febrer", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 7daeb52e631..6a4dad08cbd 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,8 +1,7 @@ "Jméno aplikace nezadáno.", +"Application name not provided." => "Nezadán název aplikace.", "No category to add?" => "Žádná kategorie k přidání?", -"This category already exists: " => "Tato kategorie již existuje:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", +"This category already exists: " => "Tato kategorie již existuje: ", "Settings" => "Nastavení", "January" => "Leden", "February" => "Únor", @@ -19,14 +18,14 @@ "Cancel" => "Zrušit", "No" => "Ne", "Yes" => "Ano", -"Ok" => "Budiž", +"Ok" => "Ok", "No categories selected for deletion." => "Žádné kategorie nebyly vybrány ke smazání.", "Error" => "Chyba", -"ownCloud password reset" => "Reset hesla pro ownCloud", -"Use the following link to reset your password: {link}" => "Heslo vyresetujete použitím následujícího odkazu: {link}", -"You will receive a link to reset your password via Email." => "Bude Vám zaslán odkaz pro obnovu hesla", +"ownCloud password reset" => "Obnovení hesla pro ownCloud", +"Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", +"You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.", "Requested" => "Požadováno", -"Login failed!" => "Přihlášení selhalo", +"Login failed!" => "Přihlášení selhalo.", "Username" => "Uživatelské jméno", "Request reset" => "Vyžádat obnovu", "Your password was reset" => "Vaše heslo bylo obnoveno", @@ -36,29 +35,30 @@ "Personal" => "Osobní", "Users" => "Uživatelé", "Apps" => "Aplikace", -"Admin" => "Admin", +"Admin" => "Administrace", "Help" => "Nápověda", -"Access forbidden" => "Přístup odmítnut", +"Access forbidden" => "Přístup zakázán", "Cloud not found" => "Cloud nebyl nalezen", "Edit categories" => "Upravit kategorie", "Add" => "Přidat", "Create an admin account" => "Vytvořit účet správce", "Password" => "Heslo", -"Advanced" => "Rozšířené volby", -"Data folder" => "Datový adresář", -"Configure the database" => "Konfigurace databáze", +"Advanced" => "Pokročilé", +"Data folder" => "Složka s daty", +"Configure the database" => "Nastavit databázi", "will be used" => "bude použito", "Database user" => "Uživatel databáze", -"Database password" => "Heslo k databázi", +"Database password" => "Heslo databáze", "Database name" => "Název databáze", +"Database tablespace" => "Tabulkový prostor databáze", "Database host" => "Hostitel databáze", -"Finish setup" => "Dokončit instalaci", +"Finish setup" => "Dokončit nastavení", "web services under your control" => "webové služby pod Vaší kontrolou", "Log out" => "Odhlásit se", -"Lost your password?" => "Zapomenuté heslo?", +"Lost your password?" => "Ztratili jste své heslo?", "remember" => "zapamatovat si", -"Log in" => "Login", +"Log in" => "Přihlásit", "You are logged out." => "Jste odhlášeni.", -"prev" => "zpět", -"next" => "vpřed" +"prev" => "předchozí", +"next" => "následující" ); diff --git a/core/l10n/da.php b/core/l10n/da.php index 398ebdb670c..4bb953a4c5d 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -2,7 +2,6 @@ "Application name not provided." => "Applikationens navn ikke medsendt", "No category to add?" => "Ingen kategori at tilføje?", "This category already exists: " => "Denne kategori eksisterer allerede: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Indstillinger", "January" => "Januar", "February" => "Februar", diff --git a/core/l10n/de.php b/core/l10n/de.php index fdd940ea39e..611c208fe4d 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -2,7 +2,6 @@ "Application name not provided." => "Applikationsname nicht angegeben", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Einstellungen", "January" => "Januar", "February" => "Februar", diff --git a/core/l10n/el.php b/core/l10n/el.php index d8f32fb51e0..18a26f892c0 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -2,7 +2,6 @@ "Application name not provided." => "Δε προσδιορίστηκε όνομα εφαρμογής", "No category to add?" => "Δεν έχετε να προστέσθέσεται μια κα", "This category already exists: " => "Αυτή η κατηγορία υπάρχει ήδη", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ρυθμίσεις", "January" => "Ιανουάριος", "February" => "Φεβρουάριος", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index f5e5ca9d0e1..930b20a30af 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nomo de aplikaĵo ne proviziiĝis.", "No category to add?" => "Ĉu neniu kategorio estas aldonota?", "This category already exists: " => "Ĉi tiu kategorio jam ekzistas: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Agordo", "January" => "Januaro", "February" => "Februaro", diff --git a/core/l10n/es.php b/core/l10n/es.php index 3a7da551b60..21866d2ed67 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nombre de la aplicación no provisto.", "No category to add?" => "¿Ninguna categoría para añadir?", "This category already exists: " => "Esta categoría ya existe: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ajustes", "January" => "Enero", "February" => "Febrero", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 734021605ca..871cc25fee0 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -2,7 +2,6 @@ "Application name not provided." => "Rakenduse nime pole sisestatud.", "No category to add?" => "Pole kategooriat, mida lisada?", "This category already exists: " => "See kategooria on juba olemas: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Seaded", "January" => "Jaanuar", "February" => "Veebruar", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 2e5a2c00e2a..9e9717dd8d8 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -2,7 +2,6 @@ "Application name not provided." => "Aplikazioaren izena falta da", "No category to add?" => "Ez dago gehitzeko kategoriarik?", "This category already exists: " => "Kategoria hau dagoeneko existitzen da:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ezarpenak", "January" => "Urtarrila", "February" => "Otsaila", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 5fe98629ba2..7b7af3937b8 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -2,7 +2,6 @@ "Application name not provided." => "نام برنامه پیدا نشد", "No category to add?" => "آیا گروه دیگری برای افزودن ندارید", "This category already exists: " => "این گروه از قبل اضافه شده", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "تنظیمات", "January" => "ژانویه", "February" => "فبریه", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 34a69b6c643..d253ee9433a 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -2,7 +2,6 @@ "Application name not provided." => "Sovelluksen nimeä ei määritelty.", "No category to add?" => "Ei lisättävää luokkaa?", "This category already exists: " => "Tämä luokka on jo olemassa: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Asetukset", "January" => "Tammikuu", "February" => "Helmikuu", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index a5632180840..2904ebf48b2 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nom de l'application non fourni.", "No category to add?" => "Pas de catégorie à ajouter ?", "This category already exists: " => "Cette catégorie existe déjà : ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Paramètres", "January" => "janvier", "February" => "février", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index eeff78826f8..af849712199 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -2,7 +2,6 @@ "Application name not provided." => "Non se indicou o nome do aplicativo.", "No category to add?" => "Sen categoría que engadir?", "This category already exists: " => "Esta categoría xa existe: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Preferencias", "January" => "Xaneiro", "February" => "Febreiro", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index d4e773afc1e..723cceb4d01 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -2,7 +2,6 @@ "Application name not provided." => "Ime aplikacije nije pribavljeno.", "No category to add?" => "Nemate kategorija koje možete dodati?", "This category already exists: " => "Ova kategorija već postoji: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Postavke", "January" => "Siječanj", "February" => "Veljača", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index dbfe2781d5f..a97c4cb8861 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -2,7 +2,6 @@ "Application name not provided." => "Alkalmazásnév hiányzik", "No category to add?" => "Nincs hozzáadandó kategória?", "This category already exists: " => "Ez a kategória már létezik", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Beállítások", "January" => "Január", "February" => "Február", diff --git a/core/l10n/it.php b/core/l10n/it.php index b7f174e57a2..8d9ac21cd43 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nome dell'applicazione non fornito.", "No category to add?" => "Nessuna categoria da aggiungere?", "This category already exists: " => "Questa categoria esiste già: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Impostazioni", "January" => "Gennaio", "February" => "Febbraio", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index bef84b09d6c..62f5e16f3ca 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -2,7 +2,6 @@ "Application name not provided." => "アプリケーション名は提供されていません。", "No category to add?" => "追加するカテゴリはありませんか?", "This category already exists: " => "このカテゴリはすでに存在します: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "設定", "January" => "1月", "February" => "2月", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 5a330581ff1..9f82a79c43c 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -2,7 +2,6 @@ "Application name not provided." => "응용 프로그램의 이름이 규정되어 있지 않습니다. ", "No category to add?" => "추가할 카테고리가 없습니까?", "This category already exists: " => "이 카테고리는 이미 존재합니다:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "설정", "January" => "1월", "February" => "2월", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index f36f697b67c..0a3320351cf 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nepateiktas programos pavadinimas.", "No category to add?" => "Nepridėsite jokios kategorijos?", "This category already exists: " => "Tokia kategorija jau yra:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Nustatymai", "January" => "Sausis", "February" => "Vasaris", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index af49a04f11c..3eea6cd58d1 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -2,7 +2,6 @@ "Application name not provided." => "Име за апликацијата не е доставено.", "No category to add?" => "Нема категорија да се додаде?", "This category already exists: " => "Оваа категорија веќе постои:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Поставки", "January" => "Јануари", "February" => "Февруари", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 25da7cd8622..c99c510be62 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -2,7 +2,6 @@ "Application name not provided." => "nama applikasi tidak disediakan", "No category to add?" => "Tiada kategori untuk di tambah?", "This category already exists: " => "Kategori ini telah wujud", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Tetapan", "January" => "Januari", "February" => "Februari", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index d30823b59f2..a8bfebb8a55 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -2,7 +2,6 @@ "Application name not provided." => "Applikasjonsnavn ikke angitt.", "No category to add?" => "Ingen kategorier å legge til?", "This category already exists: " => "Denne kategorien finnes allerede:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Innstillinger", "January" => "Januar", "February" => "Februar", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 2c020623d6c..3497381f74c 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -28,7 +28,7 @@ "Login failed!" => "Login mislukt!", "Username" => "Gebruikersnaam", "Request reset" => "Resetaanvraag", -"Your password was reset" => "Je wachtwoord is geweizigd", +"Your password was reset" => "Je wachtwoord is gewijzigd", "To login page" => "Naar de login-pagina", "New password" => "Nieuw wachtwoord", "Reset password" => "Reset wachtwoord", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 2751b851524..5f8752b69bb 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -2,7 +2,6 @@ "Application name not provided." => "Brak nazwy dla aplikacji", "No category to add?" => "Brak kategorii", "This category already exists: " => "Ta kategoria już istnieje", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ustawienia", "January" => "Styczeń", "February" => "Luty", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 46d601e6ebf..9ad2f3de53f 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nome da aplicação não foi fornecido.", "No category to add?" => "Nenhuma categoria adicionada?", "This category already exists: " => "Essa categoria já existe", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Configurações", "January" => "Janeiro", "February" => "Fevereiro", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 29135f0d66d..4da513c1aec 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nome da aplicação não definida.", "No category to add?" => "Nenhuma categoria para adicionar?", "This category already exists: " => "Esta categoria já existe:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Definições", "January" => "Janeiro", "February" => "Fevereiro", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index edb55577772..81b579aeb0d 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -2,7 +2,6 @@ "Application name not provided." => "Имя приложения не установлено.", "No category to add?" => "Нет категорий для добавления?", "This category already exists: " => "Эта категория уже существует: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Настройки", "January" => "Январь", "February" => "Февраль", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index b6bff1e0497..8c3339170d6 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -2,7 +2,6 @@ "Application name not provided." => "Meno aplikácie nezadané.", "No category to add?" => "Žiadna kategória pre pridanie?", "This category already exists: " => "Táto kategória už existuje:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Nastavenia", "January" => "Január", "February" => "Február", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index ad412314319..b7850c28619 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -2,7 +2,6 @@ "Application name not provided." => "Ime aplikacije ni bilo določeno.", "No category to add?" => "Ni kategorije za dodajanje?", "This category already exists: " => "Ta kategorija že obstaja:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Nastavitve", "January" => "januar", "February" => "februar", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index f459272eba0..6b075f0aaf2 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -2,7 +2,6 @@ "Application name not provided." => "Programnamn har inte angetts.", "No category to add?" => "Ingen kategori att lägga till?", "This category already exists: " => "Denna kategori finns redan:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Inställningar", "January" => "Januari", "February" => "Februari", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 4bfdb524fe0..fd25105f150 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -2,7 +2,6 @@ "Application name not provided." => "ยังไม่ได้ตั้งชื่อแอพพลิเคชั่น", "No category to add?" => "ไม่มีหมวดหมู่ที่ต้องการเพิ่ม?", "This category already exists: " => "หมวดหมู่นี้มีอยู่แล้ว: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "ตั้งค่า", "January" => "มกราคม", "February" => "กุมภาพันธ์", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index a34443e8dd7..7d6d4a33a6d 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -2,7 +2,6 @@ "Application name not provided." => "Uygulama adı verilmedi.", "No category to add?" => "Eklenecek kategori yok?", "This category already exists: " => "Bu kategori zaten mevcut: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ayarlar", "January" => "Ocak", "February" => "Şubat", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 4a4c97032fd..de4764c3a54 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -2,7 +2,6 @@ "Application name not provided." => "Tên ứng dụng không tồn tại", "No category to add?" => "Không có danh mục được thêm?", "This category already exists: " => "Danh mục này đã được tạo :", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Cài đặt", "January" => "Tháng 1", "February" => "Tháng 2", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 770d2b6772d..58104df3997 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -2,7 +2,6 @@ "Application name not provided." => "应用程序并没有被提供.", "No category to add?" => "没有分类添加了?", "This category already exists: " => "这个分类已经存在了:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "设置", "January" => "一月", "February" => "二月", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 753dde0a99c..57a087fae92 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -2,7 +2,6 @@ "Application name not provided." => "未提供應用程式名稱", "No category to add?" => "無分類添加?", "This category already exists: " => "此分類已經存在:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "設定", "January" => "一月", "February" => "二月", diff --git a/l10n/af/core.po b/l10n/af/core.po index ea01e99a967..437c1e26953 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/af/files.po b/l10n/af/files.po index f93921f751c..31f2a00b0fa 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 090905898dc..febb0d7a637 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "تعديلات" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index f0fdb23c940..52370a91d08 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "الملفات" msgid "Delete" msgstr "محذوف" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "حجم" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "معدل" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ar_SA/core.po b/l10n/ar_SA/core.po index c5b0902e925..c251db4e530 100644 --- a/l10n/ar_SA/core.po +++ b/l10n/ar_SA/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po index 7f04256bac7..f5fadbff02b 100644 --- a/l10n/ar_SA/files.po +++ b/l10n/ar_SA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index f4673d7f749..681b5dd14b6 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -33,59 +33,55 @@ msgstr "" msgid "This category already exists: " msgstr "Категорията вече съществува:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Настройки" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Януари" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Февруари" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Март" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Април" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Май" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Юни" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Юли" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Август" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Септември" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Октомври" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Ноември" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Декември" @@ -117,7 +113,7 @@ msgstr "Грешка" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 9eb5ac463a2..c51de878e98 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Файлове" msgid "Delete" msgstr "Изтриване" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "" msgid "Upload Error" msgstr "Грешка при качване" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Качването е отменено." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Неправилно име – \"/\" не е позволено." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Размер" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Променено" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "папка" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "папки" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "файл" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 821e89c924c..6366450bdd3 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 11:29+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "No voleu afegir cap categoria?" msgid "This category already exists: " msgstr "Aquesta categoria ja existeix:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Arranjament" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Gener" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febrer" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Març" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maig" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juny" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juliol" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agost" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Octubre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Desembre" @@ -115,7 +111,7 @@ msgstr "Error" msgid "ownCloud password reset" msgstr "estableix de nou la contrasenya Owncloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Useu l'enllaç següent per restablir la contrasenya: {link}" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 93e8a182607..baaa56b4ebe 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. # , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +58,35 @@ msgstr "Fitxers" msgid "Delete" msgstr "Suprimeix" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "ja existeix" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substitueix" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituït" -#: js/filelist.js:195 -msgid "with" -msgstr "per" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfés" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "per" + +#: js/filelist.js:271 msgid "deleted" msgstr "esborrat" @@ -97,44 +102,44 @@ msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" msgid "Upload Error" msgstr "Error en la pujada" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendents" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:409 +#: js/files.js:423 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:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Mida" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificat" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "carpeta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "carpetes" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fitxer" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fitxers" @@ -168,7 +173,7 @@ msgstr "Mida màxima d'entrada per fitxers ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Desar" #: templates/index.php:7 msgid "New" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index baded31fd54..28539a5b19a 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. # , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 11:42+0000\n" +"Last-Translator: bury1000 \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,12 +68,12 @@ msgstr "S'ha canviat l'idioma" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "No es pot afegir l'usuari al grup %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "No es pot eliminar l'usuari del grup %s" #: js/apps.js:18 msgid "Error" @@ -191,7 +192,7 @@ msgstr "Mireu la pàgina d'aplicacions a apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-propietat de " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 3db3e84583e..c1d1ba2da07 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -4,25 +4,26 @@ # # Translators: # Jan Krejci , 2011. -# Martin , 2011, 2012. +# Martin , 2011-2012. # Michal Hrušecký , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." -msgstr "Jméno aplikace nezadáno." +msgstr "Nezadán název aplikace." #: ajax/vcategories/add.php:29 msgid "No category to add?" @@ -30,61 +31,57 @@ msgstr "Žádná kategorie k přidání?" #: ajax/vcategories/add.php:36 msgid "This category already exists: " -msgstr "Tato kategorie již existuje:" +msgstr "Tato kategorie již existuje: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavení" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Leden" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Únor" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Březen" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Duben" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Květen" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Červen" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Červenec" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Srpen" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Září" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Říjen" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Listopad" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Prosinec" @@ -102,7 +99,7 @@ msgstr "Ano" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "Budiž" +msgstr "Ok" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." @@ -114,15 +111,15 @@ msgstr "Chyba" #: lostpassword/index.php:26 msgid "ownCloud password reset" -msgstr "Reset hesla pro ownCloud" +msgstr "Obnovení hesla pro ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Heslo vyresetujete použitím následujícího odkazu: {link}" +msgstr "Heslo obnovíte použitím následujícího odkazu: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Bude Vám zaslán odkaz pro obnovu hesla" +msgstr "Bude Vám e-mailem zaslán odkaz pro obnovu hesla." #: lostpassword/templates/lostpassword.php:5 msgid "Requested" @@ -130,7 +127,7 @@ msgstr "Požadováno" #: lostpassword/templates/lostpassword.php:8 msgid "Login failed!" -msgstr "Přihlášení selhalo" +msgstr "Přihlášení selhalo." #: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 #: templates/login.php:9 @@ -171,7 +168,7 @@ msgstr "Aplikace" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "Administrace" #: strings.php:9 msgid "Help" @@ -179,7 +176,7 @@ msgstr "Nápověda" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Přístup odmítnut" +msgstr "Přístup zakázán" #: templates/404.php:12 msgid "Cloud not found" @@ -203,15 +200,15 @@ msgstr "Heslo" #: templates/installation.php:36 msgid "Advanced" -msgstr "Rozšířené volby" +msgstr "Pokročilé" #: templates/installation.php:38 msgid "Data folder" -msgstr "Datový adresář" +msgstr "Složka s daty" #: templates/installation.php:45 msgid "Configure the database" -msgstr "Konfigurace databáze" +msgstr "Nastavit databázi" #: templates/installation.php:50 templates/installation.php:61 #: templates/installation.php:71 templates/installation.php:81 @@ -224,7 +221,7 @@ msgstr "Uživatel databáze" #: templates/installation.php:97 msgid "Database password" -msgstr "Heslo k databázi" +msgstr "Heslo databáze" #: templates/installation.php:101 msgid "Database name" @@ -232,7 +229,7 @@ msgstr "Název databáze" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Tabulkový prostor databáze" #: templates/installation.php:115 msgid "Database host" @@ -240,7 +237,7 @@ msgstr "Hostitel databáze" #: templates/installation.php:120 msgid "Finish setup" -msgstr "Dokončit instalaci" +msgstr "Dokončit nastavení" #: templates/layout.guest.php:42 msgid "web services under your control" @@ -252,7 +249,7 @@ msgstr "Odhlásit se" #: templates/login.php:6 msgid "Lost your password?" -msgstr "Zapomenuté heslo?" +msgstr "Ztratili jste své heslo?" #: templates/login.php:17 msgid "remember" @@ -260,7 +257,7 @@ msgstr "zapamatovat si" #: templates/login.php:18 msgid "Log in" -msgstr "Login" +msgstr "Přihlásit" #: templates/logout.php:1 msgid "You are logged out." @@ -268,8 +265,8 @@ msgstr "Jste odhlášeni." #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "zpět" +msgstr "předchozí" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "vpřed" +msgstr "následující" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 2e9b7e78c13..53a6691385e 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2011, 2012. +# Martin , 2011-2012. # Michal Hrušecký , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -25,13 +26,13 @@ msgstr "Soubor byl odeslán úspěšně" #: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Odeslaný soubor přesáhl velikostí parametr upload_max_filesize v php.ini" +msgstr "Odeslaný soubor přesáhl svou velikostí parametr upload_max_filesize v php.ini" #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Odeslaný soubor přesáhl velikostí parametr MAX_FILE_SIZE specifikovaný v HTML formuláři" +msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" #: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" @@ -39,15 +40,15 @@ msgstr "Soubor byl odeslán pouze částečně" #: ajax/upload.php:24 msgid "No file was uploaded" -msgstr "Soubor nebyl odeslán" +msgstr "Žádný soubor nebyl odeslán" #: ajax/upload.php:25 msgid "Missing a temporary folder" -msgstr "Chybí adresář pro sočasné soubory" +msgstr "Chybí adresář pro dočasné soubory" #: ajax/upload.php:26 msgid "Failed to write to disk" -msgstr "Zápis na disk se nezdařil" +msgstr "Zápis na disk selhal" #: appinfo/app.php:6 msgid "Files" @@ -55,104 +56,108 @@ msgstr "Soubory" #: js/fileactions.js:106 templates/index.php:56 msgid "Delete" -msgstr "Vymazat" +msgstr "Smazat" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "již existuje" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" -msgstr "zaměnit" +msgstr "nahradit" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" -msgstr "storno" +msgstr "zrušit" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" -msgstr "zaměněno" - -#: js/filelist.js:195 -msgid "with" -msgstr "s" +msgstr "nahrazeno" -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "zpět" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "s" + +#: js/filelist.js:271 msgid "deleted" msgstr "smazáno" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "generuji ZIP soubor, může to chvíli trvat" +msgstr "generuji ZIP soubor, může to nějakou dobu trvat." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nemohu nahrát váš soubor neboť to je adresář a nebo má nulovou délku." +msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů" #: js/files.js:208 msgid "Upload Error" -msgstr "Chyba při nahrávání" +msgstr "Chyba odesílání" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" -msgstr "Očekává se" +msgstr "Čekající" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." -msgstr "Nahrávání zrušeno" +msgstr "Odesílání zrušeno." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." -msgstr "Špatné jméno, znak '/' není povolen" +msgstr "Neplatný název, znak '/' není povolen" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Velikost" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Změněno" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" -msgstr "adresář" +msgstr "složka" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" -msgstr "adresáře" +msgstr "složky" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "soubor" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "soubory" #: templates/admin.php:5 msgid "File handling" -msgstr "Nastavení chování k souborům" +msgstr "Zacházení se soubory" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximální velikost ukládaných souborů" +msgstr "Maximální velikost pro odesílání" #: templates/admin.php:7 msgid "max. possible: " -msgstr "největší možná:" +msgstr "největší možná: " #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." -msgstr "Potřeba pro vícesoborvé stahování a stahování adresářů" +msgstr "Potřebné pro více-souborové stahování a stahování složek." #: templates/admin.php:9 msgid "Enable ZIP-download" @@ -168,7 +173,7 @@ msgstr "Maximální velikost vstupu pro ZIP soubory" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Uložit" #: templates/index.php:7 msgid "New" @@ -180,7 +185,7 @@ msgstr "Textový soubor" #: templates/index.php:10 msgid "Folder" -msgstr "Adresář" +msgstr "Složka" #: templates/index.php:11 msgid "From url" @@ -188,15 +193,15 @@ msgstr "Z url" #: templates/index.php:21 msgid "Upload" -msgstr "Uložit" +msgstr "Odeslat" #: templates/index.php:27 msgid "Cancel upload" -msgstr "Zrušit upload" +msgstr "Zrušit odesílání" #: templates/index.php:39 msgid "Nothing in here. Upload something!" -msgstr "Žádný obsah. Uložte si něco!" +msgstr "Žádný obsah. Nahrajte něco." #: templates/index.php:47 msgid "Name" @@ -212,13 +217,13 @@ msgstr "Stáhnout" #: templates/index.php:64 msgid "Upload too large" -msgstr "Příliš velký soubor" +msgstr "Odeslaný soubor je příliš velký" #: templates/index.php:66 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Soubory, které se snažíte uložit, překračují maximální velikosti uploadu na tomto serveru." +msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." #: templates/index.php:71 msgid "Files are being scanned, please wait." diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 4055cc18fcc..96298cc2205 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -4,32 +4,33 @@ # # Translators: # Martin , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 10:33+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "Kryptování" +msgstr "Šifrování" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "Při kryptování vynechat následující typy souborů" +msgstr "Při šifrování vynechat následující typy souborů" #: templates/settings.php:5 msgid "None" -msgstr "Žádný" +msgstr "Žádné" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "Povolit kryptování" +msgstr "Povolit šifrování" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 8c21e144831..90f40c4ffc7 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -6,19 +6,20 @@ # Jan Krejci , 2012. # Martin , 2012. # Michal Hrušecký , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 19:11+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "External Storage" @@ -30,15 +31,15 @@ msgstr "Přípojný bod" #: templates/settings.php:8 msgid "Backend" -msgstr "Končící" +msgstr "Podpůrná vrstva" #: templates/settings.php:9 msgid "Configuration" -msgstr "Konfigurace" +msgstr "Nastavení" #: templates/settings.php:10 msgid "Options" -msgstr "Nastavení" +msgstr "Možnosti" #: templates/settings.php:11 msgid "Applicable" @@ -46,7 +47,7 @@ msgstr "Platný" #: templates/settings.php:23 msgid "Add mount point" -msgstr "Přidat přípojný bod" +msgstr "Přidat bod připojení" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" @@ -70,16 +71,16 @@ msgstr "Smazat" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "Kořenové SSL certifikáty" +msgstr "Kořenové certifikáty SSL" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "Import kořenového certifikátu" +msgstr "Importovat kořenového certifikátu" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "Zapnout uživatelské externí úložiště" +msgstr "Zapnout externí uživatelské úložiště" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "Povolit uživatelů připojit jejich vlastní externí úložiště" +msgstr "Povolit uživatelům připojení jejich vlastních externích úložišť" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 1927da6f119..d4c56e76356 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -5,19 +5,20 @@ # Translators: # Martin , 2012. # Michal Hrušecký , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,16 +26,16 @@ msgstr "Heslo" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Potvrdit" +msgstr "Odeslat" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Stáhnout" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Náhled není dostupný pro" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "služby webu pod Vaší kontrolou" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index a75fe502f68..0c6a43324f7 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -4,31 +4,32 @@ # # Translators: # Martin , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "Vypršení všech verzí" +msgstr "Vypršet všechny verze" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Verze" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Odstraní všechny existující zálohované verze Vašich souborů" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 35f62dc63c9..eb0f3cb40a7 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -4,19 +4,20 @@ # # Translators: # Martin , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: app.php:288 msgid "Help" @@ -40,7 +41,7 @@ msgstr "Aplikace" #: app.php:314 msgid "Admin" -msgstr "Admin" +msgstr "Administrace" #: files.php:280 msgid "ZIP download is turned off." @@ -48,7 +49,7 @@ msgstr "Stahování ZIPu je vypnuto." #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "Soubory je nutno stahovat samostatně." +msgstr "Soubory musí být stahovány jednotlivě." #: files.php:281 files.php:306 msgid "Back to Files" @@ -56,7 +57,7 @@ msgstr "Zpět k souborům" #: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "Vybarné soubory jsou pro vytvoření zipu příliš velké." +msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru." #: json.php:28 msgid "Application is not enabled" @@ -64,63 +65,63 @@ msgstr "Aplikace není povolena" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "Chyba autorizace" +msgstr "Chyba ověření" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Realce expirovala. Obnovte prosím stranu." +msgstr "Token vypršel. Obnovte prosím stránku." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "před vteřinami" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "před 1 minutou" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "před %d minutami" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "dnes" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "včera" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "před %d dny" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "minulý měsíc" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "před měsíci" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "loni" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "před lety" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s je dostupná. Získat více informací" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "aktuální" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "kontrola aktualizací je vypnuta" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b83f36882a4..3511d379d65 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -4,17 +4,18 @@ # # Translators: # , 2012. -# Jan Krejci , 2011, 2012. +# Jan Krejci , 2011-2012. # Martin , 2011-2012. # Michal Hrušecký , 2012. # , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:36+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,20 +25,20 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "Nepodařílo se stáhnout seznam z App Store" +msgstr "Nelze načíst seznam z App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 #: ajax/togglegroups.php:15 msgid "Authentication error" -msgstr "Chyba autorizace" +msgstr "Chyba ověření" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Skupina již existuje" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Nelze přidat skupinu" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -49,19 +50,19 @@ msgstr "Neplatný e-mail" #: ajax/openid.php:16 msgid "OpenID Changed" -msgstr "OpenID změněn" +msgstr "OpenID změněno" #: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" -msgstr "Chybný dotaz" +msgstr "Neplatný požadavek" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Nelze smazat skupinu" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Nelze smazat uživatele" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -70,12 +71,12 @@ msgstr "Jazyk byl změněn" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nelze přidat uživatele do skupiny %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nelze odstranit uživatele ze skupiny %s" #: js/apps.js:18 msgid "Error" @@ -83,11 +84,11 @@ msgstr "Chyba" #: js/apps.js:39 js/apps.js:73 msgid "Disable" -msgstr "Vypnout" +msgstr "Zakázat" #: js/apps.js:39 js/apps.js:62 msgid "Enable" -msgstr "Zapnout" +msgstr "Povolit" #: js/personal.js:69 msgid "Saving..." @@ -99,7 +100,7 @@ msgstr "Česky" #: templates/admin.php:14 msgid "Security Warning" -msgstr "Bezpečnostní upozornění" +msgstr "Bezpečnostní varování" #: templates/admin.php:17 msgid "" @@ -108,7 +109,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru." #: templates/admin.php:31 msgid "Cron" @@ -116,7 +117,7 @@ msgstr "Cron" #: templates/admin.php:33 msgid "execute one task with each page loaded" -msgstr "spustit jednu úlohu s každou nataženou stranou" +msgstr "spustit jednu úlohu s každou načtenou stránkou" #: templates/admin.php:35 msgid "cron.php is registered at a webcron service" @@ -124,47 +125,47 @@ msgstr "cron.php je registrován jako služba webcron" #: templates/admin.php:37 msgid "use systems cron service" -msgstr "použijte systémovou službu cron" +msgstr "použít systémovou službu cron" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "API sdílení" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Povolit API sdílení" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Povolit aplikacím používat API sdílení" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Povolit odkazy" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Povolit znovu-sdílení" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Povolit uživatelům sdílet s kýmkoliv" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" #: templates/admin.php:69 msgid "Log" -msgstr "Log" +msgstr "Záznam" #: templates/admin.php:97 msgid "More" @@ -178,11 +179,11 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL." #: templates/apps.php:10 msgid "Add your App" -msgstr "Přidat vaší aplikaci" +msgstr "Přidat Vaší aplikaci" #: templates/apps.php:26 msgid "Select an App" @@ -194,7 +195,7 @@ msgstr "Více na stránce s aplikacemi na apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licencováno " #: templates/help.php:9 msgid "Documentation" @@ -202,7 +203,7 @@ msgstr "Dokumentace" #: templates/help.php:10 msgid "Managing Big Files" -msgstr "Spravování velkých souborů" +msgstr "Správa velkých souborů" #: templates/help.php:11 msgid "Ask a question" @@ -242,11 +243,11 @@ msgstr "Vaše heslo bylo změněno" #: templates/personal.php:20 msgid "Unable to change your password" -msgstr "Vaše heslo se nepodařilo změnit" +msgstr "Vaše heslo nelze změnit" #: templates/personal.php:21 msgid "Current password" -msgstr "Aktuální heslo" +msgstr "Současné heslo" #: templates/personal.php:22 msgid "New password" @@ -262,15 +263,15 @@ msgstr "Změnit heslo" #: templates/personal.php:30 msgid "Email" -msgstr "Email" +msgstr "E-mail" #: templates/personal.php:31 msgid "Your email address" -msgstr "Vaše emailová adresa" +msgstr "Vaše e-mailová adresa" #: templates/personal.php:32 msgid "Fill in an email address to enable password recovery" -msgstr "Pro povolení změny hesla vyplňte email adresu" +msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" #: templates/personal.php:38 templates/personal.php:39 msgid "Language" @@ -278,7 +279,7 @@ msgstr "Jazyk" #: templates/personal.php:44 msgid "Help translate" -msgstr "Pomoci překládat" +msgstr "Pomoci s překladem" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" @@ -306,11 +307,11 @@ msgstr "Výchozí kvóta" #: templates/users.php:55 templates/users.php:138 msgid "Other" -msgstr "Jiné" +msgstr "Jiná" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "Administrace skupiny" +msgstr "Správa skupiny" #: templates/users.php:82 msgid "Quota" @@ -318,4 +319,4 @@ msgstr "Kvóta" #: templates/users.php:146 msgid "Delete" -msgstr "Vymazat" +msgstr "Smazat" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 57bcba3d707..808367304a8 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -4,40 +4,41 @@ # # Translators: # Martin , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-29 13:53+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:8 msgid "Host" -msgstr "Hostitel" +msgstr "Počítač" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Nelze vynechat protokol vyžadující SSL. Začněte s ldaps://" +msgstr "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://" #: templates/settings.php:9 msgid "Base DN" -msgstr "Base DN" +msgstr "Základní DN" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "V Rozšířeném nastavení můžete specifikovat pro své uživatele a skupiny element Base DN" +msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny" #: templates/settings.php:10 msgid "User DN" -msgstr "DN uživatele" +msgstr "Uživatelské DN" #: templates/settings.php:10 msgid "" @@ -52,47 +53,47 @@ msgstr "Heslo" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "Pro anonymní přístup ponechte údaje DN and Heslo prázdné." +msgstr "Pro anonymní přístup, ponechte údaje DN and heslo prázdné." #: templates/settings.php:12 msgid "User Login Filter" -msgstr "Filtr uživatelských loginů" +msgstr "Filtr přihlášení uživatelů" #: templates/settings.php:12 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Definuje filtr, který je aplikován v průběhu logování. %%uid nahrazuje uživatelské jméno během logování." +msgstr "Určuje použitý filtr, při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení." #: templates/settings.php:12 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "použijte %%uid pro rezervované místo, např. \"uid=%%uid\"" +msgstr "použijte zástupný vzor %%uid, např. \"uid=%%uid\"" #: templates/settings.php:13 msgid "User List Filter" -msgstr "Filtr uživateslkých seznamů" +msgstr "Filtr uživatelských seznamů" #: templates/settings.php:13 msgid "Defines the filter to apply, when retrieving users." -msgstr "Defunije filtr, který je plaikován při návratu uživatelů." +msgstr "Určuje použitý filtr, pro získávaní uživatelů." #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "bez rezervace místa, např. \"objectClass=person\"." +msgstr "bez zástupných znaků, např. \"objectClass=person\"." #: templates/settings.php:14 msgid "Group Filter" -msgstr "Filtr skupiny" +msgstr "Filtr skupin" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definuje filtr, který je aplikován při návratu skupin" +msgstr "Určuje použitý filtr, pro získávaní skupin." #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "bez rezervace místa, např. \"objectClass=posixGroup\"." +msgstr "bez zástupných znaků, např. \"objectClass=posixGroup\"." #: templates/settings.php:17 msgid "Port" @@ -112,11 +113,11 @@ msgstr "Asociace člena skupiny" #: templates/settings.php:21 msgid "Use TLS" -msgstr "Použijte TLS" +msgstr "Použít TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "Nepoužívejte pro SSL připojení, připojení selže." +msgstr "Nepoužívejte pro připojení pomocí SSL, připojení selže." #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" @@ -124,17 +125,17 @@ msgstr "LDAP server nerozlišující velikost znaků (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "Vypněte ověřování SSL certifikátu" +msgstr "Vypnout ověřování SSL certifikátu." #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "pokud pracuje připojení pouze pokud je teto volba aktivní, importujte SSL certifikát LDAP serveru do Vašeho serveru ownCloud." +msgstr "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud" #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "Není doporučeno, pouze pro účely testování." +msgstr "Není doporučeno, pouze pro testovací účely." #: templates/settings.php:24 msgid "User Display Name Field" @@ -154,17 +155,17 @@ msgstr "Atribut LDAP použitý k vytvoření jména skupiny ownCloud" #: templates/settings.php:27 msgid "in bytes" -msgstr "v bytech" +msgstr "v bajtech" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." -msgstr "ve vteřinách. Změna vyprázdní dočasnou paměť." +msgstr "ve vteřinách. Změna vyprázdní vyrovnávací paměť." #: templates/settings.php:30 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Ponechte prázdné pro uživateslké jméno (výchozí). Jinak uveďte LDAP/AD paramerty" +msgstr "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/da/core.po b/l10n/da/core.po index 542e8425faf..bbb688dca57 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" -"PO-Revision-Date: 2012-09-02 14:21+0000\n" -"Last-Translator: muunsim \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -35,59 +35,55 @@ msgstr "Ingen kategori at tilføje?" msgid "This category already exists: " msgstr "Denne kategori eksisterer allerede: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marts" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -119,7 +115,7 @@ msgstr "Fejl" msgid "ownCloud password reset" msgstr "Nulstil ownCloud kodeord" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Anvend følgende link til at nulstille din adgangskode: {link}" diff --git a/l10n/da/files.po b/l10n/da/files.po index 5c3233a2810..ef7718c6d05 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -60,31 +60,35 @@ msgstr "Filer" msgid "Delete" msgstr "Slet" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "findes allerede" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "erstat" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "erstattet" -#: js/filelist.js:195 -msgid "with" -msgstr "med" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "fortryd" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "med" + +#: js/filelist.js:271 msgid "deleted" msgstr "Slettet" @@ -100,44 +104,44 @@ msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Afventer" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:409 +#: js/files.js:423 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:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ugyldigt navn, '/' er ikke tilladt." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Størrelse" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Ændret" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mappe" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mapper" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fil" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "filer" diff --git a/l10n/de/core.po b/l10n/de/core.po index 9f06a2c9f42..d2dca57566e 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,15 +18,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 09:48+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -40,59 +40,55 @@ msgstr "Keine Kategorie hinzuzufügen?" msgid "This category already exists: " msgstr "Kategorie existiert bereits:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "März" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezember" @@ -124,7 +120,7 @@ msgstr "Fehler" msgid "ownCloud password reset" msgstr "ownCloud-Passwort zurücksetzen" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}" diff --git a/l10n/de/files.po b/l10n/de/files.po index 63ae8dc7c87..186ed35ccdd 100644 --- a/l10n/de/files.po +++ b/l10n/de/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -66,31 +66,35 @@ msgstr "Dateien" msgid "Delete" msgstr "Löschen" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "ist bereits vorhanden" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ersetzt" -#: js/filelist.js:195 -msgid "with" -msgstr "mit" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "mit" + +#: js/filelist.js:271 msgid "deleted" msgstr "gelöscht" @@ -106,44 +110,44 @@ msgstr "Ihre Datei kann nicht hochgeladen werden, da sie ein Verzeichnis ist ode msgid "Upload Error" msgstr "Fehler beim Hochladen" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Hochladen abgebrochen." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Größe" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "Ordner" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "Ordner" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "Datei" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "Dateien" @@ -177,7 +181,7 @@ msgstr "Maximale Größe für ZIP-Dateien" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Speichern" #: templates/index.php:7 msgid "New" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 795cd88fa26..e0d81804f6a 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 07:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -75,12 +75,12 @@ msgstr "Sprache geändert" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" #: js/apps.js:18 msgid "Error" @@ -199,7 +199,7 @@ msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-lizenziert von " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/el/core.po b/l10n/el/core.po index 57cba80d051..0a9a6e0388f 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -33,59 +33,55 @@ msgstr "Δεν έχετε να προστέσθέσεται μια κα" msgid "This category already exists: " msgstr "Αυτή η κατηγορία υπάρχει ήδη" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Ιανουάριος" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Φεβρουάριος" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Μάρτιος" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Απρίλιος" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Μάϊος" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Ιούνιος" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Ιούλιος" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Αύγουστος" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Σεπτέμβριος" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Οκτώβριος" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Νοέμβριος" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Δεκέμβριος" @@ -117,7 +113,7 @@ msgstr "Σφάλμα" msgid "ownCloud password reset" msgstr "Επαναφορά κωδικού ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}" diff --git a/l10n/el/files.po b/l10n/el/files.po index ee2a70ac7cf..8ddd036c716 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "Αρχεία" msgid "Delete" msgstr "Διαγραφή" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "υπάρχει ήδη" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "αντικαταστάθηκε" -#: js/filelist.js:195 -msgid "with" -msgstr "με" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "με" + +#: js/filelist.js:271 msgid "deleted" msgstr "διαγράφηκε" @@ -98,44 +102,44 @@ msgstr "Αδυναμία στην μεταφόρτωση του αρχείου msgid "Upload Error" msgstr "Σφάλμα Μεταφόρτωσης" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Εν αναμονή" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Η μεταφόρτωση ακυρώθηκε." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "φάκελος" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "φάκελοι" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "αρχείο" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "αρχεία" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index ccfd988fd2e..416d3dd21f8 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Ĉu neniu kategorio estas aldonota?" msgid "This category already exists: " msgstr "Ĉi tiu kategorio jam ekzistas: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Agordo" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januaro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februaro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marto" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Aprilo" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Majo" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junio" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julio" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Aŭgusto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Septembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktobro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Decembro" @@ -116,7 +112,7 @@ msgstr "Eraro" msgid "ownCloud password reset" msgstr "La pasvorto de ownCloud restariĝis." -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Uzu la jenan ligilon por restarigi vian pasvorton: {link}" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d771ee745f5..d0b82a0e4fd 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Dosieroj" msgid "Delete" msgstr "Forigi" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "jam ekzistas" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "anstataŭigita" -#: js/filelist.js:195 -msgid "with" -msgstr "kun" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "malfari" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "kun" + +#: js/filelist.js:271 msgid "deleted" msgstr "forigita" @@ -97,44 +101,44 @@ msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duum msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Traktotaj" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nevalida nomo, “/” ne estas permesata." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Grando" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modifita" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "dosierujo" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "dosierujoj" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "dosiero" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "dosieroj" diff --git a/l10n/es/core.po b/l10n/es/core.po index fd0e4112ab5..efe18cd7f0a 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,15 +15,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 22:41+0000\n" -"Last-Translator: Rubén Trujillo \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -37,59 +37,55 @@ msgstr "¿Ninguna categoría para añadir?" msgid "This category already exists: " msgstr "Esta categoría ya existe: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ajustes" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Enero" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febrero" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzo" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mayo" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junio" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julio" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Septiembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Octubre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Noviembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Diciembre" @@ -121,7 +117,7 @@ msgstr "Fallo" msgid "ownCloud password reset" msgstr "Reiniciar contraseña de ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Utiliza el siguiente enlace para restablecer tu contraseña: {link}" diff --git a/l10n/es/files.po b/l10n/es/files.po index 28809d589c5..feda2631833 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -59,31 +59,35 @@ msgstr "Archivos" msgid "Delete" msgstr "Eliminado" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "ya existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "reemplazado" -#: js/filelist.js:195 -msgid "with" -msgstr "con" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "deshacer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "con" + +#: js/filelist.js:271 msgid "deleted" msgstr "borrado" @@ -99,44 +103,44 @@ msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 by msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendiente" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:409 +#: js/files.js:423 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:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamaño" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "carpeta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "carpetas" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "archivo" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "archivos" @@ -170,7 +174,7 @@ msgstr "Tamaño máximo para archivos ZIP de entrada" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Guardar" #: templates/index.php:7 msgid "New" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 2d38de5f755..8d1da62428c 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 15:29+0000\n" +"Last-Translator: juanman \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,12 +74,12 @@ msgstr "Idioma cambiado" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Imposible añadir el usuario al grupo %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Imposible eliminar al usuario del grupo %s" #: js/apps.js:18 msgid "Error" @@ -198,7 +198,7 @@ msgstr "Echa un vistazo a la web de aplicaciones apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licenciado por " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 0767a4e42fa..f8d3d186521 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "Pole kategooriat, mida lisada?" msgid "This category already exists: " msgstr "See kategooria on juba olemas: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Seaded" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Jaanuar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Veebruar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Märts" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Aprill" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juuni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juuli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktoober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Detsember" @@ -114,7 +110,7 @@ msgstr "Viga" msgid "ownCloud password reset" msgstr "ownCloud parooli taastamine" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Kasuta järgnevat linki oma parooli taastamiseks: {link}" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 7b09da2e4f5..fac2c5dc01b 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "Failid" msgid "Delete" msgstr "Kustuta" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "on juba olemas" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "asenda" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "loobu" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "asendatud" -#: js/filelist.js:195 -msgid "with" -msgstr "millega" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "tagasi" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "millega" + +#: js/filelist.js:271 msgid "deleted" msgstr "kustutatud" @@ -96,44 +100,44 @@ msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suu msgid "Upload Error" msgstr "Üleslaadimise viga" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ootel" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Vigane nimi, '/' pole lubatud." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Suurus" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Muudetud" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "kaust" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "kausta" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fail" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "faili" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 63b63ad545a..476fbcd0a11 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "Ez dago gehitzeko kategoriarik?" msgid "This category already exists: " msgstr "Kategoria hau dagoeneko existitzen da:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Urtarrila" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Otsaila" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Martxoa" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Apirila" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maiatza" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Ekaina" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Uztaila" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Abuztua" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Iraila" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Urria" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Azaroa" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Abendua" @@ -115,7 +111,7 @@ msgstr "Errorea" msgid "ownCloud password reset" msgstr "ownCloud-en pasahitza berrezarri" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 19d4a2e58c1..810a5ae18c5 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Fitxategiak" msgid "Delete" msgstr "Ezabatu" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "dagoeneko existitzen da" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ordeztua" -#: js/filelist.js:195 -msgid "with" -msgstr "honekin" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desegin" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "honekin" + +#: js/filelist.js:271 msgid "deleted" msgstr "ezabatuta" @@ -97,44 +101,44 @@ msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Zain" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Baliogabeko izena, '/' ezin da erabili. " -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamaina" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "karpeta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "Karpetak" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fitxategia" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fitxategiak" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index a6da3a496e9..b3baf2cb39f 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 5a8745c0316..0ed5582c4ff 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 6099da454e0..df531775248 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "آیا گروه دیگری برای افزودن ندارید" msgid "This category already exists: " msgstr "این گروه از قبل اضافه شده" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "ژانویه" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "فبریه" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "مارس" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "آوریل" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "می" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "ژوئن" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "جولای" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "آگوست" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "سپتامبر" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "اکتبر" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "نوامبر" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "دسامبر" @@ -114,7 +110,7 @@ msgstr "خطا" msgid "ownCloud password reset" msgstr "پسورد ابرهای شما تغییرکرد" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index a1981830b70..2e1f1645041 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "فایل ها" msgid "Delete" msgstr "پاک کردن" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "وجود دارد" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "لغو" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "جایگزین‌شده" -#: js/filelist.js:195 -msgid "with" -msgstr "همراه" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "همراه" + +#: js/filelist.js:271 msgid "deleted" msgstr "حذف شده" @@ -98,44 +102,44 @@ msgstr "ناتوان در بارگذاری یا فایل یک پوشه است ی msgid "Upload Error" msgstr "خطا در بار گذاری" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "در انتظار" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "نام نامناسب '/' غیرفعال است" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "اندازه" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "پوشه" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "پوشه ها" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "پرونده" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "پرونده ها" diff --git a/l10n/fi/core.po b/l10n/fi/core.po index 9471fc3066c..6b84b560723 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index a46618c5029..0a9580f3467 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 7506e66bc4e..cbce7313693 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 16:24+0000\n" -"Last-Translator: teho \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,59 +35,55 @@ msgstr "Ei lisättävää luokkaa?" msgid "This category already exists: " msgstr "Tämä luokka on jo olemassa: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Asetukset" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Tammikuu" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Helmikuu" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Maaliskuu" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Huhtikuu" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Toukokuu" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Kesäkuu" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Heinäkuu" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Elokuu" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Syyskuu" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Lokakuu" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Marraskuu" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Joulukuu" @@ -119,7 +115,7 @@ msgstr "Virhe" msgid "ownCloud password reset" msgstr "ownCloud-salasanan nollaus" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 7b28a31a632..f82b204f60e 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -60,31 +60,35 @@ msgstr "Tiedostot" msgid "Delete" msgstr "Poista" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "on jo olemassa" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "korvaa" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "peru" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "korvattu" -#: js/filelist.js:195 -msgid "with" -msgstr "käyttäen" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "kumoa" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "käyttäen" + +#: js/filelist.js:271 msgid "deleted" msgstr "poistettu" @@ -100,44 +104,44 @@ msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Odottaa" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:409 +#: js/files.js:423 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:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Koko" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Muutettu" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "kansio" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "kansiota" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "tiedosto" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "tiedostoa" @@ -171,7 +175,7 @@ msgstr "ZIP-tiedostojen enimmäiskoko" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Tallenna" #: templates/index.php:7 msgid "New" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 2cee464ea24..404c33a0143 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -4,19 +4,20 @@ # # Translators: # Jiri Grönroos , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-17 00:44+0200\n" -"PO-Revision-Date: 2012-08-16 11:04+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 16:30+0000\n" +"Last-Translator: teho \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" @@ -40,7 +41,7 @@ msgstr "Valinnat" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Sovellettavissa" #: templates/settings.php:23 msgid "Add mount point" @@ -76,7 +77,7 @@ msgstr "Tuo juurivarmenne" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Ota käyttöön ulkopuoliset tallennuspaikat" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index e540a68630f..2f9cfc602d5 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 16:14+0000\n" +"Last-Translator: teho \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,12 +68,12 @@ msgstr "Kieli on vaihdettu" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Käyttäjän tai ryhmän %s lisääminen ei onnistu" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Käyttäjän poistaminen ryhmästä %s ei onnistu" #: js/apps.js:18 msgid "Error" @@ -192,7 +192,7 @@ msgstr "Katso sovellussivu osoitteessa apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-lisensoija " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index e1e890a1617..62a31960b0c 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -5,13 +5,14 @@ # Translators: # , 2012. # Jiri Grönroos , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-04 14:29+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 16:49+0000\n" +"Last-Translator: teho \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,7 +65,7 @@ msgstr "Login suodatus" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Määrittelee käytettävän suodattimen, kun sisäänkirjautumista yritetään. %%uid korvaa sisäänkirjautumisessa käyttäjätunnuksen." #: templates/settings.php:12 #, php-format @@ -139,19 +140,19 @@ msgstr "Ei suositella, käytä vain testausta varten." #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "Käyttäjän näytettävän nimen kenttä" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä " #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "Ryhmän \"näytettävä nimi\"-kenttä" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi" #: templates/settings.php:27 msgid "in bytes" @@ -165,7 +166,7 @@ msgstr "sekunneissa. Muutos tyhjentää välimuistin." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 9d16fe11ba3..c6fd6a40412 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 19:09+0000\n" -"Last-Translator: Florentin Le Moal \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -35,59 +35,55 @@ msgstr "Pas de catégorie à ajouter ?" msgid "This category already exists: " msgstr "Cette catégorie existe déjà : " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Paramètres" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "janvier" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "février" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "mars" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "avril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "juin" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "juillet" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "août" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "septembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "octobre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "novembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "décembre" @@ -119,7 +115,7 @@ msgstr "Erreur" msgid "ownCloud password reset" msgstr "Réinitialisation de votre mot de passe Owncloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 6467b476975..222dbece715 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -8,6 +8,7 @@ # , 2012. # , 2012. # Guillaume Paumier , 2012. +# , 2012. # Nahir Mohamed , 2012. # , 2011. # Romain DEP. , 2012. @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -63,31 +64,35 @@ msgstr "Fichiers" msgid "Delete" msgstr "Supprimer" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "existe déjà" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "remplacer" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "annuler" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "remplacé" -#: js/filelist.js:195 -msgid "with" -msgstr "avec" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "annuler" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "avec" + +#: js/filelist.js:271 msgid "deleted" msgstr "supprimé" @@ -103,44 +108,44 @@ msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fich msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "En cours" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:409 +#: js/files.js:423 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:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nom invalide, '/' n'est pas autorisé." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Taille" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modifié" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "dossier" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "dossiers" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fichier" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fichiers" @@ -174,7 +179,7 @@ msgstr "Taille maximale pour les fichiers ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Sauvegarder" #: templates/index.php:7 msgid "New" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 0fd897ba24f..bdf3e67d242 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -9,6 +9,7 @@ # , 2012. # , 2012. # Jan-Christoph Borchardt , 2011. +# , 2012. # Nahir Mohamed , 2012. # , 2012. # , 2011, 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:18+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,12 +76,12 @@ msgstr "Langue changée" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Impossible d'ajouter l'utilisateur au groupe %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Impossible de supprimer l'utilisateur du groupe %s" #: js/apps.js:18 msgid "Error" @@ -199,7 +200,7 @@ msgstr "Voir la page des applications à l'url apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-sous licence, par " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 4dd5e3d6f22..98c21db78b2 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "Sen categoría que engadir?" msgid "This category already exists: " msgstr "Esta categoría xa existe: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Preferencias" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Xaneiro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febreiro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzo" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Xuño" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Xullo" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Outubro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Nadal" @@ -115,7 +111,7 @@ msgstr "Erro" msgid "ownCloud password reset" msgstr "Restablecer contrasinal de ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Use a seguinte ligazón para restablecer o contrasinal: {link}" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 9413551a21a..0de0ff2a7df 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Ficheiros" msgid "Delete" msgstr "Eliminar" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "xa existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substituír" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituído" -#: js/filelist.js:195 -msgid "with" -msgstr "con" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfacer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "con" + +#: js/filelist.js:271 msgid "deleted" msgstr "eliminado" @@ -97,44 +101,44 @@ msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes" msgid "Upload Error" msgstr "Erro na subida" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendentes" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nome non válido, '/' non está permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamaño" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "cartafol" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "cartafoles" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ficheiro" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ficheiros" diff --git a/l10n/he/core.po b/l10n/he/core.po index e061910f3cf..babf202fb32 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "אין קטגוריה להוספה?" msgid "This category already exists: " msgstr "קטגוריה זאת כבר קיימת: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "הגדרות" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "ינואר" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "פברואר" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "מרץ" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "אפריל" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "מאי" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "יוני" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "יולי" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "אוגוסט" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "ספטמבר" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "אוקטובר" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "נובמבר" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "דצמבר" @@ -116,7 +112,7 @@ msgstr "שגיאה" msgid "ownCloud password reset" msgstr "איפוס הססמה של ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}" diff --git a/l10n/he/files.po b/l10n/he/files.po index 51db52ac274..808345fa8f7 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "קבצים" msgid "Delete" msgstr "מחיקה" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה msgid "Upload Error" msgstr "שגיאת העלאה" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "ממתין" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "שם לא חוקי, '/' אסור לשימוש." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "גודל" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "תקיה" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "תקיות" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "קובץ" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "קבצים" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index ab39ae01902..67cd5aa9ff7 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 58546409d54..b4b909333c0 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 6e8a4982438..3c0fc971861 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nemate kategorija koje možete dodati?" msgid "This category already exists: " msgstr "Ova kategorija već postoji: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Postavke" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Siječanj" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Veljača" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Ožujak" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Travanj" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Svibanj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Lipanj" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Srpanj" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Kolovoz" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Rujan" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Listopad" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Studeni" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Prosinac" @@ -116,7 +112,7 @@ msgstr "Pogreška" msgid "ownCloud password reset" msgstr "ownCloud resetiranje lozinke" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Koristite ovaj link da biste poništili lozinku: {link}" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index c0d12a58c89..6163c004ba4 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Datoteke" msgid "Delete" msgstr "Briši" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "već postoji" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "odustani" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "zamjenjeno" -#: js/filelist.js:195 -msgid "with" -msgstr "sa" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "vrati" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "sa" + +#: js/filelist.js:271 msgid "deleted" msgstr "izbrisano" @@ -98,44 +102,44 @@ msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "U tijeku" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Neispravan naziv, znak '/' nije dozvoljen." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Veličina" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mapa" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mape" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "datoteka" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "datoteke" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 3e89b7e6afe..6d1680b032c 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nincs hozzáadandó kategória?" msgid "This category already exists: " msgstr "Ez a kategória már létezik" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Beállítások" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Január" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Február" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Március" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Április" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Május" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Június" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Július" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Augusztus" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Szeptember" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Október" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -116,7 +112,7 @@ msgstr "Hiba" msgid "ownCloud password reset" msgstr "ownCloud jelszó-visszaállítás" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Használja az alábbi linket a jelszó-visszaállításhoz: {link}" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index a2baaea8442..ca00f037928 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Fájlok" msgid "Delete" msgstr "Törlés" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "már létezik" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "cserél" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "mégse" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "kicserélve" -#: js/filelist.js:195 -msgid "with" -msgstr "-val/-vel" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "visszavon" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "-val/-vel" + +#: js/filelist.js:271 msgid "deleted" msgstr "törölve" @@ -98,44 +102,44 @@ msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" msgid "Upload Error" msgstr "Feltöltési hiba" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Folyamatban" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Feltöltés megszakítva" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Érvénytelen név, a '/' nem megengedett" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Méret" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Módosítva" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mappa" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mappák" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fájl" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fájlok" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 046e483eccb..bd1b74571d7 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index fdc067d3262..e94b8536495 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index cc9ee26ccc5..100482b0244 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "Iste categoria jam existe:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurationes" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "Reinitialisation del contrasigno de ownCLoud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index b2010914e28..0324e32bd0b 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Files" msgid "Delete" msgstr "Deler" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dimension" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificate" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 1b1676d042b..9cb0f7651e1 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Tidak ada kategori yang akan ditambahkan?" msgid "This category already exists: " msgstr "Kategori ini sudah ada:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Setelan" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Maret" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mei" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agustus" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Nopember" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Desember" @@ -116,7 +112,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "reset password ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Gunakan tautan berikut untuk mereset password anda: {link}" diff --git a/l10n/id/files.po b/l10n/id/files.po index 806ae3250e2..5e1a38df08a 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Berkas" msgid "Delete" msgstr "Hapus" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "sudah ada" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "mengganti" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "diganti" -#: js/filelist.js:195 -msgid "with" -msgstr "dengan" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "batal dikerjakan" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "dengan" + +#: js/filelist.js:271 msgid "deleted" msgstr "dihapus" @@ -98,44 +102,44 @@ msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukur msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Menunggu" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Kesalahan nama, '/' tidak diijinkan." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Ukuran" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "folder" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "folder-folder" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "berkas" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "berkas-berkas" diff --git a/l10n/id_ID/core.po b/l10n/id_ID/core.po index 7227d27665c..a7ada9179b8 100644 --- a/l10n/id_ID/core.po +++ b/l10n/id_ID/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po index a138ce1d22c..3ef54242d32 100644 --- a/l10n/id_ID/files.po +++ b/l10n/id_ID/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index 281cd036adb..39884ebdc9d 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 05:26+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -34,59 +34,55 @@ msgstr "Nessuna categoria da aggiungere?" msgid "This category already exists: " msgstr "Questa categoria esiste già: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Gennaio" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febbraio" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzo" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Aprile" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maggio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Giugno" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Luglio" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Settembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Ottobre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dicembre" @@ -118,7 +114,7 @@ msgstr "Errore" msgid "ownCloud password reset" msgstr "Ripristino password di ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Usa il collegamento seguente per ripristinare la password: {link}" diff --git a/l10n/it/files.po b/l10n/it/files.po index 29c50647d14..daa29074e68 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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -59,31 +59,35 @@ msgstr "File" msgid "Delete" msgstr "Elimina" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "esiste già" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "annulla" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "sostituito" -#: js/filelist.js:195 -msgid "with" -msgstr "con" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "annulla" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "con" + +#: js/filelist.js:271 msgid "deleted" msgstr "eliminati" @@ -99,44 +103,44 @@ msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 by msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "In corso" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:409 +#: js/files.js:423 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:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nome non valido" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dimensione" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificato" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "cartella" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "cartelle" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "file" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "file" @@ -170,7 +174,7 @@ msgstr "Dimensione massima per i file ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Salva" #: templates/index.php:7 msgid "New" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 7a1601c8818..1ec0daf688c 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 05:39+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,12 +72,12 @@ msgstr "Lingua modificata" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Impossibile aggiungere l'utente al gruppo %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Impossibile rimuovere l'utente dal gruppo %s" #: js/apps.js:18 msgid "Error" @@ -196,7 +196,7 @@ msgstr "Vedere la pagina dell'applicazione su apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licenziato da " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index d0d6924197f..139012d619a 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 07:44+0000\n" -"Last-Translator: ttyn \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "追加するカテゴリはありませんか?" msgid "This category already exists: " msgstr "このカテゴリはすでに存在します: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "設定" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "1月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "2月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "3月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "4月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "5月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "6月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "7月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "8月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "9月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "10月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "11月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "12月" @@ -115,7 +111,7 @@ msgstr "エラー" msgid "ownCloud password reset" msgstr "ownCloudのパスワードをリセットします" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "パスワードをリセットするには次のリンクをクリックして下さい: {link}" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 74741422170..c73d204ecbc 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "ファイル" msgid "Delete" msgstr "削除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "既に存在します" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "置き換え" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "置換:" -#: js/filelist.js:195 -msgid "with" -msgstr "←" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "←" + +#: js/filelist.js:271 msgid "deleted" msgstr "削除" @@ -97,44 +101,44 @@ msgstr "アップロード使用としているファイルがディレクトリ msgid "Upload Error" msgstr "アップロードエラー" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "保留" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "無効な名前、'/' は使用できません。" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "サイズ" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "更新日時" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "フォルダ" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "フォルダ" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ファイル" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ファイル" @@ -168,7 +172,7 @@ msgstr "ZIPファイルへの最大入力サイズ" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "保存" #: templates/index.php:7 msgid "New" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index b98da01025a..9652d0d9757 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 02:09+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,11 +30,11 @@ msgstr "認証エラー" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "グループは既に存在しています" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "グループを追加できません" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -54,11 +54,11 @@ msgstr "無効なリクエストです" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "グループを削除できません" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "ユーザを削除できません" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -67,12 +67,12 @@ msgstr "言語が変更されました" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "ユーザをグループ %s に追加できません" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "ユーザをグループ %s から削除できません" #: js/apps.js:18 msgid "Error" @@ -191,7 +191,7 @@ msgstr "apps.owncloud.com でアプリケーションのページを見てくだ #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-ライセンス: " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index d414be77531..4d2f0561de8 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "추가할 카테고리가 없습니까?" msgid "This category already exists: " msgstr "이 카테고리는 이미 존재합니다:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "설정" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "1월" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "2월" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "3월" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "4월" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "5월" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "6월" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "7월" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "8월" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "9월" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "10월" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "11월" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "12월" @@ -115,7 +111,7 @@ msgstr "에러" msgid "ownCloud password reset" msgstr "ownCloud 비밀번호 재설정" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "다음 링크를 사용하여 암호를 초기화할 수 있습니다: {link}" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 05dda7be5a3..2abe6f9ed62 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "파일" msgid "Delete" msgstr "삭제" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "이미 존재 합니다" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "대체" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "취소" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "대체됨" -#: js/filelist.js:195 -msgid "with" -msgstr "와" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "복구" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "와" + +#: js/filelist.js:271 msgid "deleted" msgstr "삭제" @@ -97,44 +101,44 @@ msgstr "이 파일은 디렉토리이거나 0 바이트이기 때문에 업로 msgid "Upload Error" msgstr "업로드 에러" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "보류 중" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "업로드 취소." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "잘못된 이름, '/' 은 허용이 되지 않습니다." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "크기" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "수정됨" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "폴더" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "폴더" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "파일" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "파일" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index a9de0752461..6c3da7e6b59 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 21:47+0000\n" -"Last-Translator: sim0n \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,59 +30,55 @@ msgstr "Keng Kategorie fir bäizesetzen?" msgid "This category already exists: " msgstr "Des Kategorie existéiert schonn:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Astellungen" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mäerz" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abrëll" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mee" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezember" @@ -114,7 +110,7 @@ msgstr "Fehler" msgid "ownCloud password reset" msgstr "ownCloud Passwuert reset" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Benotz folgende Link fir däi Passwuert ze reseten: {link}" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index bda384f1ce1..bdce420aa1c 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "Dateien" msgid "Delete" msgstr "Läschen" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "existéiert schonn" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ersat" -#: js/filelist.js:195 -msgid "with" -msgstr "mat" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "mat" + +#: js/filelist.js:271 msgid "deleted" msgstr "geläscht" @@ -96,44 +100,44 @@ msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss msgid "Upload Error" msgstr "Fehler beim eroplueden" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:409 +#: js/files.js:423 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:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ongültege Numm, '/' net erlaabt." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Gréisst" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Geännert" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "Dossier" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "Dossieren" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "Datei" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "Dateien" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index d2e08de4377..1e9dd8d63af 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "Nepridėsite jokios kategorijos?" msgid "This category already exists: " msgstr "Tokia kategorija jau yra:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Sausis" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Vasaris" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Kovas" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Balandis" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Gegužė" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Birželis" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Liepa" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Rugpjūtis" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Rugsėjis" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Spalis" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Lapkritis" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Gruodis" @@ -114,7 +110,7 @@ msgstr "Klaida" msgid "ownCloud password reset" msgstr "ownCloud slaptažodžio atkūrimas" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Slaptažodio atkūrimui naudokite šią nuorodą: {link}" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 1aff17e92e2..058124ee7fa 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Failai" msgid "Delete" msgstr "Ištrinti" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai kataloga msgid "Upload Error" msgstr "Įkėlimo klaida" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Laukiantis" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Pavadinime negali būti naudojamas ženklas \"/\"." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dydis" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Pakeista" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "katalogas" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "katalogai" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "failas" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "failai" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 35b9d2e8087..3716a06f25b 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Izmantojiet šo linku lai mainītu paroli" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index b6fb8d8d076..5b5c7464b7d 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -56,31 +56,35 @@ msgstr "Faili" msgid "Delete" msgstr "Izdzēst" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "tāds fails jau eksistē" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "aizvietots" -#: js/filelist.js:195 -msgid "with" -msgstr "ar" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "vienu soli atpakaļ" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "ar" + +#: js/filelist.js:271 msgid "deleted" msgstr "izdzests" @@ -96,44 +100,44 @@ msgstr "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai ar msgid "Upload Error" msgstr "Augšuplādēšanas laikā radās kļūda" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Šis simbols '/', nav atļauts." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Izmērs" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mape" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mapes" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fails" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "faili" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index b8fbb8b2a1d..f818b6bad6c 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Нема категорија да се додаде?" msgid "This category already exists: " msgstr "Оваа категорија веќе постои:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Поставки" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Јануари" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Февруари" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Март" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Април" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Мај" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Јуни" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Јули" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Август" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Септември" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Октомври" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Ноември" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Декември" @@ -116,7 +112,7 @@ msgstr "Грешка" msgid "ownCloud password reset" msgstr "ресетирање на лозинка за ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 2ddfad5b8ce..7b01b543419 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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Датотеки" msgid "Delete" msgstr "Избриши" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "Не може да се преземе вашата датотека б msgid "Upload Error" msgstr "Грешка при преземање" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Чека" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "неисправно име, '/' не е дозволено." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Големина" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Променето" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "фолдер" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "фолдери" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "датотека" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "датотеки" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 76453523a6c..9902f55e846 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Tiada kategori untuk di tambah?" msgid "This category already exists: " msgstr "Kategori ini telah wujud" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Tetapan" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mac" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mei" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Jun" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julai" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Ogos" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Disember" @@ -116,7 +112,7 @@ msgstr "Ralat" msgid "ownCloud password reset" msgstr "Set semula kata lalaun ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Guna pautan berikut untuk menetapkan semula kata laluan anda: {link}" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 9ba3bb1e22b..8c80a09dc7c 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -59,31 +59,35 @@ msgstr "fail" msgid "Delete" msgstr "Padam" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "Sudah wujud" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ganti" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "Batal" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "diganti" -#: js/filelist.js:195 -msgid "with" -msgstr "dengan" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "dengan" + +#: js/filelist.js:271 msgid "deleted" msgstr "dihapus" @@ -99,44 +103,44 @@ msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau sai msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Dalam proses" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "penggunaa nama tidak sah, '/' tidak dibenarkan." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Saiz" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "direktori" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "direktori" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fail" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fail" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 7f1fc5fdb4e..edb38d95e59 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -34,59 +34,55 @@ msgstr "Ingen kategorier å legge til?" msgid "This category already exists: " msgstr "Denne kategorien finnes allerede:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mars" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Desember" @@ -118,7 +114,7 @@ msgstr "Feil" msgid "ownCloud password reset" msgstr "Tilbakestill ownCloud passord" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Bruk følgende lenke for å tilbakestille passordet ditt: {link}" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index a65a66c9649..c39e87c9823 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -60,31 +60,35 @@ msgstr "Filer" msgid "Delete" msgstr "Slett" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "eksisterer allerede" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "erstatt" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "erstattet" -#: js/filelist.js:195 -msgid "with" -msgstr "med" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "angre" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "med" + +#: js/filelist.js:271 msgid "deleted" msgstr "slettet" @@ -100,44 +104,44 @@ msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ventende" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ugyldig navn, '/' er ikke tillatt. " -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Størrelse" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Endret" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mappe" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mapper" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fil" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "filer" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 2a40cf05712..03a847800eb 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -4,6 +4,7 @@ # # Translators: # , 2011. +# , 2012. # Erik Bent , 2012. # , 2011. # , 2012. @@ -14,15 +15,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 20:13+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -36,59 +37,55 @@ msgstr "Geen categorie toevoegen?" msgid "This category already exists: " msgstr "De categorie bestaat al." -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Instellingen" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Maart" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mei" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Augustus" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -120,7 +117,7 @@ msgstr "Fout" msgid "ownCloud password reset" msgstr "ownCloud wachtwoord herstellen" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Gebruik de volgende link om je wachtwoord te resetten: {link}" @@ -147,7 +144,7 @@ msgstr "Resetaanvraag" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Je wachtwoord is geweizigd" +msgstr "Je wachtwoord is gewijzigd" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 96f7a87e84e..b710bae7f68 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -5,6 +5,7 @@ # Translators: # , 2011. # , 2011. +# , 2012. # Erik Bent , 2012. # , 2011. # , 2012. @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -63,31 +64,35 @@ msgstr "Bestanden" msgid "Delete" msgstr "Verwijder" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "bestaat al" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "vervang" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "vervangen" -#: js/filelist.js:195 -msgid "with" -msgstr "door" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "door" + +#: js/filelist.js:271 msgid "deleted" msgstr "verwijderd" @@ -103,44 +108,44 @@ msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgroo msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Wachten" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ongeldige naam, '/' is niet toegestaan." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "map" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mappen" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "bestand" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "bestanden" @@ -174,7 +179,7 @@ msgstr "Maximale grootte voor ZIP bestanden" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Opslaan" #: templates/index.php:7 msgid "New" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 48b5c0641ae..7027b587198 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -3,28 +3,29 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Richard Bos , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 08:29+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 11:13+0000\n" +"Last-Translator: diederikdehaas \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "Passeerwoord" +msgstr "Wachtwoord" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Verzenden" #: templates/public.php:9 templates/public.php:19 msgid "Download" @@ -34,6 +35,6 @@ msgstr "Downloaden" msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 3c52376d35c..207f04819e1 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -4,6 +4,7 @@ # # Translators: # , 2011. +# , 2012. # Erik Bent , 2012. # , 2011, 2012. # , 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 11:28+0000\n" +"Last-Translator: diederikdehaas \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,11 +36,11 @@ msgstr "Authenticatie fout" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Groep bestaat al" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Niet in staat om groep toe te voegen" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,11 +60,11 @@ msgstr "Ongeldig verzoek" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Niet in staat om groep te verwijderen" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Niet in staat om gebruiker te verwijderen" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -72,12 +73,12 @@ msgstr "Taal aangepast" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Niet in staat om gebruiker toe te voegen aan groep %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Niet in staat om gebruiker te verwijderen uit groep %s" #: js/apps.js:18 msgid "Error" @@ -180,7 +181,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -196,7 +197,7 @@ msgstr "Zie de applicatiepagina op apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-Gelicenseerd door " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index aa0a9a4c8be..ea34767b84e 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -115,7 +111,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Bruk føljane link til å tilbakestille passordet ditt: {link}" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 9bf43656e8a..fc058e3f3ea 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Filer" msgid "Delete" msgstr "Slett" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Storleik" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Endra" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 3889b13622d..0cd447bf8ed 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 06:40+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,59 +35,55 @@ msgstr "Brak kategorii" msgid "This category already exists: " msgstr "Ta kategoria już istnieje" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Styczeń" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Luty" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzec" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Kwiecień" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Czerwiec" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Lipiec" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Sierpień" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Wrzesień" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Październik" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Listopad" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Grudzień" @@ -119,7 +115,7 @@ msgstr "Błąd" msgid "ownCloud password reset" msgstr "restart hasła" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Proszę użyć tego odnośnika do zresetowania hasła: {link}" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index cce7204605e..2512f6db596 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -6,13 +6,14 @@ # Cyryl Sochacki <>, 2012. # Marcin Małecki , 2011, 2012. # , 2011. +# , 2012. # Piotr Sokół , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -59,31 +60,35 @@ msgstr "Pliki" msgid "Delete" msgstr "Usuwa element" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "Już istnieje" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "zastap" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "zastąpione" -#: js/filelist.js:195 -msgid "with" -msgstr "z" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "wróć" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "z" + +#: js/filelist.js:271 msgid "deleted" msgstr "skasuj" @@ -99,44 +104,44 @@ msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Oczekujące" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Rozmiar" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "folder" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "foldery" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "plik" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "pliki" @@ -170,7 +175,7 @@ msgstr "Maksymalna wielkość pliku wejściowego ZIP " #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Zapisz" #: templates/index.php:7 msgid "New" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index d6fef0cea3e..adfbe39053c 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,14 +9,15 @@ # Marcin Małecki , 2011, 2012. # Marcin Małecki , 2011. # , 2011. +# , 2012. # Piotr Sokół , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 12:06+0000\n" +"Last-Translator: emc \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,12 +73,12 @@ msgstr "Język zmieniony" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nie można dodać użytkownika do grupy %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nie można usunąć użytkownika z grupy %s" #: js/apps.js:18 msgid "Error" @@ -110,7 +111,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW." #: templates/admin.php:31 msgid "Cron" @@ -146,7 +147,7 @@ msgstr "Zezwalaj na łącza" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Zezwalaj użytkownikom na puliczne współdzielenie elementów za pomocą linków" #: templates/admin.php:56 msgid "Allow resharing" @@ -154,15 +155,15 @@ msgstr "Zezwól na ponowne udostępnianie" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Zezwalaj użytkownikom na ponowne współdzielenie elementów już z nimi współdzilonych" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" #: templates/admin.php:69 msgid "Log" @@ -180,7 +181,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Stwirzone przez społeczność ownCloud, the kod źródłowy na licencji AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -196,7 +197,7 @@ msgstr "Zobacz stronę aplikacji na apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licencjonowane przez " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index f7b7d5a38de..55486564fd2 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index c47ae7e8223..227d04a1ecb 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index be5dc9aeb66..6e1c9fdcd9c 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -34,59 +34,55 @@ msgstr "Nenhuma categoria adicionada?" msgid "This category already exists: " msgstr "Essa categoria já existe" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurações" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Janeiro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Fevereiro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Março" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junho" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julho" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Outubro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezembro" @@ -118,7 +114,7 @@ msgstr "Erro" msgid "ownCloud password reset" msgstr "Redefinir senha ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Use o seguinte link para redefinir sua senha: {link}" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 82a5a58bd6e..6e29f6321bf 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -60,31 +60,35 @@ msgstr "Arquivos" msgid "Delete" msgstr "Excluir" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "já existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substituir" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituido " -#: js/filelist.js:195 -msgid "with" -msgstr "com" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfazer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "com" + +#: js/filelist.js:271 msgid "deleted" msgstr "deletado" @@ -100,44 +104,44 @@ msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendente" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nome inválido, '/' não é permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamanho" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "pasta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "pastas" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "arquivo" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "arquivos" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 159432daa93..ef75d8f6bdf 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nenhuma categoria para adicionar?" msgid "This category already exists: " msgstr "Esta categoria já existe:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Definições" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Janeiro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Fevereiro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Março" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junho" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julho" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Outubro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezembro" @@ -116,7 +112,7 @@ msgstr "Erro" msgid "ownCloud password reset" msgstr "Reposição da password ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Use o seguinte endereço para repor a sua password: {link}" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 80b71ab553e..c0ba21ecbc6 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "Ficheiros" msgid "Delete" msgstr "Apagar" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "Já existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substituir" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituido" -#: js/filelist.js:195 -msgid "with" -msgstr "com" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfazer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "com" + +#: js/filelist.js:271 msgid "deleted" msgstr "apagado" @@ -98,44 +102,44 @@ msgstr "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou te msgid "Upload Error" msgstr "Erro no upload" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendente" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "O upload foi cancelado." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "nome inválido, '/' não permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamanho" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "pasta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "pastas" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ficheiro" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ficheiros" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 40d7fc389f3..42e779595e1 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nici o categorie de adăugat?" msgid "This category already exists: " msgstr "Această categorie deja există:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurări" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -116,7 +112,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "Resetarea parolei ownCloud " -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Folosește următorul link pentru a reseta parola: {link}" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index c9ff62753cc..84051830b49 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Fișiere" msgid "Delete" msgstr "Șterge" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dimensiune" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificat" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index cd7648d5b90..fa6451a38b3 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -33,59 +33,55 @@ msgstr "Нет категорий для добавления?" msgid "This category already exists: " msgstr "Эта категория уже существует: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Настройки" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Январь" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Февраль" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Март" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Апрель" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Май" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Июнь" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Июль" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Август" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Сентябрь" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Октябрь" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Ноябрь" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Декабрь" @@ -117,7 +113,7 @@ msgstr "Ошибка" msgid "ownCloud password reset" msgstr "Сброс пароля " -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Используйте следующую ссылку чтобы сбросить пароль: {link}" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index e558e9777a9..250d6badf4e 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -61,31 +61,35 @@ msgstr "Файлы" msgid "Delete" msgstr "Удалить" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "уже существует" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "заменить" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "отмена" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "заменён" -#: js/filelist.js:195 -msgid "with" -msgstr "с" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "отмена" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "с" + +#: js/filelist.js:271 msgid "deleted" msgstr "удален" @@ -101,44 +105,44 @@ msgstr "Не удается загрузить файл размером 0 ба msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ожидание" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Неверное имя, '/' не допускается." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Размер" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Изменён" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "папка" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "папки" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "файл" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "файлы" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 61648a74b24..6c4aeee5d54 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 2ea2165835d..3d22b6c9367 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index e0a133b9ed1..bcdf41a7d2e 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "Žiadna kategória pre pridanie?" msgid "This category already exists: " msgstr "Táto kategória už existuje:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Január" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Február" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marec" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Apríl" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Máj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Jún" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Júl" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Október" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -115,7 +111,7 @@ msgstr "Chyba" msgid "ownCloud password reset" msgstr "Obnovenie hesla pre ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 5d83420becd..e47f0b00883 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Súbory" msgid "Delete" msgstr "Odstrániť" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." msgid "Upload Error" msgstr "Chyba nahrávania" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Čaká sa" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Nahrávanie zrušené" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Chybný názov, \"/\" nie je povolené" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Veľkosť" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Upravené" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "priečinok" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "priečinky" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "súbor" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "súbory" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index c7ae40ae63c..a698624cb5d 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 17:32+0000\n" +"Last-Translator: intense \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Šifrovanie" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Vynechať nasledujúce súbory pri šifrovaní" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "Žiadne" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "Zapnúť šifrovanie" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 5039ad2eacd..66b5310397f 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 14:09+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Ni kategorije za dodajanje?" msgid "This category already exists: " msgstr "Ta kategorija že obstaja:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "marec" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "april" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "junij" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "julij" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "avgust" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "september" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "november" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "december" @@ -116,7 +112,7 @@ msgstr "Napaka" msgid "ownCloud password reset" msgstr "Ponastavitev gesla ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Uporabite sledečo povezavo za ponastavitev gesla: {link}" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index f905c7b48cb..73d23c25795 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "Datoteke" msgid "Delete" msgstr "Izbriši" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "že obstaja" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "nadomesti" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ekliči" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "nadomeščen" -#: js/filelist.js:195 -msgid "with" -msgstr "z" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "z" + +#: js/filelist.js:271 msgid "deleted" msgstr "izbrisano" @@ -98,44 +102,44 @@ msgstr "Nalaganje ni mogoče, saj gre za mapo, ali pa ima datoteka velikost 0 ba msgid "Upload Error" msgstr "Napaka pri nalaganju" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Na čakanju" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Nalaganje je bilo preklicano." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalaganje preklicali." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Velikost" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mapa" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mape" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "datoteka" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "datoteke" @@ -169,7 +173,7 @@ msgstr "Največja vhodna velikost za ZIP datoteke" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Shrani" #: templates/index.php:7 msgid "New" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 870976e9060..bd1e022b7d6 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 06:02+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,12 +68,12 @@ msgstr "Jezik je bil spremenjen" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Uporabnika ni mogoče dodati k skupini %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Uporabnika ni mogoče odstraniti iz skupine %s" #: js/apps.js:18 msgid "Error" @@ -192,7 +192,7 @@ msgstr "Obiščite spletno stran aplikacije na apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licencirana s strani " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/so/core.po b/l10n/so/core.po index 4ace6abe5b2..f34edceab57 100644 --- a/l10n/so/core.po +++ b/l10n/so/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/so/files.po b/l10n/so/files.po index c9c8fbd1ca1..a00a9a156cb 100644 --- a/l10n/so/files.po +++ b/l10n/so/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index a26d7b75298..2e4f99fe345 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Подешавања" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Овом везом ресетујте своју лозинку: {link}" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 49d3090e681..8dac0a42647 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "Фајлови" msgid "Delete" msgstr "Обриши" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Величина" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Задња измена" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 57abf6fe74e..c3541b058aa 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index fd9e18816f3..e52820431ed 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -56,31 +56,35 @@ msgstr "Fajlovi" msgid "Delete" msgstr "Obriši" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Veličina" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 870dffe8a99..57ad5c15e41 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 08:10+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -35,59 +35,55 @@ msgstr "Ingen kategori att lägga till?" msgid "This category already exists: " msgstr "Denna kategori finns redan:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Inställningar" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mars" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Augusti" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -119,7 +115,7 @@ msgstr "Fel" msgid "ownCloud password reset" msgstr "ownCloud lösenordsåterställning" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Använd följande länk för att återställa lösenordet: {link}" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 38e7c5af596..847a38a3958 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -61,31 +61,35 @@ msgstr "Filer" msgid "Delete" msgstr "Radera" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "finns redan" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ersätt" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ersatt" -#: js/filelist.js:195 -msgid "with" -msgstr "med" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "ångra" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "med" + +#: js/filelist.js:271 msgid "deleted" msgstr "raderad" @@ -101,44 +105,44 @@ msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Väntar" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:409 +#: js/files.js:423 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:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Storlek" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Ändrad" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mapp" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mappar" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fil" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "filer" @@ -172,7 +176,7 @@ msgstr "Största tillåtna storlek för ZIP-filer" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Spara" #: templates/index.php:7 msgid "New" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 77788a1797d..f93b1f0f3c7 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 06:05+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,11 +35,11 @@ msgstr "Autentiseringsfel" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Gruppen finns redan" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Kan inte lägga till grupp" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,11 +59,11 @@ msgstr "Ogiltig begäran" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Kan inte radera grupp" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Kan inte radera användare" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -72,12 +72,12 @@ msgstr "Språk ändrades" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Kan inte lägga till användare i gruppen %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Kan inte radera användare från gruppen %s" #: js/apps.js:18 msgid "Error" @@ -196,7 +196,7 @@ msgstr "Se programsida på apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licensierad av " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d59cc85eb81..9112352a3a0 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:51+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 44a43dfd40b..74ab3230866 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 99b6ae69c3b..0590a198801 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index adca26e6ea3..76fafddc1b2 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 160cb143db5..b0c45867827 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index be0aedd0b89..b17eb3894d1 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index cfbef6875d2..5a86298e890 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:51+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f506265f120..42965d3e0bd 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:51+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 403d1173b37..82b19373c1d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 80fbd9a5ac9..57ee6a0d229 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 17:01+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "ไม่มีหมวดหมู่ที่ต้องการเ msgid "This category already exists: " msgstr "หมวดหมู่นี้มีอยู่แล้ว: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "มกราคม" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "กุมภาพันธ์" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "มีนาคม" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "เมษายน" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "พฤษภาคม" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "มิถุนายน" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "กรกฏาคม" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "สิงหาคม" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "กันยายน" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "ตุลาคม" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "พฤศจิกายน" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "ธันวาคม" @@ -115,7 +111,7 @@ msgstr "พบข้อผิดพลาด" msgid "ownCloud password reset" msgstr "รีเซ็ตรหัสผ่าน ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 93ca73a3d10..b6ff21b3829 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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "ไฟล์" msgid "Delete" msgstr "ลบ" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "มีอยู่แล้ว" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "แทนที่แล้ว" -#: js/filelist.js:195 -msgid "with" -msgstr "กับ" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "กับ" + +#: js/filelist.js:271 msgid "deleted" msgstr "ลบแล้ว" @@ -97,44 +101,44 @@ msgstr "ไม่สามารถอัพโหลดไฟล์ของค msgid "Upload Error" msgstr "เกิดข้อผิดพลาดในการอัพโหลด" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "ขนาด" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "โฟลเดอร์" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "โฟลเดอร์" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ไฟล์" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ไฟล์" @@ -168,7 +172,7 @@ msgstr "ขนาดไฟล์ ZIP สูงสุด" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "บันทึก" #: templates/index.php:7 msgid "New" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 4de68241556..1919a13b9ef 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:31+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,11 +31,11 @@ msgstr "เกิดข้อผิดพลาดเกี่ยวกับส #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "ไม่สามารถเพิ่มกลุ่มได้" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -55,11 +55,11 @@ msgstr "คำร้องขอไม่ถูกต้อง" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "ไม่สามารถลบกลุ่มได้" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "ไม่สามารถลบผู้ใช้งานได้" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -68,12 +68,12 @@ msgstr "เปลี่ยนภาษาเรียบร้อยแล้ว #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้" #: js/apps.js:18 msgid "Error" @@ -192,7 +192,7 @@ msgstr "ดูหน้าแอพพลิเคชั่นที่ apps.own #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-ลิขสิทธิ์การใช้งานโดย " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 8644c4df375..a715d982b63 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 21:48+0000\n" -"Last-Translator: Caner Başaran \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Eklenecek kategori yok?" msgid "This category already exists: " msgstr "Bu kategori zaten mevcut: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Ocak" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Şubat" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mart" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Nisan" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mayıs" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Haziran" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Temmuz" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Ağustos" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Eylül" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Ekim" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Kasım" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Aralık" @@ -116,7 +112,7 @@ msgstr "Hata" msgid "ownCloud password reset" msgstr "ownCloud parola sıfırlama" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 865f2bc6d66..01675ca064c 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -59,31 +59,35 @@ msgstr "Dosyalar" msgid "Delete" msgstr "Sil" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "zaten mevcut" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "değiştir" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "iptal" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "değiştirildi" -#: js/filelist.js:195 -msgid "with" -msgstr "ile" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "geri al" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "ile" + +#: js/filelist.js:271 msgid "deleted" msgstr "silindi" @@ -99,44 +103,44 @@ msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yükle msgid "Upload Error" msgstr "Yükleme hatası" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Bekliyor" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:409 +#: js/files.js:423 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:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Geçersiz isim, '/' işaretine izin verilmiyor." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Boyut" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "dizin" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "dizinler" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "dosya" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "dosyalar" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index f68db85912c..532bd0a5474 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Налаштування" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -115,7 +111,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index ebdc5f8b9c0..558899c1a20 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "Файли" msgid "Delete" msgstr "Видалити" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 -msgid "cancel" +#: js/filelist.js:186 +msgid "suggest name" msgstr "" -#: js/filelist.js:195 -msgid "replaced" +#: js/filelist.js:186 js/filelist.js:188 +msgid "cancel" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 +msgid "replaced" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "відмінити" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "видалені" @@ -97,44 +101,44 @@ msgstr "Неможливо завантажити ваш файл тому, що msgid "Upload Error" msgstr "Помилка завантаження" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Очікування" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Некоректне ім'я, '/' не дозволено." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Розмір" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Змінено" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "тека" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "теки" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "файл" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "файли" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 16e671b63c2..4030732e1e4 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "Không có danh mục được thêm?" msgid "This category already exists: " msgstr "Danh mục này đã được tạo :" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Tháng 1" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Tháng 2" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Tháng 3" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Tháng 4" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Tháng 5" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Tháng 6" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Tháng 7" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Tháng 8" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Tháng 9" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Tháng 10" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Tháng 11" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Tháng 12" @@ -114,7 +110,7 @@ msgstr "Lỗi" msgid "ownCloud password reset" msgstr "Khôi phục mật khẩu Owncloud " -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 6e2d43a3496..fb95389e333 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "Tập tin" msgid "Delete" msgstr "Xóa" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Chờ" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Tên không hợp lệ ,không được phép dùng '/'" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "folder" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "folders" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "file" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "files" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 428eaa941b3..1993d8aed9a 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "没有分类添加了?" msgid "This category already exists: " msgstr "这个分类已经存在了:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "设置" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "一月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "二月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "三月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "四月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "五月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "六月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "七月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "八月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "九月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "十月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "十一月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "十二月" @@ -114,7 +110,7 @@ msgstr "错误" msgid "ownCloud password reset" msgstr "私有云密码重置" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "使用下面的链接来重置你的密码:{link}" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 00bdb62e96f..3224b4b01df 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "文件" msgid "Delete" msgstr "删除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "已经存在了" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "替换" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "取消" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "替换过了" -#: js/filelist.js:195 -msgid "with" -msgstr "随着" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "撤销" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "随着" + +#: js/filelist.js:271 msgid "deleted" msgstr "删除" @@ -96,44 +100,44 @@ msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pending" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法文件名,\"/\"是不被许可的" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "修改日期" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "文件夹" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "文件夹" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "文件" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "文件" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 83cd931d856..57d881dcff1 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "没有可添加分类?" msgid "This category already exists: " msgstr "此分类已存在: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "设置" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "一月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "二月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "三月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "四月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "五月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "六月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "七月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "八月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "九月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "十月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "十一月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "十二月" @@ -115,7 +111,7 @@ msgstr "错误" msgid "ownCloud password reset" msgstr "重置 ownCloud 密码" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "使用以下链接重置您的密码:{link}" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 4e2d600c1e5..3b55dd63418 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "文件" msgid "Delete" msgstr "删除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "已经存在" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "替换" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "取消" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "已经替换" -#: js/filelist.js:195 -msgid "with" -msgstr "随着" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "撤销" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "随着" + +#: js/filelist.js:271 msgid "deleted" msgstr "已经删除" @@ -98,44 +102,44 @@ msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" msgid "Upload Error" msgstr "上传错误" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "操作等待中" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "修改日期" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "文件夹" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "文件夹" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "文件" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "文件" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 7af51044d5f..72df7a953cc 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 07:35+0000\n" -"Last-Translator: Ming Yi Wu \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "無分類添加?" msgid "This category already exists: " msgstr "此分類已經存在:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "設定" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "一月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "二月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "三月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "四月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "五月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "六月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "七月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "八月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "九月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "十月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "十一月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "十二月" @@ -115,7 +111,7 @@ msgstr "錯誤" msgid "ownCloud password reset" msgstr "ownCloud 密碼重設" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "請循以下聯結重設你的密碼: (聯結) " diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 3c6aad93fce..ac4a772abdb 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "檔案" msgid "Delete" msgstr "刪除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "已經存在" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "取代" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "取消" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為 msgid "Upload Error" msgstr "上傳發生錯誤" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中. 離開此頁面將會取消上傳." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "無效的名稱, '/'是不被允許的" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "修改" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 933dbe541f5..00815f97533 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -4,14 +4,14 @@ "Settings" => "Nastavení", "Users" => "Uživatelé", "Apps" => "Aplikace", -"Admin" => "Admin", +"Admin" => "Administrace", "ZIP download is turned off." => "Stahování ZIPu je vypnuto.", -"Files need to be downloaded one by one." => "Soubory je nutno stahovat samostatně.", +"Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", -"Selected files too large to generate zip file." => "Vybarné soubory jsou pro vytvoření zipu příliš velké.", +"Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření zip souboru.", "Application is not enabled" => "Aplikace není povolena", -"Authentication error" => "Chyba autorizace", -"Token expired. Please reload page." => "Realce expirovala. Obnovte prosím stranu.", +"Authentication error" => "Chyba ověření", +"Token expired. Please reload page." => "Token vypršel. Obnovte prosím stránku.", "seconds ago" => "před vteřinami", "1 minute ago" => "před 1 minutou", "%d minutes ago" => "před %d minutami", @@ -21,5 +21,8 @@ "last month" => "minulý měsíc", "months ago" => "před měsíci", "last year" => "loni", -"years ago" => "před lety" +"years ago" => "před lety", +"%s is available. Get more information" => "%s je dostupná. Získat více informací", +"up to date" => "aktuální", +"updates check is disabled" => "kontrola aktualizací je vypnuta" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 76fb2fd7fe5..524d6c79257 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -10,6 +10,8 @@ "Unable to delete group" => "No es pot eliminar el grup", "Unable to delete user" => "No es pot eliminar l'usuari", "Language changed" => "S'ha canviat l'idioma", +"Unable to add user to group %s" => "No es pot afegir l'usuari al grup %s", +"Unable to remove user from group %s" => "No es pot eliminar l'usuari del grup %s", "Error" => "Error", "Disable" => "Desactiva", "Enable" => "Activa", @@ -36,6 +38,7 @@ "Add your App" => "Afegiu la vostra aplicació", "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", +"-licensed by " => "-propietat de ", "Documentation" => "Documentació", "Managing Big Files" => "Gestió de fitxers grans", "Ask a question" => "Feu una pregunta", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index e0be2117b84..a68f10269f5 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,28 +1,46 @@ "Nepodařílo se stáhnout seznam z App Store", -"Authentication error" => "Chyba autorizace", +"Unable to load list from App Store" => "Nelze načíst seznam z App Store", +"Authentication error" => "Chyba ověření", +"Group already exists" => "Skupina již existuje", +"Unable to add group" => "Nelze přidat skupinu", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", -"OpenID Changed" => "OpenID změněn", -"Invalid request" => "Chybný dotaz", +"OpenID Changed" => "OpenID změněno", +"Invalid request" => "Neplatný požadavek", +"Unable to delete group" => "Nelze smazat skupinu", +"Unable to delete user" => "Nelze smazat uživatele", "Language changed" => "Jazyk byl změněn", +"Unable to add user to group %s" => "Nelze přidat uživatele do skupiny %s", +"Unable to remove user from group %s" => "Nelze odstranit uživatele ze skupiny %s", "Error" => "Chyba", -"Disable" => "Vypnout", -"Enable" => "Zapnout", +"Disable" => "Zakázat", +"Enable" => "Povolit", "Saving..." => "Ukládám...", "__language_name__" => "Česky", -"Security Warning" => "Bezpečnostní upozornění", +"Security Warning" => "Bezpečnostní varování", +"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." => "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru.", "Cron" => "Cron", -"execute one task with each page loaded" => "spustit jednu úlohu s každou nataženou stranou", +"execute one task with each page loaded" => "spustit jednu úlohu s každou načtenou stránkou", "cron.php is registered at a webcron service" => "cron.php je registrován jako služba webcron", -"use systems cron service" => "použijte systémovou službu cron", -"Log" => "Log", +"use systems cron service" => "použít systémovou službu cron", +"Share API" => "API sdílení", +"Enable Share API" => "Povolit API sdílení", +"Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", +"Allow links" => "Povolit odkazy", +"Allow users to share items to the public with links" => "Povolit uživatelům sdílet položky s veřejností pomocí odkazů", +"Allow resharing" => "Povolit znovu-sdílení", +"Allow users to share items shared with them again" => "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny", +"Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", +"Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", +"Log" => "Záznam", "More" => "Více", -"Add your App" => "Přidat vaší aplikaci", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL.", +"Add your App" => "Přidat Vaší aplikaci", "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", +"-licensed by " => "-licencováno ", "Documentation" => "Dokumentace", -"Managing Big Files" => "Spravování velkých souborů", +"Managing Big Files" => "Správa velkých souborů", "Ask a question" => "Zeptat se", "Problems connecting to help database." => "Problémy s připojením k databázi s nápovědou.", "Go there manually." => "Přejít ručně.", @@ -32,24 +50,24 @@ "Desktop and Mobile Syncing Clients" => "Klienti pro synchronizaci", "Download" => "Stáhnout", "Your password got changed" => "Vaše heslo bylo změněno", -"Unable to change your password" => "Vaše heslo se nepodařilo změnit", -"Current password" => "Aktuální heslo", +"Unable to change your password" => "Vaše heslo nelze změnit", +"Current password" => "Současné heslo", "New password" => "Nové heslo", "show" => "zobrazit", "Change password" => "Změnit heslo", -"Email" => "Email", -"Your email address" => "Vaše emailová adresa", -"Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte email adresu", +"Email" => "E-mail", +"Your email address" => "Vaše e-mailová adresa", +"Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte adresu e-mailu", "Language" => "Jazyk", -"Help translate" => "Pomoci překládat", +"Help translate" => "Pomoci s překladem", "use this address to connect to your ownCloud in your file manager" => "tuto adresu použijte pro připojení k ownCloud ve Vašem správci souborů", "Name" => "Jméno", "Password" => "Heslo", "Groups" => "Skupiny", "Create" => "Vytvořit", "Default Quota" => "Výchozí kvóta", -"Other" => "Jiné", -"Group Admin" => "Administrace skupiny", +"Other" => "Jiná", +"Group Admin" => "Správa skupiny", "Quota" => "Kvóta", -"Delete" => "Vymazat" +"Delete" => "Smazat" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index d955b75d0c3..4f3a12934e8 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", "Unable to delete user" => "Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", +"Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", +"Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", "Error" => "Fehler", "Disable" => "Deaktivieren", "Enable" => "Aktivieren", @@ -36,6 +38,7 @@ "Add your App" => "Fügen Sie Ihre App hinzu", "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", +"-licensed by " => "-lizenziert von ", "Documentation" => "Dokumentation", "Managing Big Files" => "Große Dateien verwalten", "Ask a question" => "Stellen Sie eine Frage", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 3ab7cb32ba8..2f2a06ce058 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -10,6 +10,8 @@ "Unable to delete group" => "No se pudo eliminar el grupo", "Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", +"Unable to add user to group %s" => "Imposible añadir el usuario al grupo %s", +"Unable to remove user from group %s" => "Imposible eliminar al usuario del grupo %s", "Error" => "Error", "Disable" => "Desactivar", "Enable" => "Activar", @@ -36,6 +38,7 @@ "Add your App" => "Añade tu aplicación", "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", +"-licensed by " => "-licenciado por ", "Documentation" => "Documentación", "Managing Big Files" => "Administra archivos grandes", "Ask a question" => "Hacer una pregunta", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 37a80aaeea1..54647c29616 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Ryhmän poisto epäonnistui", "Unable to delete user" => "Käyttäjän poisto epäonnistui", "Language changed" => "Kieli on vaihdettu", +"Unable to add user to group %s" => "Käyttäjän tai ryhmän %s lisääminen ei onnistu", +"Unable to remove user from group %s" => "Käyttäjän poistaminen ryhmästä %s ei onnistu", "Error" => "Virhe", "Disable" => "Poista käytöstä", "Enable" => "Käytä", @@ -36,6 +38,7 @@ "Add your App" => "Lisää ohjelmasi", "Select an App" => "Valitse ohjelma", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", +"-licensed by " => "-lisensoija ", "Documentation" => "Dokumentaatio", "Managing Big Files" => "Suurten tiedostojen hallinta", "Ask a question" => "Kysy jotain", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 890d1e39f10..7baa923bfcb 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Impossible de supprimer le groupe", "Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changée", +"Unable to add user to group %s" => "Impossible d'ajouter l'utilisateur au groupe %s", +"Unable to remove user from group %s" => "Impossible de supprimer l'utilisateur du groupe %s", "Error" => "Erreur", "Disable" => "Désactiver", "Enable" => "Activer", @@ -36,6 +38,7 @@ "Add your App" => "Ajoutez votre application", "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", +"-licensed by " => "-sous licence, par ", "Documentation" => "Documentation", "Managing Big Files" => "Gérer les gros fichiers", "Ask a question" => "Poser une question", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 8c8ec63f4c4..695ed31eeef 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Impossibile eliminare il gruppo", "Unable to delete user" => "Impossibile eliminare l'utente", "Language changed" => "Lingua modificata", +"Unable to add user to group %s" => "Impossibile aggiungere l'utente al gruppo %s", +"Unable to remove user from group %s" => "Impossibile rimuovere l'utente dal gruppo %s", "Error" => "Errore", "Disable" => "Disabilita", "Enable" => "Abilita", @@ -36,6 +38,7 @@ "Add your App" => "Aggiungi la tua applicazione", "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", +"-licensed by " => "-licenziato da ", "Documentation" => "Documentazione", "Managing Big Files" => "Gestione file grandi", "Ask a question" => "Fai una domanda", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index dcf0568cbaa..fe1eed19806 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,11 +1,17 @@ "アプリストアからリストをロードできません", "Authentication error" => "認証エラー", +"Group already exists" => "グループは既に存在しています", +"Unable to add group" => "グループを追加できません", "Email saved" => "メールアドレスを保存しました", "Invalid email" => "無効なメールアドレス", "OpenID Changed" => "OpenIDが変更されました", "Invalid request" => "無効なリクエストです", +"Unable to delete group" => "グループを削除できません", +"Unable to delete user" => "ユーザを削除できません", "Language changed" => "言語が変更されました", +"Unable to add user to group %s" => "ユーザをグループ %s に追加できません", +"Unable to remove user from group %s" => "ユーザをグループ %s から削除できません", "Error" => "エラー", "Disable" => "無効", "Enable" => "有効", @@ -32,6 +38,7 @@ "Add your App" => "アプリを追加", "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", +"-licensed by " => "-ライセンス: ", "Documentation" => "ドキュメント", "Managing Big Files" => "大きなファイルを扱うには", "Ask a question" => "質問してください", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index ffa00dabaa1..5957f6282f1 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,11 +1,17 @@ "Kan de lijst niet van de App store laden", "Authentication error" => "Authenticatie fout", +"Group already exists" => "Groep bestaat al", +"Unable to add group" => "Niet in staat om groep toe te voegen", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", "OpenID Changed" => "OpenID is aangepast", "Invalid request" => "Ongeldig verzoek", +"Unable to delete group" => "Niet in staat om groep te verwijderen", +"Unable to delete user" => "Niet in staat om gebruiker te verwijderen", "Language changed" => "Taal aangepast", +"Unable to add user to group %s" => "Niet in staat om gebruiker toe te voegen aan groep %s", +"Unable to remove user from group %s" => "Niet in staat om gebruiker te verwijderen uit groep %s", "Error" => "Fout", "Disable" => "Uitschakelen", "Enable" => "Inschakelen", @@ -27,9 +33,11 @@ "Allow users to only share with users in their groups" => "Sta gebruikers toe om alleen met gebruikers in hun groepen te delen", "Log" => "Log", "More" => "Meer", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL.", "Add your App" => "Voeg je App toe", "Select an App" => "Selecteer een app", "See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", +"-licensed by " => "-Gelicenseerd door ", "Documentation" => "Documentatie", "Managing Big Files" => "Onderhoud van grote bestanden", "Ask a question" => "Stel een vraag", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index ee50d0fffa7..851099ef6b7 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -10,12 +10,15 @@ "Unable to delete group" => "Nie można usunąć grupy", "Unable to delete user" => "Nie można usunąć użytkownika", "Language changed" => "Język zmieniony", +"Unable to add user to group %s" => "Nie można dodać użytkownika do grupy %s", +"Unable to remove user from group %s" => "Nie można usunąć użytkownika z grupy %s", "Error" => "Błąd", "Disable" => "Wyłączone", "Enable" => "Włączone", "Saving..." => "Zapisywanie...", "__language_name__" => "Polski", "Security Warning" => "Ostrzeżenia bezpieczeństwa", +"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." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Cron" => "Cron", "execute one task with each page loaded" => "wykonanie jednego zadania z każdej załadowanej strony", "cron.php is registered at a webcron service" => "cron.php jest zarejestrowany w usłudze webcron", @@ -24,12 +27,18 @@ "Enable Share API" => "Włącz udostępniane API", "Allow apps to use the Share API" => "Zezwalaj aplikacjom na używanie API", "Allow links" => "Zezwalaj na łącza", +"Allow users to share items to the public with links" => "Zezwalaj użytkownikom na puliczne współdzielenie elementów za pomocą linków", "Allow resharing" => "Zezwól na ponowne udostępnianie", +"Allow users to share items shared with them again" => "Zezwalaj użytkownikom na ponowne współdzielenie elementów już z nimi współdzilonych", +"Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", +"Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", "Log" => "Log", "More" => "Więcej", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Stwirzone przez społeczność ownCloud, the kod źródłowy na licencji AGPL.", "Add your App" => "Dodaj aplikacje", "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", +"-licensed by " => "-licencjonowane przez ", "Documentation" => "Dokumentacja", "Managing Big Files" => "Zarządzanie dużymi plikami", "Ask a question" => "Zadaj pytanie", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index fc49d940b47..7b5c6bee3cb 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Ni mogoče izbrisati skupine", "Unable to delete user" => "Ni mogoče izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", +"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", "Error" => "Napaka", "Disable" => "Onemogoči", "Enable" => "Omogoči", @@ -36,6 +38,7 @@ "Add your App" => "Dodajte vašo aplikacijo", "Select an App" => "Izberite aplikacijo", "See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com", +"-licensed by " => "-licencirana s strani ", "Documentation" => "Dokumentacija", "Managing Big Files" => "Upravljanje velikih datotek", "Ask a question" => "Postavi vprašanje", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 9beb500194d..1a18e9670de 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -1,11 +1,17 @@ "Kan inte ladda listan från App Store", "Authentication error" => "Autentiseringsfel", +"Group already exists" => "Gruppen finns redan", +"Unable to add group" => "Kan inte lägga till grupp", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", "OpenID Changed" => "OpenID ändrat", "Invalid request" => "Ogiltig begäran", +"Unable to delete group" => "Kan inte radera grupp", +"Unable to delete user" => "Kan inte radera användare", "Language changed" => "Språk ändrades", +"Unable to add user to group %s" => "Kan inte lägga till användare i gruppen %s", +"Unable to remove user from group %s" => "Kan inte radera användare från gruppen %s", "Error" => "Fel", "Disable" => "Deaktivera", "Enable" => "Aktivera", @@ -32,6 +38,7 @@ "Add your App" => "Lägg till din applikation", "Select an App" => "Välj en App", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", +"-licensed by " => "-licensierad av ", "Documentation" => "Dokumentation", "Managing Big Files" => "Hantering av stora filer", "Ask a question" => "Ställ en fråga", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 7166c26a1ce..d775af76713 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -1,11 +1,17 @@ "ไม่สามารถโหลดรายการจาก App Store ได้", "Authentication error" => "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน", +"Group already exists" => "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", +"Unable to add group" => "ไม่สามารถเพิ่มกลุ่มได้", "Email saved" => "อีเมลถูกบันทึกแล้ว", "Invalid email" => "อีเมลไม่ถูกต้อง", "OpenID Changed" => "เปลี่ยนชื่อบัญชี OpenID แล้ว", "Invalid request" => "คำร้องขอไม่ถูกต้อง", +"Unable to delete group" => "ไม่สามารถลบกลุ่มได้", +"Unable to delete user" => "ไม่สามารถลบผู้ใช้งานได้", "Language changed" => "เปลี่ยนภาษาเรียบร้อยแล้ว", +"Unable to add user to group %s" => "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้", +"Unable to remove user from group %s" => "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", "Error" => "ข้อผิดพลาด", "Disable" => "ปิดใช้งาน", "Enable" => "เปิดใช้งาน", @@ -32,6 +38,7 @@ "Add your App" => "เพิ่มแอปของคุณ", "Select an App" => "เลือก App", "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", +"-licensed by " => "-ลิขสิทธิ์การใช้งานโดย ", "Documentation" => "เอกสารคู่มือการใช้งาน", "Managing Big Files" => "การจัดการไฟล์ขนาดใหญ่", "Ask a question" => "สอบถามข้อมูล", -- cgit v1.2.3 From 837eb1871d9b99fce32a418dd13284edfc41a398 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 5 Sep 2012 22:13:50 -0400 Subject: Don't delete the file anymore to replace it in the UI, just overwrite it --- apps/files/js/filelist.js | 27 +++++++++++---------------- lib/filecache.php | 4 ++++ lib/files.php | 2 +- 3 files changed, 16 insertions(+), 17 deletions(-) (limited to 'lib') diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index a9e48f24052..b777785f4d9 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -240,22 +240,17 @@ var FileList={ }, finishReplace:function() { if (!FileList.replaceCanceled && FileList.replaceOldName && FileList.replaceNewName) { - // Delete the file being replaced and rename the replacement - FileList.deleteCanceled = false; - FileList.deleteFiles = [FileList.replaceNewName]; - FileList.finishDelete(function() { - $.ajax({url: OC.filePath('files', 'ajax', 'rename.php'), async: false, data: { dir: $('#dir').val(), newname: FileList.replaceNewName, file: FileList.replaceOldName }, success: function(result) { - if (result && result.status == 'success') { - $('tr').filterAttr('data-replace', 'true').removeAttr('data-replace'); - } else { - OC.dialogs.alert(result.data.message, 'Error moving file'); - } - FileList.replaceCanceled = true; - FileList.replaceOldName = null; - FileList.replaceNewName = null; - FileList.lastAction = null; - }}); - }, true); + $.ajax({url: OC.filePath('files', 'ajax', 'rename.php'), async: false, data: { dir: $('#dir').val(), newname: FileList.replaceNewName, file: FileList.replaceOldName }, success: function(result) { + if (result && result.status == 'success') { + $('tr').filterAttr('data-replace', 'true').removeAttr('data-replace'); + } else { + OC.dialogs.alert(result.data.message, 'Error moving file'); + } + FileList.replaceCanceled = true; + FileList.replaceOldName = null; + FileList.replaceNewName = null; + FileList.lastAction = null; + }}); } }, do_delete:function(files){ diff --git a/lib/filecache.php b/lib/filecache.php index 364b908bcfa..811e8a3e6a2 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -155,6 +155,10 @@ class OC_FileCache{ if($root===false){ $root=OC_Filesystem::getRoot(); } + // If replacing an existing file, delete the file + if (self::inCache($newPath, $root)) { + self::delete($newPath, $root); + } $oldPath=$root.$oldPath; $newPath=$root.$newPath; $newParent=self::getParentId($newPath); diff --git a/lib/files.php b/lib/files.php index b8af5e04b71..00cbc63aba0 100644 --- a/lib/files.php +++ b/lib/files.php @@ -202,7 +202,7 @@ class OC_Files { * @param file $target */ public static function move($sourceDir,$source,$targetDir,$target){ - if(OC_User::isLoggedIn() && ($sourceDir != '' || $source != 'Shared') && !OC_Filesystem::file_exists($targetDir.'/'.$target)){ + if(OC_User::isLoggedIn() && ($sourceDir != '' || $source != 'Shared')){ $targetFile=self::normalizePath($targetDir.'/'.$target); $sourceFile=self::normalizePath($sourceDir.'/'.$source); return OC_Filesystem::rename($sourceFile,$targetFile); -- cgit v1.2.3 From 39577495e122a9d94507f99c6b3f9f3430735c13 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 6 Sep 2012 22:27:56 +0200 Subject: Add a directory separator to filter app directories with the same prefix. Fixes: oc-1663 --- lib/minimizer/css.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/minimizer/css.php b/lib/minimizer/css.php index 0f1435fde45..41886087199 100644 --- a/lib/minimizer/css.php +++ b/lib/minimizer/css.php @@ -16,7 +16,7 @@ class OC_Minimizer_CSS extends OC_Minimizer $in_root = false; foreach(OC::$APPSROOTS as $app_root) { - if(strpos($file, $app_root['path']) === 0) { + if(strpos($file, $app_root['path'].'/') === 0) { $in_root = rtrim($webroot.$app_root['url'], '/'); break; } -- cgit v1.2.3 From 2144b2f37ae90faa03a44e5526c29893c5c7e7d0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 6 Sep 2012 23:10:24 +0200 Subject: clear the filecache if the mount configuration has changed --- lib/filecache.php | 14 ++++++++++++++ lib/filesystem.php | 7 +++++++ 2 files changed, 21 insertions(+) (limited to 'lib') diff --git a/lib/filecache.php b/lib/filecache.php index 811e8a3e6a2..de38ad99e8e 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -474,6 +474,20 @@ class OC_FileCache{ $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE LENGTH(`path_hash`)<30'); $query->execute(); } + + /** + * clear filecache entries + * @param string user (optonal) + */ + public static function clear($user=''){ + if($user){ + $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE user=?'); + $query->execute(array($user)); + }else{ + $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache`'); + $query->execute(); + } + } } //watch for changes and try to keep the cache up to date diff --git a/lib/filesystem.php b/lib/filesystem.php index c69970467f5..01467b54c8d 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -236,6 +236,13 @@ class OC_Filesystem{ } } } + + $mtime=filemtime(OC::$SERVERROOT.'/config/mount.php'); + $previousMTime=OC_Appconfig::getValue('files','mountconfigmtime',0); + if($mtime>$previousMTime){//mount config has changed, filecache needs to be updated + OC_FileCache::clear(); + OC_Appconfig::setValue('files','mountconfigmtime',$mtime); + } } self::$loaded=true; -- cgit v1.2.3 From d4fd47d43f01f14f392e55dd0469ee58ca200729 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 6 Sep 2012 23:14:43 +0200 Subject: clear user filecache after the user mount configuration has changed --- lib/util.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index 42a0f5c7df1..1dcf7c2cbfa 100755 --- a/lib/util.php +++ b/lib/util.php @@ -58,6 +58,13 @@ class OC_Util { OC_Filesystem::mount($options['class'], $options['options'], $mountPoint); } } + + $mtime=filemtime($user_root.'/mount.php'); + $previousMTime=OC_Preferences::getValue($user,'files','mountconfigmtime',0); + if($mtime>$previousMTime){//mount config has changed, filecache needs to be updated + OC_FileCache::clear($user); + OC_Preferences::setValue($user,'files','mountconfigmtime',$mtime); + } } OC_Hook::emit('OC_Filesystem', 'setup', array('user' => $user, 'user_dir' => $user_dir)); } -- cgit v1.2.3 From 294cff27a7e5a61b3ca4d1af0b87b2d39aae1534 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Fri, 7 Sep 2012 01:39:11 +0200 Subject: add check for zlib --- lib/util.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index 1dcf7c2cbfa..b742e27b55d 100755 --- a/lib/util.php +++ b/lib/util.php @@ -276,6 +276,9 @@ class OC_Util { if(!function_exists('imagepng')){ $errors[]=array('error'=>'PHP module GD is not installed.
    ','hint'=>'Please ask your server administrator to install the module.'); } + if(!function_exists('gzencode')){ + $errors[]=array('error'=>'PHP module zlib is not installed.
    ','hint'=>'Please ask your server administrator to install the module.'); + } if(floatval(phpversion())<5.3){ $errors[]=array('error'=>'PHP 5.3 is required.
    ','hint'=>'Please ask your server administrator to update PHP to version 5.3 or higher. PHP 5.2 is no longer supported by ownCloud and the PHP community.'); } -- cgit v1.2.3 From a94b56b57baeb36a9e9bb547e213180757041576 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 7 Sep 2012 02:07:22 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 3 ++- apps/files/l10n/cs_CZ.php | 1 + apps/files/l10n/de.php | 1 + apps/files/l10n/es.php | 1 + apps/files/l10n/fi_FI.php | 1 + apps/files/l10n/it.php | 1 + apps/files/l10n/pl.php | 1 + apps/files/l10n/sl.php | 1 + apps/files/l10n/sv.php | 1 + apps/files/l10n/th_TH.php | 1 + apps/files/l10n/zh_CN.php | 3 +++ apps/files_encryption/l10n/zh_CN.php | 5 +++++ apps/files_external/l10n/it.php | 6 +++--- apps/files_external/l10n/sk_SK.php | 18 ++++++++++++++++ apps/files_sharing/l10n/sk_SK.php | 7 ++++++ apps/files_versions/l10n/zh_CN.php | 6 ++++++ apps/user_ldap/l10n/fi_FI.php | 8 +++---- core/l10n/zh_CN.php | 1 + l10n/ca/files.po | 36 +++++++++++++++---------------- l10n/ca/settings.po | 8 +++---- l10n/cs_CZ/files.po | 34 ++++++++++++++--------------- l10n/de/files.po | 34 ++++++++++++++--------------- l10n/es/files.po | 34 ++++++++++++++--------------- l10n/fi_FI/files.po | 34 ++++++++++++++--------------- l10n/fi_FI/user_ldap.po | 14 ++++++------ l10n/it/core.po | 6 +++--- l10n/it/files.po | 34 ++++++++++++++--------------- l10n/it/files_external.po | 14 ++++++------ l10n/pl/files.po | 36 +++++++++++++++---------------- l10n/sk_SK/files_external.po | 41 ++++++++++++++++++----------------- l10n/sk_SK/files_sharing.po | 21 +++++++++--------- l10n/sl/files.po | 34 ++++++++++++++--------------- l10n/sv/files.po | 34 ++++++++++++++--------------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 28 ++++++++++++------------ l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/files.po | 34 ++++++++++++++--------------- l10n/zh_CN/core.po | 9 ++++---- l10n/zh_CN/files.po | 38 ++++++++++++++++---------------- l10n/zh_CN/files_encryption.po | 15 +++++++------ l10n/zh_CN/files_versions.po | 17 ++++++++------- l10n/zh_CN/lib.po | 35 +++++++++++++++--------------- l10n/zh_CN/settings.po | 42 ++++++++++++++++++------------------ lib/l10n/zh_CN.php | 5 ++++- settings/l10n/ca.php | 2 +- settings/l10n/zh_CN.php | 18 ++++++++++++++++ 52 files changed, 408 insertions(+), 331 deletions(-) create mode 100644 apps/files_encryption/l10n/zh_CN.php create mode 100644 apps/files_external/l10n/sk_SK.php create mode 100644 apps/files_sharing/l10n/sk_SK.php create mode 100644 apps/files_versions/l10n/zh_CN.php (limited to 'lib') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 6d232f217e8..336f59ae86d 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -10,6 +10,7 @@ "Delete" => "Suprimeix", "already exists" => "ja existeix", "replace" => "substitueix", +"suggest name" => "sugereix un nom", "cancel" => "cancel·la", "replaced" => "substituït", "undo" => "desfés", @@ -35,7 +36,7 @@ "Enable ZIP-download" => "Activa la baixada ZIP", "0 is unlimited" => "0 és sense límit", "Maximum input size for ZIP files" => "Mida màxima d'entrada per fitxers ZIP", -"Save" => "Desar", +"Save" => "Desa", "New" => "Nou", "Text file" => "Fitxer de text", "Folder" => "Carpeta", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 228f6a3898e..f29df70ee68 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -10,6 +10,7 @@ "Delete" => "Smazat", "already exists" => "již existuje", "replace" => "nahradit", +"suggest name" => "navrhnout název", "cancel" => "zrušit", "replaced" => "nahrazeno", "undo" => "zpět", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index a267d31009b..3db6af8477d 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -10,6 +10,7 @@ "Delete" => "Löschen", "already exists" => "ist bereits vorhanden", "replace" => "ersetzen", +"suggest name" => "Name vorschlagen", "cancel" => "abbrechen", "replaced" => "ersetzt", "undo" => "rückgängig machen", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index c998c8cb57a..0ba3c56aa1f 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -10,6 +10,7 @@ "Delete" => "Eliminado", "already exists" => "ya existe", "replace" => "reemplazar", +"suggest name" => "sugerir nombre", "cancel" => "cancelar", "replaced" => "reemplazado", "undo" => "deshacer", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index eaed70c6246..757d0594d30 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -10,6 +10,7 @@ "Delete" => "Poista", "already exists" => "on jo olemassa", "replace" => "korvaa", +"suggest name" => "ehdota nimeä", "cancel" => "peru", "replaced" => "korvattu", "undo" => "kumoa", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index d0deb4f0f07..0df60832c5b 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -10,6 +10,7 @@ "Delete" => "Elimina", "already exists" => "esiste già", "replace" => "sostituisci", +"suggest name" => "suggerisci nome", "cancel" => "annulla", "replaced" => "sostituito", "undo" => "annulla", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 7fd31faefd7..d3814333aca 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -10,6 +10,7 @@ "Delete" => "Usuwa element", "already exists" => "Już istnieje", "replace" => "zastap", +"suggest name" => "zasugeruj nazwę", "cancel" => "anuluj", "replaced" => "zastąpione", "undo" => "wróć", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 85da041629f..0d56a0c6476 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -10,6 +10,7 @@ "Delete" => "Izbriši", "already exists" => "že obstaja", "replace" => "nadomesti", +"suggest name" => "predlagaj ime", "cancel" => "ekliči", "replaced" => "nadomeščen", "undo" => "razveljavi", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index f63039d9ee7..137222b4178 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -10,6 +10,7 @@ "Delete" => "Radera", "already exists" => "finns redan", "replace" => "ersätt", +"suggest name" => "föreslå namn", "cancel" => "avbryt", "replaced" => "ersatt", "undo" => "ångra", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 689871a11dd..5809ac1f098 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -10,6 +10,7 @@ "Delete" => "ลบ", "already exists" => "มีอยู่แล้ว", "replace" => "แทนที่", +"suggest name" => "แนะนำชื่อ", "cancel" => "ยกเลิก", "replaced" => "แทนที่แล้ว", "undo" => "เลิกทำ", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index f24db8f3cb1..3fdb5b6af3e 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -10,6 +10,7 @@ "Delete" => "删除", "already exists" => "已经存在", "replace" => "替换", +"suggest name" => "建议名称", "cancel" => "取消", "replaced" => "已经替换", "undo" => "撤销", @@ -20,6 +21,7 @@ "Upload Error" => "上传错误", "Pending" => "操作等待中", "Upload cancelled." => "上传已取消", +"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", "Invalid name, '/' is not allowed." => "非法的名称,不允许使用‘/’。", "Size" => "大小", "Modified" => "修改日期", @@ -34,6 +36,7 @@ "Enable ZIP-download" => "启用 ZIP 下载", "0 is unlimited" => "0 为无限制", "Maximum input size for ZIP files" => "ZIP 文件的最大输入大小", +"Save" => "保存", "New" => "新建", "Text file" => "文本文件", "Folder" => "文件夹", diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php new file mode 100644 index 00000000000..139ae909709 --- /dev/null +++ b/apps/files_encryption/l10n/zh_CN.php @@ -0,0 +1,5 @@ + "加密", +"None" => "None", +"Enable Encryption" => "开启加密" +); diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index 927499b0172..5c5d32b214c 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -11,8 +11,8 @@ "Groups" => "Gruppi", "Users" => "Utenti", "Delete" => "Elimina", -"SSL root certificates" => "Certificato principale per SSL", -"Import Root Certificate" => "Importa certificato principale", +"SSL root certificates" => "Certificati SSL radice", +"Import Root Certificate" => "Importa certificato radice", "Enable User External Storage" => "Abilita la memoria esterna dell'utente", -"Allow users to mount their own external storage" => "Consente agli utenti di montare la propria memoria esterna" +"Allow users to mount their own external storage" => "Consenti agli utenti di montare la propria memoria esterna" ); diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php new file mode 100644 index 00000000000..24087ea7feb --- /dev/null +++ b/apps/files_external/l10n/sk_SK.php @@ -0,0 +1,18 @@ + "Externé úložisko", +"Mount point" => "Prípojný bod", +"Backend" => "Backend", +"Configuration" => "Nastavenia", +"Options" => "Možnosti", +"Applicable" => "Aplikovateľné", +"Add mount point" => "Pridať prípojný bod", +"None set" => "Žiadne nastavené", +"All Users" => "Všetci užívatelia", +"Groups" => "Skupiny", +"Users" => "Užívatelia", +"Delete" => "Odstrániť", +"SSL root certificates" => "Koreňové SSL certifikáty", +"Import Root Certificate" => "Importovať koreňový certifikát", +"Enable User External Storage" => "Povoliť externé úložisko", +"Allow users to mount their own external storage" => "Povoliť užívateľom pripojiť ich vlastné externé úložisko" +); diff --git a/apps/files_sharing/l10n/sk_SK.php b/apps/files_sharing/l10n/sk_SK.php new file mode 100644 index 00000000000..ec9fc31c878 --- /dev/null +++ b/apps/files_sharing/l10n/sk_SK.php @@ -0,0 +1,7 @@ + "Heslo", +"Submit" => "Odoslať", +"Download" => "Stiahnuť", +"No preview available for" => "Žiaden náhľad k dispozícii pre", +"web services under your control" => "webové služby pod Vašou kontrolou" +); diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php new file mode 100644 index 00000000000..56a474be89a --- /dev/null +++ b/apps/files_versions/l10n/zh_CN.php @@ -0,0 +1,6 @@ + "过期所有版本", +"Versions" => "版本", +"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本", +"Enable Files Versioning" => "开启文件版本" +); diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index 6d0040868f8..24195649a64 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -19,7 +19,7 @@ "Port" => "Portti", "Base User Tree" => "Oletuskäyttäjäpuu", "Base Group Tree" => "Ryhmien juuri", -"Group-Member association" => "Ryhmä-jäsen assosiaatio (yhteys)", +"Group-Member association" => "Ryhmän ja jäsenen assosiaatio (yhteys)", "Use TLS" => "Käytä TLS:ää", "Do not use it for SSL connections, it will fail." => "Älä käytä SSL-yhteyttä varten, se epäonnistuu. ", "Case insensitve LDAP server (Windows)" => "Kirjainkoosta piittamaton LDAP-palvelin (Windows)", @@ -27,11 +27,11 @@ "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi.", "Not recommended, use for testing only." => "Ei suositella, käytä vain testausta varten.", "User Display Name Field" => "Käyttäjän näytettävän nimen kenttä", -"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä ", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP-attribuutti, jota käytetään käyttäjän ownCloud-käyttäjänimenä ", "Group Display Name Field" => "Ryhmän \"näytettävä nimi\"-kenttä", -"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP-attribuutti, jota käytetään luomaan ryhmän ownCloud-nimi", "in bytes" => "tavuissa", "in seconds. A change empties the cache." => "sekunneissa. Muutos tyhjentää välimuistin.", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti.", "Help" => "Ohje" ); diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 1f5216a2fff..4e0a37a8774 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -50,6 +50,7 @@ "Database user" => "数据库用户", "Database password" => "数据库密码", "Database name" => "数据库名", +"Database tablespace" => "数据库表空间", "Database host" => "数据库主机", "Finish setup" => "安装完成", "web services under your control" => "由您掌控的网络服务", diff --git a/l10n/ca/files.po b/l10n/ca/files.po index baaa56b4ebe..b00e52830d7 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 06:33+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Ha fallat en escriure al disc" msgid "Files" msgstr "Fitxers" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Suprimeix" @@ -68,7 +68,7 @@ msgstr "substitueix" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "sugereix un nom" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "cancel·la" msgid "replaced" msgstr "substituït" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "desfés" @@ -86,7 +86,7 @@ msgstr "desfés" msgid "with" msgstr "per" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "esborrat" @@ -119,11 +119,11 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l msgid "Invalid name, '/' is not allowed." msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Mida" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Modificat" @@ -173,7 +173,7 @@ msgstr "Mida màxima d'entrada per fitxers ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "Desar" +msgstr "Desa" #: templates/index.php:7 msgid "New" @@ -199,36 +199,36 @@ msgstr "Puja" msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nom" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Comparteix" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Baixa" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 28539a5b19a..8065c1ebeec 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 11:42+0000\n" -"Last-Translator: bury1000 \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 06:39+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -224,7 +224,7 @@ msgstr "Esteu usant" #: templates/personal.php:8 msgid "of the available" -msgstr "del disponible" +msgstr "d'un total disponible de" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 53a6691385e..855b138c2ac 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 08:41+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Zápis na disk selhal" msgid "Files" msgstr "Soubory" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Smazat" @@ -68,7 +68,7 @@ msgstr "nahradit" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "navrhnout název" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "zrušit" msgid "replaced" msgstr "nahrazeno" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "zpět" @@ -86,7 +86,7 @@ msgstr "zpět" msgid "with" msgstr "s" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "smazáno" @@ -119,11 +119,11 @@ msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušen msgid "Invalid name, '/' is not allowed." msgstr "Neplatný název, znak '/' není povolen" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Změněno" @@ -199,36 +199,36 @@ msgstr "Odeslat" msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Název" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Sdílet" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Odeslaný soubor je příliš velký" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/de/files.po b/l10n/de/files.po index 186ed35ccdd..a06845cc3bc 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 06:59+0000\n" +"Last-Translator: goeck \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,7 +62,7 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Files" msgstr "Dateien" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Löschen" @@ -76,7 +76,7 @@ msgstr "ersetzen" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "Name vorschlagen" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -86,7 +86,7 @@ msgstr "abbrechen" msgid "replaced" msgstr "ersetzt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "rückgängig machen" @@ -94,7 +94,7 @@ msgstr "rückgängig machen" msgid "with" msgstr "mit" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "gelöscht" @@ -127,11 +127,11 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Größe" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Bearbeitet" @@ -207,36 +207,36 @@ msgstr "Hochladen" msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Name" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Teilen" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Upload zu groß" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Scannen" diff --git a/l10n/es/files.po b/l10n/es/files.po index feda2631833..1889dd54e98 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:09+0000\n" +"Last-Translator: juanman \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "La escritura en disco ha fallado" msgid "Files" msgstr "Archivos" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Eliminado" @@ -69,7 +69,7 @@ msgstr "reemplazar" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "sugerir nombre" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -79,7 +79,7 @@ msgstr "cancelar" msgid "replaced" msgstr "reemplazado" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "deshacer" @@ -87,7 +87,7 @@ msgstr "deshacer" msgid "with" msgstr "con" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "borrado" @@ -120,11 +120,11 @@ msgstr "La subida del archivo está en proceso. Salir de la página ahora cancel msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Modificado" @@ -200,36 +200,36 @@ msgstr "Subir" msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Aquí no hay nada. ¡Sube algo!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nombre" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Compartir" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Descargar" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor espere." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index f82b204f60e..67278ea29fb 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 10:47+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgstr "Levylle kirjoitus epäonnistui" msgid "Files" msgstr "Tiedostot" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Poista" @@ -70,7 +70,7 @@ msgstr "korvaa" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "ehdota nimeä" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -80,7 +80,7 @@ msgstr "peru" msgid "replaced" msgstr "korvattu" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "kumoa" @@ -88,7 +88,7 @@ msgstr "kumoa" msgid "with" msgstr "käyttäen" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "poistettu" @@ -121,11 +121,11 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos msgid "Invalid name, '/' is not allowed." msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Koko" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Muutettu" @@ -201,36 +201,36 @@ msgstr "Lähetä" msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nimi" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Jaa" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Lataa" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 62a31960b0c..085ca3dd65b 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/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: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 16:49+0000\n" -"Last-Translator: teho \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 10:56+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -110,7 +110,7 @@ msgstr "Ryhmien juuri" #: templates/settings.php:20 msgid "Group-Member association" -msgstr "Ryhmä-jäsen assosiaatio (yhteys)" +msgstr "Ryhmän ja jäsenen assosiaatio (yhteys)" #: templates/settings.php:21 msgid "Use TLS" @@ -144,7 +144,7 @@ msgstr "Käyttäjän näytettävän nimen kenttä" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä " +msgstr "LDAP-attribuutti, jota käytetään käyttäjän ownCloud-käyttäjänimenä " #: templates/settings.php:25 msgid "Group Display Name Field" @@ -152,7 +152,7 @@ msgstr "Ryhmän \"näytettävä nimi\"-kenttä" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi" +msgstr "LDAP-attribuutti, jota käytetään luomaan ryhmän ownCloud-nimi" #: templates/settings.php:27 msgid "in bytes" @@ -166,7 +166,7 @@ msgstr "sekunneissa. Muutos tyhjentää välimuistin." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti." +msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/it/core.po b/l10n/it/core.po index 39884ebdc9d..f4904b27927 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:05+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index daa29074e68..6175346abd7 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 04:57+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "Scrittura su disco non riuscita" msgid "Files" msgstr "File" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Elimina" @@ -69,7 +69,7 @@ msgstr "sostituisci" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "suggerisci nome" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -79,7 +79,7 @@ msgstr "annulla" msgid "replaced" msgstr "sostituito" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "annulla" @@ -87,7 +87,7 @@ msgstr "annulla" msgid "with" msgstr "con" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "eliminati" @@ -120,11 +120,11 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca msgid "Invalid name, '/' is not allowed." msgstr "Nome non valido" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Dimensione" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Modificato" @@ -200,36 +200,36 @@ msgstr "Carica" msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nome" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Condividi" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Scarica" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Il file caricato è troppo grande" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 801511ce3b5..1875987bf4b 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:02+0200\n" -"PO-Revision-Date: 2012-08-14 14:42+0000\n" -"Last-Translator: Innocenzo Ventre \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:03+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" @@ -69,11 +69,11 @@ msgstr "Elimina" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "Certificato principale per SSL" +msgstr "Certificati SSL radice" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "Importa certificato principale" +msgstr "Importa certificato radice" #: templates/settings.php:108 msgid "Enable User External Storage" @@ -81,4 +81,4 @@ msgstr "Abilita la memoria esterna dell'utente" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "Consente agli utenti di montare la propria memoria esterna" +msgstr "Consenti agli utenti di montare la propria memoria esterna" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 2512f6db596..a3ea40e9bd8 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Marcin Małecki , 2011, 2012. +# Marcin Małecki , 2011-2012. # , 2011. # , 2012. # Piotr Sokół , 2012. @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 13:42+0000\n" +"Last-Translator: Marcin Małecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgstr "Błąd zapisu na dysk" msgid "Files" msgstr "Pliki" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Usuwa element" @@ -70,7 +70,7 @@ msgstr "zastap" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "zasugeruj nazwę" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -80,7 +80,7 @@ msgstr "anuluj" msgid "replaced" msgstr "zastąpione" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "wróć" @@ -88,7 +88,7 @@ msgstr "wróć" msgid "with" msgstr "z" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "skasuj" @@ -121,11 +121,11 @@ msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zost msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Rozmiar" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Czas modyfikacji" @@ -201,36 +201,36 @@ msgstr "Prześlij" msgid "Cancel upload" msgstr "Przestań wysyłać" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Brak zawartości. Proszę wysłać pliki!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nazwa" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Współdziel" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Pobiera element" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Wysyłany plik ma za duży rozmiar" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki które próbujesz przesłać, przekraczają maksymalną, dopuszczalną wielkość." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 99cbb6e3c46..5c0dd5a8c76 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 17:51+0000\n" +"Last-Translator: intense \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Externé úložisko" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "Prípojný bod" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Backend" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "Nastavenia" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "Možnosti" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Aplikovateľné" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Pridať prípojný bod" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Žiadne nastavené" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "Všetci užívatelia" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "Skupiny" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "Užívatelia" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "Odstrániť" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Koreňové SSL certifikáty" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Importovať koreňový certifikát" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Povoliť externé úložisko" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Povoliť užívateľom pripojiť ich vlastné externé úložisko" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index bda598320ea..d28ae49cf74 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -3,36 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 17:47+0000\n" +"Last-Translator: intense \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Heslo" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Odoslať" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Stiahnuť" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Žiaden náhľad k dispozícii pre" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "webové služby pod Vašou kontrolou" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 73d23c25795..af1cffc01a8 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:16+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Pisanje na disk je spodletelo" msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Izbriši" @@ -68,7 +68,7 @@ msgstr "nadomesti" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "predlagaj ime" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "ekliči" msgid "replaced" msgstr "nadomeščen" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "razveljavi" @@ -86,7 +86,7 @@ msgstr "razveljavi" msgid "with" msgstr "z" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "izbrisano" @@ -119,11 +119,11 @@ msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalagan msgid "Invalid name, '/' is not allowed." msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Spremenjeno" @@ -199,36 +199,36 @@ msgstr "Naloži" msgid "Cancel upload" msgstr "Prekliči nalaganje" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Tukaj ni ničesar. Naložite kaj!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Ime" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Souporaba" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Prenesi" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Nalaganje ni mogoče, ker je preveliko" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite naložiti, presegajo največjo dovoljeno velikost na tem strežniku." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Preiskujem datoteke, prosimo počakajte." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Trenutno preiskujem" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 847a38a3958..81ea65ce488 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 13:34+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgstr "Misslyckades spara till disk" msgid "Files" msgstr "Filer" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Radera" @@ -71,7 +71,7 @@ msgstr "ersätt" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "föreslå namn" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -81,7 +81,7 @@ msgstr "avbryt" msgid "replaced" msgstr "ersatt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "ångra" @@ -89,7 +89,7 @@ msgstr "ångra" msgid "with" msgstr "med" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "raderad" @@ -122,11 +122,11 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." msgid "Invalid name, '/' is not allowed." msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Storlek" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Ändrad" @@ -202,36 +202,36 @@ msgstr "Ladda upp" msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Namn" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Dela" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 9112352a3a0..b702651ccd7 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 74ab3230866..08fbebab797 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "" @@ -83,7 +83,7 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "" @@ -116,11 +116,11 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "" @@ -196,36 +196,36 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 0590a198801..372d9301ed7 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 76fafddc1b2..d09f7055354 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index b0c45867827..e9f6afc98d2 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b17eb3894d1..9750a4acc5d 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 5a86298e890..d9c9f8aaded 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 42965d3e0bd..8bd0ab8fda5 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 82b19373c1d..45eb19bf9fa 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index b6ff21b3829..7c732071313 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 04:45+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,7 +53,7 @@ msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้ msgid "Files" msgstr "ไฟล์" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "ลบ" @@ -67,7 +67,7 @@ msgstr "แทนที่" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "แนะนำชื่อ" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -77,7 +77,7 @@ msgstr "ยกเลิก" msgid "replaced" msgstr "แทนที่แล้ว" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "เลิกทำ" @@ -85,7 +85,7 @@ msgstr "เลิกทำ" msgid "with" msgstr "กับ" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "ลบแล้ว" @@ -118,11 +118,11 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ msgid "Invalid name, '/' is not allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "ขนาด" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "ปรับปรุงล่าสุด" @@ -198,36 +198,36 @@ msgstr "อัพโหลด" msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "ชื่อ" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "แชร์" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 57d881dcff1..5ecd449a620 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Phoenix Nemo <>, 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 07:30+0000\n" +"Last-Translator: hanfeng \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" @@ -227,7 +228,7 @@ msgstr "数据库名" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "数据库表空间" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 3b55dd63418..585310a4089 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 07:31+0000\n" +"Last-Translator: hanfeng \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" @@ -54,7 +54,7 @@ msgstr "写入磁盘失败" msgid "Files" msgstr "文件" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "删除" @@ -68,7 +68,7 @@ msgstr "替换" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "建议名称" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "取消" msgid "replaced" msgstr "已经替换" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "撤销" @@ -86,7 +86,7 @@ msgstr "撤销" msgid "with" msgstr "随着" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "已经删除" @@ -113,17 +113,17 @@ msgstr "上传已取消" #: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" #: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "修改日期" @@ -173,7 +173,7 @@ msgstr "ZIP 文件的最大输入大小" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "保存" #: templates/index.php:7 msgid "New" @@ -199,36 +199,36 @@ msgstr "上传" msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "名称" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "共享" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "下载" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大大小" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index 19d9d60f7df..7e030749cf6 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -3,23 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 15:39+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "加密" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" @@ -27,8 +28,8 @@ msgstr "" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "None" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "开启加密" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index 31e3aedf8af..8fc46b74985 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 13:03+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "过期所有版本" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "版本" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "将会删除您的文件的所有备份版本" #: templates/settings.php:3 msgid "Enable Files Versioning" -msgstr "" +msgstr "开启文件版本" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 7bb4a2e7860..ff9847c8289 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 07:33+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: app.php:288 msgid "Help" @@ -70,57 +71,57 @@ msgstr "认证错误" msgid "Token expired. Please reload page." msgstr "Token 过期,请刷新页面。" -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "几秒前" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "1分钟前" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "%d 分钟前" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "今天" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "昨天" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "上月" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "几月前" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "上年" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "几年前" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s 已存在. 点此 获取更多信息" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "已更新。" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "检查更新功能被关闭。" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 8af73f8879a..c72ea361e02 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 08:01+0000\n" +"Last-Translator: hanfeng \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" @@ -32,11 +32,11 @@ msgstr "认证错误" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "已存在组" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "不能添加组" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -56,11 +56,11 @@ msgstr "非法请求" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "不能删除组" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "不能删除用户" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -69,12 +69,12 @@ msgstr "语言已修改" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "不能把用户添加到组 %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "不能从组%s中移除用户" #: js/apps.js:18 msgid "Error" @@ -107,7 +107,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。" #: templates/admin.php:31 msgid "Cron" @@ -127,39 +127,39 @@ msgstr "实现系统 cron 服务" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "共享API" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "开启共享API" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "允许 应用 使用共享API" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "允许连接" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "允许用户使用连接向公众共享" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "允许再次共享" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "允许用户将共享给他们的项目再次共享" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "允许用户向任何人共享" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "允许用户只向同组用户共享" #: templates/admin.php:69 msgid "Log" @@ -177,7 +177,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "由ownCloud社区开发, 源代码AGPL许可证下发布。" #: templates/apps.php:10 msgid "Add your App" @@ -193,7 +193,7 @@ msgstr "查看在 app.owncloud.com 的应用程序页面" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-核准: " #: templates/help.php:9 msgid "Documentation" diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 2d05ad3567e..8229c77d2dd 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -21,5 +21,8 @@ "last month" => "上月", "months ago" => "几月前", "last year" => "上年", -"years ago" => "几年前" +"years ago" => "几年前", +"%s is available. Get more information" => "%s 已存在. 点此 获取更多信息", +"up to date" => "已更新。", +"updates check is disabled" => "检查更新功能被关闭。" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 524d6c79257..062e9a97342 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -46,7 +46,7 @@ "Go there manually." => "Vés-hi manualment.", "Answer" => "Resposta", "You use" => "Esteu usant", -"of the available" => "del disponible", +"of the available" => "d'un total disponible de", "Desktop and Mobile Syncing Clients" => "Clients de sincronització d'escriptori i de mòbil", "Download" => "Baixada", "Your password got changed" => "La contrasenya ha canviat", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 0667cee74bb..7927cec61c7 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,26 +1,44 @@ "无法从应用商店载入列表", "Authentication error" => "认证错误", +"Group already exists" => "已存在组", +"Unable to add group" => "不能添加组", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", "OpenID Changed" => "OpenID 已修改", "Invalid request" => "非法请求", +"Unable to delete group" => "不能删除组", +"Unable to delete user" => "不能删除用户", "Language changed" => "语言已修改", +"Unable to add user to group %s" => "不能把用户添加到组 %s", +"Unable to remove user from group %s" => "不能从组%s中移除用户", "Error" => "错误", "Disable" => "禁用", "Enable" => "启用", "Saving..." => "正在保存", "__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服务器以外。", "Cron" => "计划任务", "execute one task with each page loaded" => "为每个装入的页面执行任务", "cron.php is registered at a webcron service" => "crop.php 已", "use systems cron service" => "实现系统 cron 服务", +"Share API" => "共享API", +"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" => "允许用户只向同组用户共享", "Log" => "日志", "More" => "更多", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "由ownCloud社区开发, 源代码AGPL许可证下发布。", "Add your App" => "添加应用", "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", +"-licensed by " => "-核准: ", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提问", -- cgit v1.2.3 From 73d726d1b26f011e77761934bcf7f5ce8db86241 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 7 Sep 2012 00:01:52 -0400 Subject: Support for unshare from self, with a bunch of temporary fixes to overcome configuration problems with file actions --- apps/files/js/fileactions.js | 7 ++++++- apps/files/js/filelist.js | 7 ++++++- apps/files/templates/index.php | 7 ++++++- apps/files_sharing/lib/share/file.php | 2 ++ apps/files_sharing/lib/sharedstorage.php | 18 ++++++++++++++---- lib/public/share.php | 3 ++- 6 files changed, 36 insertions(+), 8 deletions(-) (limited to 'lib') diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index b7670fa2259..1403d345e8a 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -103,7 +103,12 @@ var FileActions={ if(img.call){ img=img(file); } - var html='

    , please copy the following informations into the description.

    t('SSL root certificates'); ?> t( 'Modified' ); ?> - t('Delete')?> <?php echo $l->t('Delete')?>" /> + + + t('Unshare')?> <?php echo $l->t('Unshare')?>" /> + + t('Delete')?> <?php echo $l->t('Delete')?>" /> +