From e73b817a38a824b3119136ea110eda4be15b99d5 Mon Sep 17 00:00:00 2001 From: Felix Moeller Date: Tue, 23 Oct 2012 22:53:54 +0200 Subject: [PATCH 01/12] Checkstyle: NoSpaceAfterComma --- apps/files/templates/part.list.php | 4 ++-- apps/files_encryption/lib/cryptstream.php | 2 +- apps/files_encryption/lib/proxy.php | 2 +- apps/files_encryption/tests/encryption.php | 4 ++-- apps/files_encryption/tests/proxy.php | 8 ++++---- apps/files_encryption/tests/stream.php | 20 ++++++++++---------- apps/files_external/lib/ftp.php | 6 +++--- apps/files_external/lib/google.php | 2 +- apps/files_external/lib/swift.php | 12 ++++++------ apps/files_external/lib/webdav.php | 14 +++++++------- apps/files_versions/lib/hooks.php | 2 +- apps/files_versions/lib/versions.php | 4 ++-- apps/user_ldap/lib/access.php | 2 +- apps/user_ldap/tests/group_ldap.php | 16 ++++++++-------- lib/connector/sabre/locks.php | 2 +- lib/filecache.php | 6 +++--- lib/filestorage/common.php | 2 +- lib/filestorage/local.php | 4 ++-- lib/filesystem.php | 4 ++-- lib/filesystemview.php | 2 +- lib/helper.php | 10 +++++----- lib/installer.php | 2 +- lib/search/provider/file.php | 2 +- lib/setup.php | 6 +++--- lib/streamwrappers.php | 8 ++++---- lib/templatelayout.php | 4 ++-- lib/updater.php | 6 +++--- lib/user.php | 4 ++-- lib/util.php | 4 ++-- lib/vcategories.php | 2 +- 30 files changed, 83 insertions(+), 83 deletions(-) diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 0f5b839b180..aaf9c5f57ee 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -14,9 +14,9 @@ $relative_modified_date = OCP\relative_modified_date($file['mtime']); $relative_date_color = round((time()-$file['mtime'])/60/60/24*14); // the older the file, the brighter the shade of grey; days*14 if($relative_date_color>200) $relative_date_color = 200; - $name = str_replace('+','%20',urlencode($file['name'])); + $name = str_replace('+','%20', urlencode($file['name'])); $name = str_replace('%2F','/', $name); - $directory = str_replace('+','%20',urlencode($file['directory'])); + $directory = str_replace('+','%20', urlencode($file['directory'])); $directory = str_replace('%2F','/', $directory); ?> ' data-permissions=''> diff --git a/apps/files_encryption/lib/cryptstream.php b/apps/files_encryption/lib/cryptstream.php index 721a1b955df..95b58b8cce7 100644 --- a/apps/files_encryption/lib/cryptstream.php +++ b/apps/files_encryption/lib/cryptstream.php @@ -167,7 +167,7 @@ class OC_CryptStream{ public function stream_close() { $this->flush(); if($this->meta['mode']!='r' and $this->meta['mode']!='rb') { - OC_FileCache::put($this->path,array('encrypted'=>true,'size'=>$this->size),''); + OC_FileCache::put($this->path, array('encrypted'=>true,'size'=>$this->size),''); } return fclose($this->source); } diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index f61cd1e3773..5c19955dbd5 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -68,7 +68,7 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ if (!is_resource($data)) {//stream put contents should have been converter to fopen $size=strlen($data); $data=OC_Crypt::blockEncrypt($data); - OC_FileCache::put($path,array('encrypted'=>true,'size'=>$size),''); + OC_FileCache::put($path, array('encrypted'=>true,'size'=>$size),''); } } } diff --git a/apps/files_encryption/tests/encryption.php b/apps/files_encryption/tests/encryption.php index 89397f6ef2c..a7bc2df0e12 100644 --- a/apps/files_encryption/tests/encryption.php +++ b/apps/files_encryption/tests/encryption.php @@ -19,7 +19,7 @@ class Test_Encryption extends UnitTestCase { $chunk=substr($source,0,8192); $encrypted=OC_Crypt::encrypt($chunk,$key); - $this->assertEqual(strlen($chunk),strlen($encrypted)); + $this->assertEqual(strlen($chunk), strlen($encrypted)); $decrypted=OC_Crypt::decrypt($encrypted,$key); $decrypted=rtrim($decrypted, "\0"); $this->assertEqual($decrypted,$chunk); @@ -66,7 +66,7 @@ class Test_Encryption extends UnitTestCase { $this->assertEqual($decrypted,$source); $encrypted=OC_Crypt::blockEncrypt($source,$key); - $decrypted=OC_Crypt::blockDecrypt($encrypted,$key,strlen($source)); + $decrypted=OC_Crypt::blockDecrypt($encrypted,$key, strlen($source)); $this->assertEqual($decrypted,$source); } } diff --git a/apps/files_encryption/tests/proxy.php b/apps/files_encryption/tests/proxy.php index 042011a6c87..c3c8f4a2db0 100644 --- a/apps/files_encryption/tests/proxy.php +++ b/apps/files_encryption/tests/proxy.php @@ -30,7 +30,7 @@ class Test_CryptProxy extends UnitTestCase { //set up temporary storage OC_Filesystem::clearMounts(); - OC_Filesystem::mount('OC_Filestorage_Temporary',array(),'/'); + OC_Filesystem::mount('OC_Filestorage_Temporary', array(),'/'); OC_Filesystem::init('/'.$user.'/files'); @@ -59,7 +59,7 @@ class Test_CryptProxy extends UnitTestCase { $fromFile=OC_Filesystem::file_get_contents('/file'); $this->assertNotEqual($original,$stored); - $this->assertEqual(strlen($original),strlen($fromFile)); + $this->assertEqual(strlen($original), strlen($fromFile)); $this->assertEqual($original,$fromFile); } @@ -98,7 +98,7 @@ class Test_CryptProxy extends UnitTestCase { $fromFile=OC_Filesystem::file_get_contents('/file'); $this->assertNotEqual($original,$stored); - $this->assertEqual(strlen($original),strlen($fromFile)); + $this->assertEqual(strlen($original), strlen($fromFile)); $this->assertEqual($original,$fromFile); $file=__DIR__.'/zeros'; @@ -112,6 +112,6 @@ class Test_CryptProxy extends UnitTestCase { $fromFile=OC_Filesystem::file_get_contents('/file'); $this->assertNotEqual($original,$stored); - $this->assertEqual(strlen($original),strlen($fromFile)); + $this->assertEqual(strlen($original), strlen($fromFile)); } } diff --git a/apps/files_encryption/tests/stream.php b/apps/files_encryption/tests/stream.php index 39b13620782..5ea0da48017 100644 --- a/apps/files_encryption/tests/stream.php +++ b/apps/files_encryption/tests/stream.php @@ -10,11 +10,11 @@ class Test_CryptStream extends UnitTestCase { private $tmpFiles=array(); function testStream() { - $stream=$this->getStream('test1','w',strlen('foobar')); + $stream=$this->getStream('test1','w', strlen('foobar')); fwrite($stream,'foobar'); fclose($stream); - $stream=$this->getStream('test1','r',strlen('foobar')); + $stream=$this->getStream('test1','r', strlen('foobar')); $data=fread($stream,6); fclose($stream); $this->assertEqual('foobar',$data); @@ -26,10 +26,10 @@ class Test_CryptStream extends UnitTestCase { fclose($target); fclose($source); - $stream=$this->getStream('test2','r',filesize($file)); + $stream=$this->getStream('test2','r', filesize($file)); $data=stream_get_contents($stream); $original=file_get_contents($file); - $this->assertEqual(strlen($original),strlen($data)); + $this->assertEqual(strlen($original), strlen($data)); $this->assertEqual($original,$data); } @@ -59,27 +59,27 @@ class Test_CryptStream extends UnitTestCase { $file=__DIR__.'/binary'; $source=file_get_contents($file); - $stream=$this->getStream('test','w',strlen($source)); + $stream=$this->getStream('test','w', strlen($source)); fwrite($stream,$source); fclose($stream); - $stream=$this->getStream('test','r',strlen($source)); + $stream=$this->getStream('test','r', strlen($source)); $data=stream_get_contents($stream); fclose($stream); - $this->assertEqual(strlen($data),strlen($source)); + $this->assertEqual(strlen($data), strlen($source)); $this->assertEqual($source,$data); $file=__DIR__.'/zeros'; $source=file_get_contents($file); - $stream=$this->getStream('test2','w',strlen($source)); + $stream=$this->getStream('test2','w', strlen($source)); fwrite($stream,$source); fclose($stream); - $stream=$this->getStream('test2','r',strlen($source)); + $stream=$this->getStream('test2','r', strlen($source)); $data=stream_get_contents($stream); fclose($stream); - $this->assertEqual(strlen($data),strlen($source)); + $this->assertEqual(strlen($data), strlen($source)); $this->assertEqual($source,$data); } } diff --git a/apps/files_external/lib/ftp.php b/apps/files_external/lib/ftp.php index 261141455cc..13d1387f287 100644 --- a/apps/files_external/lib/ftp.php +++ b/apps/files_external/lib/ftp.php @@ -53,7 +53,7 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ case 'ab': //these are supported by the wrapper $context = stream_context_create(array('ftp' => array('overwrite' => true))); - return fopen($this->constructUrl($path),$mode,false,$context); + return fopen($this->constructUrl($path),$mode, false,$context); case 'r+': case 'w+': case 'wb+': @@ -64,7 +64,7 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ case 'c+': //emulate these if(strrpos($path,'.')!==false) { - $ext=substr($path,strrpos($path,'.')); + $ext=substr($path, strrpos($path,'.')); }else{ $ext=''; } @@ -80,7 +80,7 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ public function writeBack($tmpFile) { if(isset(self::$tempFiles[$tmpFile])) { - $this->uploadFile($tmpFile,self::$tempFiles[$tmpFile]); + $this->uploadFile($tmpFile, self::$tempFiles[$tmpFile]); unlink($tmpFile); } } diff --git a/apps/files_external/lib/google.php b/apps/files_external/lib/google.php index 9b83dcee537..32d57ed3cef 100644 --- a/apps/files_external/lib/google.php +++ b/apps/files_external/lib/google.php @@ -395,7 +395,7 @@ class OC_Filestorage_Google extends OC_Filestorage_Common { case 'c': case 'c+': if (strrpos($path,'.') !== false) { - $ext = substr($path,strrpos($path,'.')); + $ext = substr($path, strrpos($path,'.')); } else { $ext = ''; } diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 4b0b8c25fda..632c72c280f 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -83,7 +83,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ $parentContainer=$this->getContainer($parent); } } - $this->addSubContainer($parentContainer,basename($path)); + $this->addSubContainer($parentContainer, basename($path)); return $this->conn->create_container($this->getContainerName($path)); } @@ -245,7 +245,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ return false; }else{ unset($containers[$i]); - file_put_contents($tmpFile,implode("\n",$containers)."\n"); + file_put_contents($tmpFile, implode("\n",$containers)."\n"); } $obj->load_from_filename($tmpFile); @@ -304,7 +304,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ $this->emptyContainer($path); if($path!='' and $path!='/') { $parentContainer=$this->getContainer(dirname($path)); - $this->removeSubContainer($parentContainer,basename($path)); + $this->removeSubContainer($parentContainer, basename($path)); } $this->conn->delete_container($this->getContainerName($path)); @@ -440,7 +440,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ public function writeBack($tmpFile) { if(isset(self::$tempFiles[$tmpFile])) { - $this->fromTmpFile($tmpFile,self::$tempFiles[$tmpFile]); + $this->fromTmpFile($tmpFile, self::$tempFiles[$tmpFile]); unlink($tmpFile); } } @@ -466,7 +466,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ public function rename($path1,$path2) { $sourceContainer=$this->getContainer(dirname($path1)); $targetContainer=$this->getContainer(dirname($path2)); - $result=$sourceContainer->move_object_to(basename($path1),$targetContainer,basename($path2)); + $result=$sourceContainer->move_object_to(basename($path1),$targetContainer, basename($path2)); unset($this->objects[$path1]); if($result) { $targetObj=$this->getObject($path2); @@ -478,7 +478,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ public function copy($path1,$path2) { $sourceContainer=$this->getContainer(dirname($path1)); $targetContainer=$this->getContainer(dirname($path2)); - $result=$sourceContainer->copy_object_to(basename($path1),$targetContainer,basename($path2)); + $result=$sourceContainer->copy_object_to(basename($path1),$targetContainer, basename($path2)); if($result) { $targetObj=$this->getObject($path2); $this->resetMTime($targetObj); diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 5e185839158..890e66d742e 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -65,12 +65,12 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ public function mkdir($path) { $path=$this->cleanPath($path); - return $this->simpleResponse('MKCOL',$path,null,201); + return $this->simpleResponse('MKCOL',$path, null,201); } public function rmdir($path) { $path=$this->cleanPath($path); - return $this->simpleResponse('DELETE',$path,null,204); + return $this->simpleResponse('DELETE',$path, null,204); } public function opendir($path) { @@ -123,7 +123,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ } public function unlink($path) { - return $this->simpleResponse('DELETE',$path,null,204); + return $this->simpleResponse('DELETE',$path, null,204); } public function fopen($path,$mode) { @@ -159,7 +159,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ case 'c+': //emulate these if(strrpos($path,'.')!==false) { - $ext=substr($path,strrpos($path,'.')); + $ext=substr($path, strrpos($path,'.')); }else{ $ext=''; } @@ -175,7 +175,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ public function writeBack($tmpFile) { if(isset(self::$tempFiles[$tmpFile])) { - $this->uploadFile($tmpFile,self::$tempFiles[$tmpFile]); + $this->uploadFile($tmpFile, self::$tempFiles[$tmpFile]); unlink($tmpFile); } } @@ -225,7 +225,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try{ - $response=$this->client->request('MOVE',$path1,null,array('Destination'=>$path2)); + $response=$this->client->request('MOVE',$path1,null, array('Destination'=>$path2)); return true; }catch(Exception $e) { echo $e; @@ -239,7 +239,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try{ - $response=$this->client->request('COPY',$path1,null,array('Destination'=>$path2)); + $response=$this->client->request('COPY',$path1,null, array('Destination'=>$path2)); return true; }catch(Exception $e) { echo $e; diff --git a/apps/files_versions/lib/hooks.php b/apps/files_versions/lib/hooks.php index 500ce0ef064..822103ebc32 100644 --- a/apps/files_versions/lib/hooks.php +++ b/apps/files_versions/lib/hooks.php @@ -64,7 +64,7 @@ class Hooks { $abs_newpath = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$params['newpath'].'.v'; if(Storage::isversioned($rel_oldpath)) { $info=pathinfo($abs_newpath); - if(!file_exists($info['dirname'])) mkdir($info['dirname'],0750,true); + if(!file_exists($info['dirname'])) mkdir($info['dirname'],0750, true); $versions = Storage::getVersions($rel_oldpath); foreach ($versions as $v) { rename($abs_oldpath.$v['version'], $abs_newpath.$v['version']); diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 1b3de84f31a..56878b470d1 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -99,7 +99,7 @@ class Storage { $versionsFolderName=\OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); $matches=glob($versionsFolderName.'/'.$filename.'.v*'); sort($matches); - $parts=explode('.v',end($matches)); + $parts=explode('.v', end($matches)); if((end($parts)+Storage::DEFAULTMININTERVAL)>time()) { return false; } @@ -109,7 +109,7 @@ class Storage { // create all parent folders $info=pathinfo($filename); if(!file_exists($versionsFolderName.'/'.$info['dirname'])) { - mkdir($versionsFolderName.'/'.$info['dirname'],0750,true); + mkdir($versionsFolderName.'/'.$info['dirname'],0750, true); } // store a new version of a file diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index a500e1bf5b4..6f2f61dc8a3 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -657,7 +657,7 @@ abstract class Access { $this->connection->ldapUuidAttribute = $attribute; return true; } - \OCP\Util::writeLog('user_ldap', 'The looked for uuid attr is not '.$attribute.', result was '.print_r($value,true), \OCP\Util::DEBUG); + \OCP\Util::writeLog('user_ldap', 'The looked for uuid attr is not '.$attribute.', result was '.print_r($value, true), \OCP\Util::DEBUG); } return false; diff --git a/apps/user_ldap/tests/group_ldap.php b/apps/user_ldap/tests/group_ldap.php index b953127d86e..2acb8c35a19 100644 --- a/apps/user_ldap/tests/group_ldap.php +++ b/apps/user_ldap/tests/group_ldap.php @@ -29,18 +29,18 @@ 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($group_ldap->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)); - $this->assertFalse($group_ldap->inGroup('john','dosers'),gettype(false)); + $this->assertFalse(OC_Group::inGroup('john','dosers'), gettype(false)); + $this->assertFalse($group_ldap->inGroup('john','dosers'), gettype(false)); //TODO: check also for expected true result. This backend won't be able to do any modifications, maybe use a dummy for this. - $this->assertIsA(OC_Group::getUserGroups('john doe'),gettype(array())); - $this->assertIsA($group_ldap->getUserGroups('john doe'),gettype(array())); + $this->assertIsA(OC_Group::getUserGroups('john doe'), gettype(array())); + $this->assertIsA($group_ldap->getUserGroups('john doe'), gettype(array())); - $this->assertIsA(OC_Group::usersInGroup('campers'),gettype(array())); - $this->assertIsA($group_ldap->usersInGroup('campers'),gettype(array())); + $this->assertIsA(OC_Group::usersInGroup('campers'), gettype(array())); + $this->assertIsA($group_ldap->usersInGroup('campers'), gettype(array())); } } diff --git a/lib/connector/sabre/locks.php b/lib/connector/sabre/locks.php index dbcc57558e0..8ebe324602c 100644 --- a/lib/connector/sabre/locks.php +++ b/lib/connector/sabre/locks.php @@ -109,7 +109,7 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { $lockInfo->created = time(); $lockInfo->uri = $uri; - $locks = $this->getLocks($uri,false); + $locks = $this->getLocks($uri, false); $exists = false; foreach($locks as $lock) { if ($lock->token == $lockInfo->token) $exists = true; diff --git a/lib/filecache.php b/lib/filecache.php index 776b60abcac..32257595443 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -102,7 +102,7 @@ class OC_FileCache{ $data['versioned']=(int)$data['versioned']; $user=OC_User::getUser(); $query=OC_DB::prepare('INSERT INTO `*PREFIX*fscache`(`parent`, `name`, `path`, `path_hash`, `size`, `mtime`, `ctime`, `mimetype`, `mimepart`,`user`,`writable`,`encrypted`,`versioned`) VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?)'); - $result=$query->execute(array($parent,basename($fullpath),$fullpath,md5($fullpath),$data['size'],$data['mtime'],$data['ctime'],$data['mimetype'],$mimePart,$user,$data['writable'],$data['encrypted'],$data['versioned'])); + $result=$query->execute(array($parent,basename($fullpath),$fullpath, md5($fullpath),$data['size'],$data['mtime'],$data['ctime'],$data['mimetype'],$mimePart,$user,$data['writable'],$data['encrypted'],$data['versioned'])); if(OC_DB::isError($result)) { OC_Log::write('files', 'error while writing file('.$fullpath.') to cache', OC_Log::ERROR); } @@ -163,7 +163,7 @@ class OC_FileCache{ $newPath=$root.$newPath; $newParent=self::getParentId($newPath); $query=OC_DB::prepare('UPDATE `*PREFIX*fscache` SET `parent`=? ,`name`=?, `path`=?, `path_hash`=? WHERE `path_hash`=?'); - $query->execute(array($newParent,basename($newPath),$newPath,md5($newPath),md5($oldPath))); + $query->execute(array($newParent,basename($newPath),$newPath,md5($newPath), md5($oldPath))); if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$oldPath)) { $cache->set('fileid/'.$newPath, $cache->get('fileid/'.$oldPath)); @@ -176,7 +176,7 @@ class OC_FileCache{ while($row= $query->execute(array($oldPath.'/%'))->fetchRow()) { $old=$row['path']; $new=$newPath.substr($old, $oldLength); - $updateQuery->execute(array($new,md5($new),md5($old))); + $updateQuery->execute(array($new,md5($new), md5($old))); if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$old)) { $cache->set('fileid/'.$new, $cache->get('fileid/'.$old)); diff --git a/lib/filestorage/common.php b/lib/filestorage/common.php index 351714437c5..9627a97e9dd 100644 --- a/lib/filestorage/common.php +++ b/lib/filestorage/common.php @@ -260,7 +260,7 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { if($dh) { while($item=readdir($dh)) { if ($item == '.' || $item == '..') continue; - if(strstr(strtolower($item),strtolower($query))!==false) { + if(strstr(strtolower($item), strtolower($query))!==false) { $files[]=$dir.'/'.$item; } if($this->is_dir($dir.'/'.$item)) { diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index 80aa548047c..731ac4a3c72 100644 --- a/lib/filestorage/local.php +++ b/lib/filestorage/local.php @@ -103,7 +103,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ if(!$this->file_exists($path2)) { $this->mkdir($path2); } - $source=substr($path1,strrpos($path1,'/')+1); + $source=substr($path1, strrpos($path1,'/')+1); $path2.=$source; } return copy($this->datadir.$path1,$this->datadir.$path2); @@ -178,7 +178,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ $files=array(); foreach (scandir($this->datadir.$dir) as $item) { if ($item == '.' || $item == '..') continue; - if(strstr(strtolower($item),strtolower($query))!==false) { + if(strstr(strtolower($item), strtolower($query))!==false) { $files[]=$dir.'/'.$item; } if(is_dir($this->datadir.$dir.'/'.$item)) { diff --git a/lib/filesystem.php b/lib/filesystem.php index 09ccf9de4df..bc30dac7fa1 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -148,7 +148,7 @@ class OC_Filesystem{ * @return string */ static public function getMountPoint($path) { - OC_Hook::emit(self::CLASSNAME,'get_mountpoint',array('path'=>$path)); + OC_Hook::emit(self::CLASSNAME,'get_mountpoint', array('path'=>$path)); if(!$path) { $path='/'; } @@ -176,7 +176,7 @@ class OC_Filesystem{ */ static public function getInternalPath($path) { $mountPoint=self::getMountPoint($path); - $internalPath=substr($path,strlen($mountPoint)); + $internalPath=substr($path, strlen($mountPoint)); return $internalPath; } diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 2950ced5f9e..0bd0b410be7 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -585,7 +585,7 @@ class OC_FilesystemView { $result = OC_FileProxy::runPostProxies($operation, $this->getAbsolutePath($path), $result); if(OC_Filesystem::$loaded and $this->fakeRoot==OC_Filesystem::getRoot()) { if($operation!='fopen') {//no post hooks for fopen, the file stream is still open - $this->runHooks($hooks,$path,true); + $this->runHooks($hooks,$path, true); } } return $result; diff --git a/lib/helper.php b/lib/helper.php index b79955aa9bf..b7166e9fb41 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -189,7 +189,7 @@ class OC_Helper { return OC::$WEBROOT."/core/img/filetypes/$mimetype.png"; } //try only the first part of the filetype - $mimetype=substr($mimetype,0,strpos($mimetype,'-')); + $mimetype=substr($mimetype,0, strpos($mimetype,'-')); if( file_exists( OC::$SERVERROOT."/core/img/filetypes/$mimetype.png" )) { return OC::$WEBROOT."/core/img/filetypes/$mimetype.png"; } @@ -363,7 +363,7 @@ class OC_Helper { if($mimeType=='application/octet-stream' and function_exists('finfo_open') and function_exists('finfo_file') and $finfo=finfo_open(FILEINFO_MIME)) { $info = @strtolower(finfo_file($finfo,$path)); if($info) { - $mimeType=substr($info,0,strpos($info,';')); + $mimeType=substr($info,0, strpos($info,';')); } finfo_close($finfo); } @@ -380,8 +380,8 @@ class OC_Helper { pclose($fp); //trim the character set from the end of the response - $mimeType=substr($reply,0,strrpos($reply,' ')); - $mimeType=substr($mimeType,0,strrpos($mimeType,"\n")); + $mimeType=substr($reply,0, strrpos($reply,' ')); + $mimeType=substr($mimeType,0, strrpos($mimeType,"\n")); //trim ; if (strpos($mimeType, ';') !== false) { @@ -495,7 +495,7 @@ class OC_Helper { } $count=0; while(!feof($source)) { - $count+=fwrite($target,fread($source,8192)); + $count+=fwrite($target, fread($source,8192)); } return $count; } diff --git a/lib/installer.php b/lib/installer.php index 56e474bb3b3..83d082b804a 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -125,7 +125,7 @@ class OC_Installer{ } return false; } - $info=OC_App::getAppInfo($extractDir.'/appinfo/info.xml',true); + $info=OC_App::getAppInfo($extractDir.'/appinfo/info.xml', true); // check the code for not allowed calls if(!OC_Installer::checkCode($info['id'],$extractDir)) { OC_Log::write('core','App can\'t be installed because of not allowed code in the App',OC_Log::ERROR); diff --git a/lib/search/provider/file.php b/lib/search/provider/file.php index 8d0843ce2d2..0d4b332b792 100644 --- a/lib/search/provider/file.php +++ b/lib/search/provider/file.php @@ -2,7 +2,7 @@ class OC_Search_Provider_File extends OC_Search_Provider{ function search($query) { - $files=OC_FileCache::search($query,true); + $files=OC_FileCache::search($query, true); $results=array(); $l=OC_L10N::get('lib'); foreach($files as $fileData) { diff --git a/lib/setup.php b/lib/setup.php index 3c92e9c5599..62d31fd544f 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -92,7 +92,7 @@ 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('version', implode('.',OC_Util::getVersion())); if($dbtype == 'mysql') { $dbuser = $options['dbuser']; $dbpass = $options['dbpass']; @@ -376,8 +376,8 @@ class OC_Setup { } if(count($error) == 0) { - OC_Appconfig::setValue('core', 'installedat',microtime(true)); - OC_Appconfig::setValue('core', 'lastupdatedat',microtime(true)); + OC_Appconfig::setValue('core', 'installedat', microtime(true)); + OC_Appconfig::setValue('core', 'lastupdatedat', microtime(true)); OC_Group::createGroup('admin'); OC_Group::addToGroup($username, 'admin'); diff --git a/lib/streamwrappers.php b/lib/streamwrappers.php index 1e5b19a11f0..63b795f4c4d 100644 --- a/lib/streamwrappers.php +++ b/lib/streamwrappers.php @@ -6,7 +6,7 @@ class OC_FakeDirStream{ private $index; public function dir_opendir($path,$options) { - $this->name=substr($path,strlen('fakedir://')); + $this->name=substr($path, strlen('fakedir://')); $this->index=0; if(!isset(self::$dirs[$this->name])) { self::$dirs[$this->name]=array(); @@ -223,7 +223,7 @@ class OC_CloseStreamWrapper{ private $source; private static $open=array(); public function stream_open($path, $mode, $options, &$opened_path) { - $path=substr($path,strlen('close://')); + $path=substr($path, strlen('close://')); $this->path=$path; $this->source=fopen($path,$mode); if(is_resource($this->source)) { @@ -279,7 +279,7 @@ class OC_CloseStreamWrapper{ } public function url_stat($path) { - $path=substr($path,strlen('close://')); + $path=substr($path, strlen('close://')); if(file_exists($path)) { return stat($path); }else{ @@ -295,7 +295,7 @@ class OC_CloseStreamWrapper{ } public function unlink($path) { - $path=substr($path,strlen('close://')); + $path=substr($path, strlen('close://')); return unlink($path); } } diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 78893457f47..645c92fa1f1 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -12,7 +12,7 @@ class OC_TemplateLayout extends OC_Template { if( $renderas == 'user' ) { parent::__construct( 'core', 'layout.user' ); - if(in_array(OC_APP::getCurrentApp(),array('settings','admin','help'))!==false) { + if(in_array(OC_APP::getCurrentApp(), array('settings','admin','help'))!==false) { $this->assign('bodyid','body-settings', false); }else{ $this->assign('bodyid','body-user', false); @@ -38,7 +38,7 @@ class OC_TemplateLayout extends OC_Template { 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 + $this->assign( 'apps_paths', str_replace('\\/', '/',json_encode($apps_paths)), false ); // Ugly unescape slashes waiting for better solution if (OC_Config::getValue('installed', false) && !OC_AppConfig::getValue('core', 'remote_core.css', false)) { OC_AppConfig::setValue('core', 'remote_core.css', '/core/minimizer.php'); diff --git a/lib/updater.php b/lib/updater.php index 483570b050a..f55e55985d9 100644 --- a/lib/updater.php +++ b/lib/updater.php @@ -29,8 +29,8 @@ class OC_Updater{ * Check if a new version is available */ public static function check() { - OC_Appconfig::setValue('core', 'lastupdatedat',microtime(true)); - if(OC_Appconfig::getValue('core', 'installedat','')=='') OC_Appconfig::setValue('core', 'installedat',microtime(true)); + OC_Appconfig::setValue('core', 'lastupdatedat', microtime(true)); + if(OC_Appconfig::getValue('core', 'installedat','')=='') OC_Appconfig::setValue('core', 'installedat', microtime(true)); $updaterurl='http://apps.owncloud.com/updater.php'; $version=OC_Util::getVersion(); @@ -72,7 +72,7 @@ class OC_Updater{ if(OC_Config::getValue('updatechecker', true)==true) { $data=OC_Updater::check(); if(isset($data['version']) and $data['version']<>'') { - $txt=''.$l->t('%s is available. Get more information',array($data['versionstring'], $data['web'])).''; + $txt=''.$l->t('%s is available. Get more information', array($data['versionstring'], $data['web'])).''; }else{ $txt=$l->t('up to date'); } diff --git a/lib/user.php b/lib/user.php index eff93b501bb..064fcbad96f 100644 --- a/lib/user.php +++ b/lib/user.php @@ -120,11 +120,11 @@ class OC_User { * setup the configured backends in config.php */ public static function setupBackends() { - $backends=OC_Config::getValue('user_backends',array()); + $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) { + if(class_exists($class) and array_search($i, self::$_setupedBackends)===false) { // make a reflection object $reflectionObj = new ReflectionClass($class); diff --git a/lib/util.php b/lib/util.php index 75991d685c6..907b4554037 100755 --- a/lib/util.php +++ b/lib/util.php @@ -34,7 +34,7 @@ class OC_Util { $CONFIG_DATADIRECTORY = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); //first set up the local "root" storage if(!self::$rootMounted) { - OC_Filesystem::mount('OC_Filestorage_Local',array('datadir'=>$CONFIG_DATADIRECTORY),'/'); + OC_Filesystem::mount('OC_Filestorage_Local', array('datadir'=>$CONFIG_DATADIRECTORY),'/'); self::$rootMounted=true; } @@ -456,7 +456,7 @@ class OC_Util { * @return string */ public static function getInstanceId() { - $id=OC_Config::getValue('instanceid',null); + $id=OC_Config::getValue('instanceid', null); if(is_null($id)) { $id=uniqid(); OC_Config::setValue('instanceid',$id); diff --git a/lib/vcategories.php b/lib/vcategories.php index 6b1d6a316f1..ba6569a244d 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -222,7 +222,7 @@ class OC_VCategories { if(!is_array($haystack)) { return false; } - return array_search(strtolower($needle),array_map('strtolower',$haystack)); + return array_search(strtolower($needle), array_map('strtolower',$haystack)); } } From 561cbb2de69a31934c22fc28332b5a14b6fcfc68 Mon Sep 17 00:00:00 2001 From: Felix Moeller Date: Tue, 23 Oct 2012 23:01:10 +0200 Subject: [PATCH 02/12] NoSpaceAfterComma II --- apps/files_encryption/lib/proxy.php | 6 +++--- apps/files_encryption/settings.php | 2 +- apps/files_external/lib/webdav.php | 4 ++-- lib/MDB2/Driver/Function/sqlite3.php | 2 +- lib/filecache.php | 6 +++--- lib/templatelayout.php | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 5c19955dbd5..61b87ab5463 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -42,13 +42,13 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ return false; } if(is_null(self::$blackList)) { - self::$blackList=explode(',',OCP\Config::getAppValue('files_encryption','type_blacklist','jpg,png,jpeg,avi,mpg,mpeg,mkv,mp3,oga,ogv,ogg')); + self::$blackList=explode(',', OCP\Config::getAppValue('files_encryption', 'type_blacklist', 'jpg,png,jpeg,avi,mpg,mpeg,mkv,mp3,oga,ogv,ogg')); } if(self::isEncrypted($path)) { return true; } - $extension=substr($path,strrpos($path,'.')+1); - if(array_search($extension,self::$blackList)===false) { + $extension=substr($path, strrpos($path, '.')+1); + if(array_search($extension, self::$blackList)===false) { return true; } } diff --git a/apps/files_encryption/settings.php b/apps/files_encryption/settings.php index 0a0d4d1abba..168124a8d22 100644 --- a/apps/files_encryption/settings.php +++ b/apps/files_encryption/settings.php @@ -7,7 +7,7 @@ */ $tmpl = new OCP\Template( 'files_encryption', 'settings'); -$blackList=explode(',',OCP\Config::getAppValue('files_encryption','type_blacklist','jpg,png,jpeg,avi,mpg,mpeg,mkv,mp3,oga,ogv,ogg')); +$blackList=explode(',', OCP\Config::getAppValue('files_encryption', 'type_blacklist', 'jpg,png,jpeg,avi,mpg,mpeg,mkv,mp3,oga,ogv,ogg')); $enabled=(OCP\Config::getAppValue('files_encryption','enable_encryption','true')=='true'); $tmpl->assign('blacklist',$blackList); $tmpl->assign('encryption_enabled',$enabled); diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 890e66d742e..74e468a2838 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -225,7 +225,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try{ - $response=$this->client->request('MOVE',$path1,null, array('Destination'=>$path2)); + $response=$this->client->request('MOVE', $path1, null, array('Destination'=>$path2)); return true; }catch(Exception $e) { echo $e; @@ -239,7 +239,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try{ - $response=$this->client->request('COPY',$path1,null, array('Destination'=>$path2)); + $response=$this->client->request('COPY', $path1, null, array('Destination'=>$path2)); return true; }catch(Exception $e) { echo $e; diff --git a/lib/MDB2/Driver/Function/sqlite3.php b/lib/MDB2/Driver/Function/sqlite3.php index 235a106e183..0bddde5bf3f 100644 --- a/lib/MDB2/Driver/Function/sqlite3.php +++ b/lib/MDB2/Driver/Function/sqlite3.php @@ -94,7 +94,7 @@ class MDB2_Driver_Function_sqlite3 extends MDB2_Driver_Function_Common if (!is_null($length)) { return "substr($value,$position,$length)"; } - return "substr($value,$position,length($value))"; + return "substr($value, $position, length($value))"; } // }}} diff --git a/lib/filecache.php b/lib/filecache.php index 32257595443..b8b35cdf3d2 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -102,7 +102,7 @@ class OC_FileCache{ $data['versioned']=(int)$data['versioned']; $user=OC_User::getUser(); $query=OC_DB::prepare('INSERT INTO `*PREFIX*fscache`(`parent`, `name`, `path`, `path_hash`, `size`, `mtime`, `ctime`, `mimetype`, `mimepart`,`user`,`writable`,`encrypted`,`versioned`) VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?)'); - $result=$query->execute(array($parent,basename($fullpath),$fullpath, md5($fullpath),$data['size'],$data['mtime'],$data['ctime'],$data['mimetype'],$mimePart,$user,$data['writable'],$data['encrypted'],$data['versioned'])); + $result=$query->execute(array($parent, basename($fullpath), $fullpath, md5($fullpath), $data['size'], $data['mtime'], $data['ctime'], $data['mimetype'], $mimePart, $user, $data['writable'], $data['encrypted'], $data['versioned'])); if(OC_DB::isError($result)) { OC_Log::write('files', 'error while writing file('.$fullpath.') to cache', OC_Log::ERROR); } @@ -163,7 +163,7 @@ class OC_FileCache{ $newPath=$root.$newPath; $newParent=self::getParentId($newPath); $query=OC_DB::prepare('UPDATE `*PREFIX*fscache` SET `parent`=? ,`name`=?, `path`=?, `path_hash`=? WHERE `path_hash`=?'); - $query->execute(array($newParent,basename($newPath),$newPath,md5($newPath), md5($oldPath))); + $query->execute(array($newParent, basename($newPath), $newPath, md5($newPath), md5($oldPath))); if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$oldPath)) { $cache->set('fileid/'.$newPath, $cache->get('fileid/'.$oldPath)); @@ -176,7 +176,7 @@ class OC_FileCache{ while($row= $query->execute(array($oldPath.'/%'))->fetchRow()) { $old=$row['path']; $new=$newPath.substr($old, $oldLength); - $updateQuery->execute(array($new,md5($new), md5($old))); + $updateQuery->execute(array($new, md5($new), md5($old))); if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$old)) { $cache->set('fileid/'.$new, $cache->get('fileid/'.$old)); diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 645c92fa1f1..c3da172a7c1 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -38,7 +38,7 @@ class OC_TemplateLayout extends OC_Template { 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 + $this->assign( 'apps_paths', str_replace('\\/', '/', json_encode($apps_paths)), false ); // Ugly unescape slashes waiting for better solution if (OC_Config::getValue('installed', false) && !OC_AppConfig::getValue('core', 'remote_core.css', false)) { OC_AppConfig::setValue('core', 'remote_core.css', '/core/minimizer.php'); From 07e08d59289c39417fdba2e5d1a2e5540eb369d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 24 Oct 2012 15:37:32 +0200 Subject: [PATCH 03/12] urldecode target directory --- apps/files/ajax/move.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 8b3149ef14e..ddcda553e3d 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -9,7 +9,7 @@ OCP\JSON::callCheck(); // Get data $dir = stripslashes($_GET["dir"]); $file = stripslashes($_GET["file"]); -$target = stripslashes($_GET["target"]); +$target = stripslashes(urldecode($_GET["target"])); if(OC_Files::move($dir, $file, $target, $file)) { From 0c2a4264c9f42c045e3b8b0f9c0f359d5c1025e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 24 Oct 2012 17:23:36 +0200 Subject: [PATCH 04/12] normalize path --- lib/filecache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/filecache.php b/lib/filecache.php index 776b60abcac..f768ea8cec8 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -65,7 +65,7 @@ class OC_FileCache{ if($root===false) { $root=OC_Filesystem::getRoot(); } - $fullpath=$root.$path; + $fullpath=OC_Filesystem::normalizePath($root.'/'.$path); $parent=self::getParentId($fullpath); $id=self::getId($fullpath, ''); if(isset(OC_FileCache_Cached::$savedData[$fullpath])) { From 694b1d397dd05a8d00dfbd6ca2a34039ca4b2ca3 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 24 Oct 2012 17:53:50 +0200 Subject: [PATCH 05/12] Revert e1a4fe98908dbf8f9e795fd852b231381d4f3ce4 --- apps/files/templates/part.breadcrumb.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/templates/part.breadcrumb.php b/apps/files/templates/part.breadcrumb.php index b75efb64d1b..71b695f65f8 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("")'> - "> + ">
From ff6d2f16c42a7ed35f28d909ffd19031108fb2f5 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 24 Oct 2012 17:58:48 +0200 Subject: [PATCH 06/12] urlencode --- apps/files_sharing/public.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index db10a8faeee..534f548fb3c 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -168,11 +168,11 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { $list = new OCP\Template('files', 'part.list', ''); $list->assign('files', $files, false); $list->assign('publicListView', true); - $list->assign('baseURL', OCP\Util::linkToPublic('files').'&dir='.$_GET['dir'].'&path=', false); - $list->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.$_GET['dir'].'&path=', false); + $list->assign('baseURL', OCP\Util::linkToPublic('files').'&dir='.urlencode($_GET['dir']).'&path=', false); + $list->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.urlencode($_GET['dir']).'&path=', false); $breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', '' ); $breadcrumbNav->assign('breadcrumb', $breadcrumb, false); - $breadcrumbNav->assign('baseURL', OCP\Util::linkToPublic('files').'&dir='.$_GET['dir'].'&path=', false); + $breadcrumbNav->assign('baseURL', OCP\Util::linkToPublic('files').'&dir='.urlencode($_GET['dir']).'&path=', false); $folder = new OCP\Template('files', 'index', ''); $folder->assign('fileList', $list->fetchPage(), false); $folder->assign('breadcrumb', $breadcrumbNav->fetchPage(), false); @@ -194,7 +194,7 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { } else { $getPath = ''; } - $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.$_GET['dir'].'&path='.$getPath); + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.urlencode($_GET['dir']).'&path='.urlencode($getPath), false); } else { // Show file preview if viewer is available $tmpl->assign('uidOwner', $uidOwner); @@ -202,14 +202,14 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { $tmpl->assign('filename', basename($path)); $tmpl->assign('mimetype', OC_Filesystem::getMimeType($path)); if ($type == 'file') { - $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&file='.$_GET['file'].'&download'); + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&file='.urlencode($_GET['file']).'&download', false); } else { if (isset($_GET['path'])) { $getPath = $_GET['path']; } else { $getPath = ''; } - $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.$_GET['dir'].'&path='.$getPath); + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.urlencode($_GET['dir']).'&path='.$getPath, false); } } $tmpl->printPage(); From 7454186806d8ebc440f7604d1ff517433bdd9faa Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 24 Oct 2012 18:00:19 +0200 Subject: [PATCH 07/12] Forget to urlencode the path --- apps/files_sharing/public.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 534f548fb3c..105e94f1140 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -209,7 +209,7 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { } else { $getPath = ''; } - $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.urlencode($_GET['dir']).'&path='.$getPath, false); + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.urlencode($_GET['dir']).'&path='.urlencode($getPath), false); } } $tmpl->printPage(); From 43bae1b47312d203bd4431b6cdc684acf09ebd6e Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 25 Oct 2012 02:11:53 +0200 Subject: [PATCH 08/12] [tx-robot] updated from transifex --- apps/files_external/l10n/zh_CN.php | 6 ++++ core/l10n/ar.php | 22 +++++++++++++ core/l10n/bg_BG.php | 7 +++++ core/l10n/ca.php | 7 +++++ core/l10n/cs_CZ.php | 7 +++++ core/l10n/da.php | 7 +++++ core/l10n/de.php | 7 +++++ core/l10n/de_DE.php | 7 +++++ core/l10n/el.php | 7 +++++ core/l10n/eo.php | 8 +++++ core/l10n/es.php | 7 +++++ core/l10n/es_AR.php | 7 +++++ core/l10n/et_EE.php | 8 +++++ core/l10n/eu.php | 9 ++++++ core/l10n/fa.php | 9 ++++++ core/l10n/fi_FI.php | 8 +++++ core/l10n/fr.php | 7 +++++ core/l10n/gl.php | 9 ++++++ core/l10n/he.php | 8 +++++ core/l10n/hr.php | 7 +++++ core/l10n/hu_HU.php | 10 ++++++ core/l10n/ia.php | 20 ++++++++++++ core/l10n/id.php | 7 +++++ core/l10n/it.php | 7 +++++ core/l10n/ja_JP.php | 7 +++++ core/l10n/ka_GE.php | 7 +++++ core/l10n/ko.php | 9 ++++++ core/l10n/ku_IQ.php | 4 +++ core/l10n/lb.php | 9 ++++++ core/l10n/lt_LT.php | 7 +++++ core/l10n/lv.php | 3 ++ core/l10n/mk.php | 8 +++++ core/l10n/ms_MY.php | 8 +++++ core/l10n/nb_NO.php | 11 +++++++ core/l10n/nl.php | 7 +++++ core/l10n/nn_NO.php | 22 +++++++++++++ core/l10n/oc.php | 8 +++++ core/l10n/pl.php | 7 +++++ core/l10n/pl_PL.php | 4 +++ core/l10n/pt_BR.php | 8 +++++ core/l10n/pt_PT.php | 8 +++++ core/l10n/ro.php | 9 ++++++ core/l10n/ru.php | 7 +++++ core/l10n/ru_RU.php | 7 +++++ core/l10n/si_LK.php | 14 +++++++++ core/l10n/sk_SK.php | 8 +++++ core/l10n/sl.php | 8 +++++ core/l10n/sr.php | 21 +++++++++++++ core/l10n/sr@latin.php | 20 ++++++++++++ core/l10n/sv.php | 7 +++++ core/l10n/ta_LK.php | 7 +++++ core/l10n/th_TH.php | 9 ++++++ core/l10n/tr.php | 10 ++++++ core/l10n/uk.php | 10 ++++++ core/l10n/vi.php | 9 ++++++ core/l10n/zh_CN.GB2312.php | 7 +++++ core/l10n/zh_CN.php | 13 ++++++++ core/l10n/zh_TW.php | 10 ++++++ l10n/ar/core.po | 48 ++++++++++++++--------------- l10n/ar/lib.po | 16 +++++----- l10n/bg_BG/core.po | 18 +++++------ l10n/bg_BG/lib.po | 8 ++--- l10n/ca/core.po | 18 +++++------ l10n/ca/lib.po | 8 ++--- l10n/cs_CZ/core.po | 18 +++++------ l10n/cs_CZ/lib.po | 12 ++++---- l10n/da/core.po | 18 +++++------ l10n/da/lib.po | 8 ++--- l10n/de/core.po | 18 +++++------ l10n/de/lib.po | 8 ++--- l10n/de_DE/core.po | 18 +++++------ l10n/de_DE/lib.po | 13 ++++---- l10n/el/core.po | 18 +++++------ l10n/el/lib.po | 8 ++--- l10n/eo/core.po | 20 ++++++------ l10n/eo/lib.po | 8 ++--- l10n/es/core.po | 18 +++++------ l10n/es/lib.po | 8 ++--- l10n/es_AR/core.po | 18 +++++------ l10n/es_AR/lib.po | 8 ++--- l10n/et_EE/core.po | 20 ++++++------ l10n/et_EE/lib.po | 8 ++--- l10n/eu/core.po | 22 ++++++------- l10n/eu/lib.po | 8 ++--- l10n/fa/core.po | 22 ++++++------- l10n/fa/lib.po | 8 ++--- l10n/fi_FI/core.po | 20 ++++++------ l10n/fi_FI/lib.po | 8 ++--- l10n/fr/core.po | 18 +++++------ l10n/fr/lib.po | 8 ++--- l10n/gl/core.po | 22 ++++++------- l10n/gl/lib.po | 6 ++-- l10n/he/core.po | 20 ++++++------ l10n/he/lib.po | 6 ++-- l10n/hi/core.po | 4 +-- l10n/hi/lib.po | 4 +-- l10n/hr/core.po | 18 +++++------ l10n/hr/lib.po | 32 +++++++++---------- l10n/hu_HU/core.po | 24 +++++++-------- l10n/hu_HU/lib.po | 8 ++--- l10n/ia/core.po | 44 +++++++++++++------------- l10n/ia/lib.po | 14 ++++----- l10n/id/core.po | 18 +++++------ l10n/id/lib.po | 6 ++-- l10n/it/core.po | 18 +++++------ l10n/it/lib.po | 12 ++++---- l10n/ja_JP/core.po | 18 +++++------ l10n/ja_JP/lib.po | 12 ++++---- l10n/ka_GE/core.po | 18 +++++------ l10n/ka_GE/lib.po | 18 +++++------ l10n/ko/core.po | 22 ++++++------- l10n/ko/lib.po | 16 +++++----- l10n/ku_IQ/core.po | 12 ++++---- l10n/ku_IQ/lib.po | 10 +++--- l10n/lb/core.po | 22 ++++++------- l10n/lb/lib.po | 12 ++++---- l10n/lt_LT/core.po | 18 +++++------ l10n/lt_LT/lib.po | 8 ++--- l10n/lv/core.po | 10 +++--- l10n/lv/lib.po | 14 ++++----- l10n/mk/core.po | 20 ++++++------ l10n/mk/lib.po | 14 ++++----- l10n/ms_MY/core.po | 20 ++++++------ l10n/ms_MY/lib.po | 16 +++++----- l10n/nb_NO/core.po | 26 ++++++++-------- l10n/nb_NO/lib.po | 8 ++--- l10n/nl/core.po | 18 +++++------ l10n/nl/lib.po | 8 ++--- l10n/nn_NO/core.po | 48 ++++++++++++++--------------- l10n/nn_NO/lib.po | 16 +++++----- l10n/oc/core.po | 20 ++++++------ l10n/oc/lib.po | 6 ++-- l10n/pl/core.po | 18 +++++------ l10n/pl/lib.po | 13 ++++---- l10n/pl_PL/core.po | 8 ++--- l10n/pl_PL/lib.po | 6 ++-- l10n/pt_BR/core.po | 20 ++++++------ l10n/pt_BR/lib.po | 8 ++--- l10n/pt_PT/core.po | 20 ++++++------ l10n/pt_PT/lib.po | 8 ++--- l10n/ro/core.po | 22 ++++++------- l10n/ro/lib.po | 8 ++--- l10n/ru/core.po | 18 +++++------ l10n/ru/lib.po | 8 ++--- l10n/ru_RU/core.po | 18 +++++------ l10n/ru_RU/lib.po | 8 ++--- l10n/si_LK/core.po | 32 +++++++++---------- l10n/si_LK/lib.po | 6 ++-- l10n/sk_SK/core.po | 20 ++++++------ l10n/sk_SK/lib.po | 8 ++--- l10n/sl/core.po | 20 ++++++------ l10n/sl/lib.po | 8 ++--- l10n/sr/core.po | 46 +++++++++++++-------------- l10n/sr/lib.po | 16 +++++----- l10n/sr@latin/core.po | 44 +++++++++++++------------- l10n/sr@latin/lib.po | 16 +++++----- l10n/sv/core.po | 18 +++++------ l10n/sv/lib.po | 12 ++++---- l10n/ta_LK/core.po | 18 +++++------ l10n/ta_LK/lib.po | 30 +++++++++--------- 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 | 22 ++++++------- l10n/th_TH/lib.po | 8 ++--- l10n/tr/core.po | 24 +++++++-------- l10n/tr/lib.po | 18 +++++------ l10n/uk/core.po | 24 +++++++-------- l10n/uk/lib.po | 8 ++--- l10n/vi/core.po | 22 ++++++------- l10n/vi/lib.po | 8 ++--- l10n/zh_CN.GB2312/core.po | 18 +++++------ l10n/zh_CN.GB2312/lib.po | 8 ++--- l10n/zh_CN/core.po | 32 +++++++++---------- l10n/zh_CN/files_external.po | 16 +++++----- l10n/zh_CN/lib.po | 12 ++++---- l10n/zh_TW/core.po | 24 +++++++-------- l10n/zh_TW/lib.po | 8 ++--- lib/l10n/ar.php | 8 +++++ lib/l10n/bg_BG.php | 4 +++ lib/l10n/ca.php | 2 ++ lib/l10n/cs_CZ.php | 3 ++ lib/l10n/da.php | 2 ++ lib/l10n/de.php | 2 ++ lib/l10n/de_DE.php | 3 ++ lib/l10n/el.php | 2 ++ lib/l10n/eo.php | 2 ++ lib/l10n/es.php | 2 ++ lib/l10n/es_AR.php | 2 ++ lib/l10n/et_EE.php | 2 ++ lib/l10n/eu.php | 2 ++ lib/l10n/fa.php | 2 ++ lib/l10n/fi_FI.php | 2 ++ lib/l10n/fr.php | 2 ++ lib/l10n/gl.php | 1 + lib/l10n/he.php | 1 + lib/l10n/hr.php | 16 ++++++++++ lib/l10n/hu_HU.php | 2 ++ lib/l10n/ia.php | 7 +++++ lib/l10n/id.php | 1 + lib/l10n/it.php | 3 ++ lib/l10n/ja_JP.php | 3 ++ lib/l10n/ka_GE.php | 7 +++++ lib/l10n/ko.php | 8 +++++ lib/l10n/ku_IQ.php | 5 +++ lib/l10n/lb.php | 6 ++++ lib/l10n/lt_LT.php | 2 ++ lib/l10n/lv.php | 7 +++++ lib/l10n/mk.php | 7 +++++ lib/l10n/ms_MY.php | 8 +++++ lib/l10n/nb_NO.php | 2 ++ lib/l10n/nl.php | 2 ++ lib/l10n/nn_NO.php | 8 +++++ lib/l10n/oc.php | 1 + lib/l10n/pl.php | 3 ++ lib/l10n/pl_PL.php | 3 ++ lib/l10n/pt_BR.php | 2 ++ lib/l10n/pt_PT.php | 2 ++ lib/l10n/ro.php | 2 ++ lib/l10n/ru.php | 2 ++ lib/l10n/ru_RU.php | 2 ++ lib/l10n/si_LK.php | 1 + lib/l10n/sk_SK.php | 2 ++ lib/l10n/sl.php | 2 ++ lib/l10n/sr.php | 8 +++++ lib/l10n/sr@latin.php | 8 +++++ lib/l10n/sv.php | 3 ++ lib/l10n/ta_LK.php | 15 +++++++++ lib/l10n/th_TH.php | 2 ++ lib/l10n/tr.php | 9 ++++++ lib/l10n/uk.php | 2 ++ lib/l10n/vi.php | 2 ++ lib/l10n/zh_CN.GB2312.php | 2 ++ lib/l10n/zh_CN.php | 3 ++ lib/l10n/zh_TW.php | 2 ++ 241 files changed, 1693 insertions(+), 954 deletions(-) create mode 100644 core/l10n/pl_PL.php create mode 100644 lib/l10n/ar.php create mode 100644 lib/l10n/bg_BG.php create mode 100644 lib/l10n/hr.php create mode 100644 lib/l10n/ia.php create mode 100644 lib/l10n/ko.php create mode 100644 lib/l10n/ku_IQ.php create mode 100644 lib/l10n/lb.php create mode 100644 lib/l10n/lv.php create mode 100644 lib/l10n/mk.php create mode 100644 lib/l10n/ms_MY.php create mode 100644 lib/l10n/nn_NO.php create mode 100644 lib/l10n/pl_PL.php create mode 100644 lib/l10n/sr.php create mode 100644 lib/l10n/sr@latin.php create mode 100644 lib/l10n/ta_LK.php create mode 100644 lib/l10n/tr.php diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 5dd78d9f9c9..247ef7ce95c 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -1,4 +1,8 @@ "权限已授予。", +"Error configuring Dropbox storage" => "配置Dropbox存储时出错", +"Grant access" => "授权", +"Fill out all required fields" => "完成所有必填项", "Please provide a valid Dropbox app key and secret." => "请提供有效的Dropbox应用key和secret", "Error configuring Google Drive storage" => "配置Google Drive存储时出错", "External Storage" => "外部存储", @@ -6,7 +10,9 @@ "Backend" => "后端", "Configuration" => "配置", "Options" => "选项", +"Applicable" => "适用的", "Add mount point" => "增加挂载点", +"None set" => "未设置", "All Users" => "所有用户", "Groups" => "组", "Users" => "用户", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 6efe63cc2af..b9240664098 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,5 +1,6 @@ "تعديلات", +"Cancel" => "الغاء", "Password" => "كلمة السر", "Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}", "You will receive a link to reset your password via Email." => "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر.", @@ -17,6 +18,8 @@ "Admin" => "مستخدم رئيسي", "Help" => "المساعدة", "Cloud not found" => "لم يتم إيجاد", +"Edit categories" => "عدل الفئات", +"Add" => "أدخل", "Create an admin account" => "أضف مستخدم رئيسي ", "Advanced" => "خيارات متقدمة", "Data folder" => "مجلد المعلومات", @@ -28,6 +31,25 @@ "Database host" => "خادم قاعدة البيانات", "Finish setup" => "انهاء التعديلات", "web services under your control" => "خدمات الوب تحت تصرفك", +"Sunday" => "الاحد", +"Monday" => "الأثنين", +"Tuesday" => "الثلاثاء", +"Wednesday" => "الاربعاء", +"Thursday" => "الخميس", +"Friday" => "الجمعه", +"Saturday" => "السبت", +"January" => "كانون الثاني", +"February" => "شباط", +"March" => "آذار", +"April" => "نيسان", +"May" => "أيار", +"June" => "حزيران", +"July" => "تموز", +"August" => "آب", +"September" => "أيلول", +"October" => "تشرين الاول", +"November" => "تشرين الثاني", +"December" => "كانون الاول", "Log out" => "الخروج", "Lost your password?" => "هل نسيت كلمة السر؟", "remember" => "تذكر", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 0e9bd3dc363..5d8ed05181b 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -35,6 +35,13 @@ "Database name" => "Име на базата", "Database host" => "Хост за базата", "Finish setup" => "Завършване на настройките", +"Sunday" => "Неделя", +"Monday" => "Понеделник", +"Tuesday" => "Вторник", +"Wednesday" => "Сряда", +"Thursday" => "Четвъртък", +"Friday" => "Петък", +"Saturday" => "Събота", "January" => "Януари", "February" => "Февруари", "March" => "Март", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index ceec3279d44..2445e378ab2 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -71,6 +71,13 @@ "Database host" => "Ordinador central de la base de dades", "Finish setup" => "Acaba la configuració", "web services under your control" => "controleu els vostres serveis web", +"Sunday" => "Diumenge", +"Monday" => "Dilluns", +"Tuesday" => "Dimarts", +"Wednesday" => "Dimecres", +"Thursday" => "Dijous", +"Friday" => "Divendres", +"Saturday" => "Dissabte", "January" => "Gener", "February" => "Febrer", "March" => "Març", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index fc683dccccd..4f882b30a2e 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -71,6 +71,13 @@ "Database host" => "Hostitel databáze", "Finish setup" => "Dokončit nastavení", "web services under your control" => "webové služby pod Vaší kontrolou", +"Sunday" => "Neděle", +"Monday" => "Pondělí", +"Tuesday" => "Úterý", +"Wednesday" => "Středa", +"Thursday" => "Čtvrtek", +"Friday" => "Pátek", +"Saturday" => "Sobota", "January" => "Leden", "February" => "Únor", "March" => "Březen", diff --git a/core/l10n/da.php b/core/l10n/da.php index d6aa3c1b497..cb2bc9df063 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -71,6 +71,13 @@ "Database host" => "Databasehost", "Finish setup" => "Afslut opsætning", "web services under your control" => "Webtjenester under din kontrol", +"Sunday" => "Søndag", +"Monday" => "Mandag", +"Tuesday" => "Tirsdag", +"Wednesday" => "Onsdag", +"Thursday" => "Torsdag", +"Friday" => "Fredag", +"Saturday" => "Lørdag", "January" => "Januar", "February" => "Februar", "March" => "Marts", diff --git a/core/l10n/de.php b/core/l10n/de.php index 43b4fdf182b..251cc4baf0a 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -71,6 +71,13 @@ "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Ihrer Kontrolle", +"Sunday" => "Sonntag", +"Monday" => "Montag", +"Tuesday" => "Dienstag", +"Wednesday" => "Mittwoch", +"Thursday" => "Donnerstag", +"Friday" => "Freitag", +"Saturday" => "Samstag", "January" => "Januar", "February" => "Februar", "March" => "März", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index d238fd04760..78f8269e812 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -71,6 +71,13 @@ "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Ihrer Kontrolle", +"Sunday" => "Sonntag", +"Monday" => "Montag", +"Tuesday" => "Dienstag", +"Wednesday" => "Mittwoch", +"Thursday" => "Donnerstag", +"Friday" => "Freitag", +"Saturday" => "Samstag", "January" => "Januar", "February" => "Februar", "March" => "März", diff --git a/core/l10n/el.php b/core/l10n/el.php index e099454b3ce..67f4c4ba88c 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -69,6 +69,13 @@ "Database host" => "Διακομιστής βάσης δεδομένων", "Finish setup" => "Ολοκλήρωση εγκατάστασης", "web services under your control" => "Υπηρεσίες web υπό τον έλεγχό σας", +"Sunday" => "Κυριακή", +"Monday" => "Δευτέρα", +"Tuesday" => "Τρίτη", +"Wednesday" => "Τετάρτη", +"Thursday" => "Πέμπτη", +"Friday" => "Παρασκευή", +"Saturday" => "Σάββατο", "January" => "Ιανουάριος", "February" => "Φεβρουάριος", "March" => "Μάρτιος", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 3a3ecb740e8..e01f46cec62 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -52,6 +52,7 @@ "Cloud not found" => "La nubo ne estas trovita", "Edit categories" => "Redakti kategoriojn", "Add" => "Aldoni", +"Security Warning" => "Sekureca averto", "Create an admin account" => "Krei administran konton", "Advanced" => "Progresinta", "Data folder" => "Datuma dosierujo", @@ -64,6 +65,13 @@ "Database host" => "Datumbaza gastigo", "Finish setup" => "Fini la instalon", "web services under your control" => "TTT-servoj sub via kontrolo", +"Sunday" => "dimanĉo", +"Monday" => "lundo", +"Tuesday" => "mardo", +"Wednesday" => "merkredo", +"Thursday" => "ĵaŭdo", +"Friday" => "vendredo", +"Saturday" => "sabato", "January" => "Januaro", "February" => "Februaro", "March" => "Marto", diff --git a/core/l10n/es.php b/core/l10n/es.php index fed617b6fbd..173ad5de879 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -71,6 +71,13 @@ "Database host" => "Host de la base de datos", "Finish setup" => "Completar la instalación", "web services under your control" => "servicios web bajo tu control", +"Sunday" => "Domingo", +"Monday" => "Lunes", +"Tuesday" => "Martes", +"Wednesday" => "Miércoles", +"Thursday" => "Jueves", +"Friday" => "Viernes", +"Saturday" => "Sábado", "January" => "Enero", "February" => "Febrero", "March" => "Marzo", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 3b98908a0bb..7f6d99ed35c 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -68,6 +68,13 @@ "Database host" => "Host de la base de datos", "Finish setup" => "Completar la instalación", "web services under your control" => "servicios web sobre los que tenés control", +"Sunday" => "Domingo", +"Monday" => "Lunes", +"Tuesday" => "Martes", +"Wednesday" => "Miércoles", +"Thursday" => "Jueves", +"Friday" => "Viernes", +"Saturday" => "Sábado", "January" => "Enero", "February" => "Febrero", "March" => "Marzo", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index d56c71f7c12..14c5c66bea3 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -58,9 +58,17 @@ "Database user" => "Andmebaasi kasutaja", "Database password" => "Andmebaasi parool", "Database name" => "Andmebasi nimi", +"Database tablespace" => "Andmebaasi tabeliruum", "Database host" => "Andmebaasi host", "Finish setup" => "Lõpeta seadistamine", "web services under your control" => "veebiteenused sinu kontrolli all", +"Sunday" => "Pühapäev", +"Monday" => "Esmaspäev", +"Tuesday" => "Teisipäev", +"Wednesday" => "Kolmapäev", +"Thursday" => "Neljapäev", +"Friday" => "Reede", +"Saturday" => "Laupäev", "January" => "Jaanuar", "February" => "Veebruar", "March" => "Märts", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index ff4c998b87d..6afe5b4febd 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -52,6 +52,8 @@ "Cloud not found" => "Ez da hodeia aurkitu", "Edit categories" => "Editatu kategoriak", "Add" => "Gehitu", +"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.", "Create an admin account" => "Sortu kudeatzaile kontu bat", "Advanced" => "Aurreratua", "Data folder" => "Datuen karpeta", @@ -64,6 +66,13 @@ "Database host" => "Datubasearen hostalaria", "Finish setup" => "Bukatu konfigurazioa", "web services under your control" => "web zerbitzuak zure kontrolpean", +"Sunday" => "Igandea", +"Monday" => "Astelehena", +"Tuesday" => "Asteartea", +"Wednesday" => "Asteazkena", +"Thursday" => "Osteguna", +"Friday" => "Ostirala", +"Saturday" => "Larunbata", "January" => "Urtarrila", "February" => "Otsaila", "March" => "Martxoa", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index ab663aa77c6..23e58d2efb0 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -10,6 +10,7 @@ "No categories selected for deletion." => "هیج دسته ای برای پاک شدن انتخاب نشده است", "Error" => "خطا", "Password" => "گذرواژه", +"create" => "ایجاد", "ownCloud password reset" => "پسورد ابرهای شما تغییرکرد", "Use the following link to reset your password: {link}" => "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}", "You will receive a link to reset your password via Email." => "شما یک نامه الکترونیکی حاوی یک لینک جهت بازسازی گذرواژه دریافت خواهید کرد.", @@ -30,6 +31,7 @@ "Cloud not found" => "پیدا نشد", "Edit categories" => "ویرایش گروه ها", "Add" => "افزودن", +"Security Warning" => "اخطار امنیتی", "Create an admin account" => "لطفا یک شناسه برای مدیر بسازید", "Advanced" => "حرفه ای", "Data folder" => "پوشه اطلاعاتی", @@ -41,6 +43,13 @@ "Database host" => "هاست پایگاه داده", "Finish setup" => "اتمام نصب", "web services under your control" => "سرویس وب تحت کنترل شما", +"Sunday" => "یکشنبه", +"Monday" => "دوشنبه", +"Tuesday" => "سه شنبه", +"Wednesday" => "چهارشنبه", +"Thursday" => "پنجشنبه", +"Friday" => "جمعه", +"Saturday" => "شنبه", "January" => "ژانویه", "February" => "فبریه", "March" => "مارس", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index e64ea478c28..0c8e7896db7 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -52,6 +52,7 @@ "Edit categories" => "Muokkaa luokkia", "Add" => "Lisää", "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.", "Create an admin account" => "Luo ylläpitäjän tunnus", "Advanced" => "Lisäasetukset", "Data folder" => "Datakansio", @@ -64,6 +65,13 @@ "Database host" => "Tietokantapalvelin", "Finish setup" => "Viimeistele asennus", "web services under your control" => "verkkopalvelut hallinnassasi", +"Sunday" => "Sunnuntai", +"Monday" => "Maanantai", +"Tuesday" => "Tiistai", +"Wednesday" => "Keskiviikko", +"Thursday" => "Torstai", +"Friday" => "Perjantai", +"Saturday" => "Lauantai", "January" => "Tammikuu", "February" => "Helmikuu", "March" => "Maaliskuu", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index cbc013c81e2..c9f2f57852e 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -68,6 +68,13 @@ "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", +"Sunday" => "Dimanche", +"Monday" => "Lundi", +"Tuesday" => "Mardi", +"Wednesday" => "Mercredi", +"Thursday" => "Jeudi", +"Friday" => "Vendredi", +"Saturday" => "Samedi", "January" => "janvier", "February" => "février", "March" => "mars", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index f43f506aa56..1b35cd2fd8d 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -10,6 +10,7 @@ "No categories selected for deletion." => "Non hai categorías seleccionadas para eliminar.", "Error" => "Erro", "Password" => "Contrasinal", +"Unshare" => "Deixar de compartir", "ownCloud password reset" => "Restablecer contrasinal de ownCloud", "Use the following link to reset your password: {link}" => "Use a seguinte ligazón para restablecer o contrasinal: {link}", "You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo electrónico para restablecer o contrasinal", @@ -30,6 +31,7 @@ "Cloud not found" => "Nube non atopada", "Edit categories" => "Editar categorias", "Add" => "Engadir", +"Security Warning" => "Aviso de seguridade", "Create an admin account" => "Crear unha contra de administrador", "Advanced" => "Avanzado", "Data folder" => "Cartafol de datos", @@ -41,6 +43,13 @@ "Database host" => "Servidor da base de datos", "Finish setup" => "Rematar configuración", "web services under your control" => "servizos web baixo o seu control", +"Sunday" => "Domingo", +"Monday" => "Luns", +"Tuesday" => "Martes", +"Wednesday" => "Mércores", +"Thursday" => "Xoves", +"Friday" => "Venres", +"Saturday" => "Sábado", "January" => "Xaneiro", "February" => "Febreiro", "March" => "Marzo", diff --git a/core/l10n/he.php b/core/l10n/he.php index b7219f35df3..2038191142e 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -10,6 +10,7 @@ "No categories selected for deletion." => "לא נבחרו קטגוריות למחיקה", "Error" => "שגיאה", "Password" => "ססמה", +"Unshare" => "הסר שיתוף", "ownCloud password reset" => "איפוס הססמה של ownCloud", "Use the following link to reset your password: {link}" => "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}", "You will receive a link to reset your password via Email." => "יישלח לתיבת הדוא״ל שלך קישור לאיפוס הססמה.", @@ -42,6 +43,13 @@ "Database host" => "שרת בסיס נתונים", "Finish setup" => "סיום התקנה", "web services under your control" => "שירותי רשת בשליטתך", +"Sunday" => "יום ראשון", +"Monday" => "יום שני", +"Tuesday" => "יום שלישי", +"Wednesday" => "יום רביעי", +"Thursday" => "יום חמישי", +"Friday" => "יום שישי", +"Saturday" => "שבת", "January" => "ינואר", "February" => "פברואר", "March" => "מרץ", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 30030196b72..f9a4268dde9 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -64,6 +64,13 @@ "Database host" => "Poslužitelj baze podataka", "Finish setup" => "Završi postavljanje", "web services under your control" => "web usluge pod vašom kontrolom", +"Sunday" => "nedelja", +"Monday" => "ponedeljak", +"Tuesday" => "utorak", +"Wednesday" => "srijeda", +"Thursday" => "četvrtak", +"Friday" => "petak", +"Saturday" => "subota", "January" => "Siječanj", "February" => "Veljača", "March" => "Ožujak", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 54d480d235f..377f57bc321 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -10,6 +10,8 @@ "No categories selected for deletion." => "Nincs törlésre jelölt kategória", "Error" => "Hiba", "Password" => "Jelszó", +"Unshare" => "Nem oszt meg", +"create" => "létrehozás", "ownCloud password reset" => "ownCloud jelszó-visszaállítás", "Use the following link to reset your password: {link}" => "Használja az alábbi linket a jelszó-visszaállításhoz: {link}", "You will receive a link to reset your password via Email." => "Egy e-mailben kap értesítést a jelszóváltoztatás módjáról.", @@ -30,6 +32,7 @@ "Cloud not found" => "A felhő nem található", "Edit categories" => "Kategóriák szerkesztése", "Add" => "Hozzáadás", +"Security Warning" => "Biztonsági figyelmeztetés", "Create an admin account" => "Rendszergazdafiók létrehozása", "Advanced" => "Haladó", "Data folder" => "Adatkönyvtár", @@ -41,6 +44,13 @@ "Database host" => "Adatbázis szerver", "Finish setup" => "Beállítás befejezése", "web services under your control" => "webszolgáltatások az irányításod alatt", +"Sunday" => "Vasárnap", +"Monday" => "Hétfő", +"Tuesday" => "Kedd", +"Wednesday" => "Szerda", +"Thursday" => "Csütörtök", +"Friday" => "Péntek", +"Saturday" => "Szombat", "January" => "Január", "February" => "Február", "March" => "Március", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 862c5eb0a29..479b1a424c2 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -1,6 +1,7 @@ "Iste categoria jam existe:", "Settings" => "Configurationes", +"Cancel" => "Cancellar", "Password" => "Contrasigno", "ownCloud password reset" => "Reinitialisation del contrasigno de ownCLoud", "Requested" => "Requestate", @@ -30,6 +31,25 @@ "Database name" => "Nomine de base de datos", "Database host" => "Hospite de base de datos", "web services under your control" => "servicios web sub tu controlo", +"Sunday" => "Dominica", +"Monday" => "Lunedi", +"Tuesday" => "Martedi", +"Wednesday" => "Mercuridi", +"Thursday" => "Jovedi", +"Friday" => "Venerdi", +"Saturday" => "Sabbato", +"January" => "januario", +"February" => "Februario", +"March" => "Martio", +"April" => "April", +"May" => "Mai", +"June" => "Junio", +"July" => "Julio", +"August" => "Augusto", +"September" => "Septembre", +"October" => "Octobre", +"November" => "Novembre", +"December" => "Decembre", "Log out" => "Clauder le session", "Lost your password?" => "Tu perdeva le contrasigno?", "remember" => "memora", diff --git a/core/l10n/id.php b/core/l10n/id.php index bd79174d13e..f7331656736 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -69,6 +69,13 @@ "Database host" => "Host database", "Finish setup" => "Selesaikan instalasi", "web services under your control" => "web service dibawah kontrol anda", +"Sunday" => "minggu", +"Monday" => "senin", +"Tuesday" => "selasa", +"Wednesday" => "rabu", +"Thursday" => "kamis", +"Friday" => "jumat", +"Saturday" => "sabtu", "January" => "Januari", "February" => "Februari", "March" => "Maret", diff --git a/core/l10n/it.php b/core/l10n/it.php index b28fac71632..f85e7f89c42 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -71,6 +71,13 @@ "Database host" => "Host del database", "Finish setup" => "Termina la configurazione", "web services under your control" => "servizi web nelle tue mani", +"Sunday" => "Domenica", +"Monday" => "Lunedì", +"Tuesday" => "Martedì", +"Wednesday" => "Mercoledì", +"Thursday" => "Giovedì", +"Friday" => "Venerdì", +"Saturday" => "Sabato", "January" => "Gennaio", "February" => "Febbraio", "March" => "Marzo", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 1b1acbe7154..a6b533a65d3 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -71,6 +71,13 @@ "Database host" => "データベースのホスト名", "Finish setup" => "セットアップを完了します", "web services under your control" => "管理下にあるウェブサービス", +"Sunday" => "日", +"Monday" => "月", +"Tuesday" => "火", +"Wednesday" => "水", +"Thursday" => "木", +"Friday" => "金", +"Saturday" => "土", "January" => "1月", "February" => "2月", "March" => "3月", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index cdb535506ee..7e43fa322d7 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -67,6 +67,13 @@ "Database host" => "ბაზის ჰოსტი", "Finish setup" => "კონფიგურაციის დასრულება", "web services under your control" => "თქვენი კონტროლის ქვეშ მყოფი ვებ სერვისები", +"Sunday" => "კვირა", +"Monday" => "ორშაბათი", +"Tuesday" => "სამშაბათი", +"Wednesday" => "ოთხშაბათი", +"Thursday" => "ხუთშაბათი", +"Friday" => "პარასკევი", +"Saturday" => "შაბათი", "January" => "იანვარი", "February" => "თებერვალი", "March" => "მარტი", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 1d2c845858f..fd3fd68f3bb 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -10,6 +10,7 @@ "No categories selected for deletion." => "삭제 카테고리를 선택하지 않았습니다.", "Error" => "에러", "Password" => "암호", +"create" => "만들기", "ownCloud password reset" => "ownCloud 비밀번호 재설정", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 초기화할 수 있습니다: {link}", "You will receive a link to reset your password via Email." => "전자 우편으로 암호 재설정 링크를 보냈습니다.", @@ -30,6 +31,7 @@ "Cloud not found" => "클라우드를 찾을 수 없습니다", "Edit categories" => "카테고리 편집", "Add" => "추가", +"Security Warning" => "보안 경고", "Create an admin account" => "관리자 계정을 만드십시오", "Advanced" => "고급", "Data folder" => "자료 폴더", @@ -41,6 +43,13 @@ "Database host" => "데이터베이스 호스트", "Finish setup" => "설치 완료", "web services under your control" => "내가 관리하는 웹 서비스", +"Sunday" => "일요일", +"Monday" => "월요일", +"Tuesday" => "화요일", +"Wednesday" => "수요일", +"Thursday" => "목요일", +"Friday" => "금요일", +"Saturday" => "토요일", "January" => "1월", "February" => "2월", "March" => "3월", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index 8eb72e588d0..3c223bad024 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -1,6 +1,8 @@ "ده‌ستكاری", +"Error" => "هه‌ڵه", "Password" => "وشەی تێپەربو", +"Username" => "ناوی به‌کارهێنه‌ر", "New password" => "وشەی نهێنی نوێ", "Reset password" => "دووباره‌ كردنه‌وه‌ی وشه‌ی نهێنی", "Users" => "به‌كارهێنه‌ر", @@ -8,6 +10,7 @@ "Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", "Help" => "یارمەتی", "Cloud not found" => "هیچ نه‌دۆزرایه‌وه‌", +"Add" => "زیادکردن", "Advanced" => "هه‌ڵبژاردنی پیشكه‌وتوو", "Data folder" => "زانیاری فۆڵده‌ر", "Database user" => "به‌كارهێنه‌ری داتابه‌یس", @@ -15,6 +18,7 @@ "Database name" => "ناوی داتابه‌یس", "Database host" => "هۆستی داتابه‌یس", "Finish setup" => "كۆتایی هات ده‌ستكاریه‌كان", +"web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه", "Log out" => "چوونەدەرەوە", "prev" => "پێشتر", "next" => "دواتر" diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 12f0c365a57..e09ab577932 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -10,6 +10,7 @@ "No categories selected for deletion." => "Keng Kategorien ausgewielt fir ze läschen.", "Error" => "Fehler", "Password" => "Passwuert", +"create" => "erstellen", "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.", @@ -30,6 +31,7 @@ "Cloud not found" => "Cloud net fonnt", "Edit categories" => "Kategorien editéieren", "Add" => "Bäisetzen", +"Security Warning" => "Sécherheets Warnung", "Create an admin account" => "En Admin Account uleeën", "Advanced" => "Advanced", "Data folder" => "Daten Dossier", @@ -42,6 +44,13 @@ "Database host" => "Datebank Server", "Finish setup" => "Installatioun ofschléissen", "web services under your control" => "Web Servicer ënnert denger Kontroll", +"Sunday" => "Sonndes", +"Monday" => "Méindes", +"Tuesday" => "Dënschdes", +"Wednesday" => "Mëttwoch", +"Thursday" => "Donneschdes", +"Friday" => "Freides", +"Saturday" => "Samschdes", "January" => "Januar", "February" => "Februar", "March" => "Mäerz", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index f2b7b635b23..5a5a22afe23 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -71,6 +71,13 @@ "Database host" => "Duomenų bazės serveris", "Finish setup" => "Baigti diegimą", "web services under your control" => "jūsų valdomos web paslaugos", +"Sunday" => "Sekmadienis", +"Monday" => "Pirmadienis", +"Tuesday" => "Antradienis", +"Wednesday" => "Trečiadienis", +"Thursday" => "Ketvirtadienis", +"Friday" => "Penktadienis", +"Saturday" => "Šeštadienis", "January" => "Sausis", "February" => "Vasaris", "March" => "Kovas", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 7825d5aec1e..6a813037ad4 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -1,6 +1,8 @@ "Iestatījumi", +"Error" => "Kļūme", "Password" => "Parole", +"Unshare" => "Pārtraukt līdzdalīšanu", "Use the following link to reset your password: {link}" => "Izmantojiet šo linku lai mainītu paroli", "You will receive a link to reset your password via Email." => "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli.", "Requested" => "Obligāts", @@ -17,6 +19,7 @@ "Admin" => "Administrators", "Help" => "Palīdzība", "Cloud not found" => "Mākonis netika atrasts", +"Security Warning" => "Brīdinājums par drošību", "Data folder" => "Datu mape", "Configure the database" => "Nokonfigurēt datubāzi", "will be used" => "tiks izmantots", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 0afc2eb8a8f..3612a735c68 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -10,6 +10,7 @@ "No categories selected for deletion." => "Не е одбрана категорија за бришење.", "Error" => "Грешка", "Password" => "Лозинка", +"create" => "креирај", "ownCloud password reset" => "ресетирање на лозинка за ownCloud", "Use the following link to reset your password: {link}" => "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}", "You will receive a link to reset your password via Email." => "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка.", @@ -41,6 +42,13 @@ "Database host" => "Сервер со база", "Finish setup" => "Заврши го подесувањето", "web services under your control" => "веб сервиси под Ваша контрола", +"Sunday" => "Недела", +"Monday" => "Понеделник", +"Tuesday" => "Вторник", +"Wednesday" => "Среда", +"Thursday" => "Четврток", +"Friday" => "Петок", +"Saturday" => "Сабота", "January" => "Јануари", "February" => "Февруари", "March" => "Март", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 1e073dd405b..624248a7dbc 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -30,6 +30,7 @@ "Cloud not found" => "Awan tidak dijumpai", "Edit categories" => "Edit kategori", "Add" => "Tambah", +"Security Warning" => "Amaran keselamatan", "Create an admin account" => "buat akaun admin", "Advanced" => "Maju", "Data folder" => "Fail data", @@ -41,6 +42,13 @@ "Database host" => "Hos pangkalan data", "Finish setup" => "Setup selesai", "web services under your control" => "Perkhidmatan web di bawah kawalan anda", +"Sunday" => "Ahad", +"Monday" => "Isnin", +"Tuesday" => "Selasa", +"Wednesday" => "Rabu", +"Thursday" => "Khamis", +"Friday" => "Jumaat", +"Saturday" => "Sabtu", "January" => "Januari", "February" => "Februari", "March" => "Mac", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index b241a2a4767..17e1fd03d9f 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -10,6 +10,8 @@ "No categories selected for deletion." => "Ingen kategorier merket for sletting.", "Error" => "Feil", "Password" => "Passord", +"Unshare" => "Avslutt deling", +"create" => "opprett", "ownCloud password reset" => "Tilbakestill ownCloud passord", "Use the following link to reset your password: {link}" => "Bruk følgende lenke for å tilbakestille passordet ditt: {link}", "You will receive a link to reset your password via Email." => "Du burde motta detaljer om å tilbakestille passordet ditt via epost.", @@ -30,6 +32,7 @@ "Cloud not found" => "Sky ikke funnet", "Edit categories" => "Rediger kategorier", "Add" => "Legg til", +"Security Warning" => "Sikkerhetsadvarsel", "Create an admin account" => "opprett en administrator-konto", "Advanced" => "Avansert", "Data folder" => "Datamappe", @@ -38,9 +41,17 @@ "Database user" => "Databasebruker", "Database password" => "Databasepassord", "Database name" => "Databasenavn", +"Database tablespace" => "Database tabellområde", "Database host" => "Databasevert", "Finish setup" => "Fullfør oppsetting", "web services under your control" => "nettjenester under din kontroll", +"Sunday" => "Søndag", +"Monday" => "Mandag", +"Tuesday" => "Tirsdag", +"Wednesday" => "Onsdag", +"Thursday" => "Torsdag", +"Friday" => "Fredag", +"Saturday" => "Lørdag", "January" => "Januar", "February" => "Februar", "March" => "Mars", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 8b06cd92cf7..8f452cc15a9 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -71,6 +71,13 @@ "Database host" => "Database server", "Finish setup" => "Installatie afronden", "web services under your control" => "Webdiensten in eigen beheer", +"Sunday" => "Zondag", +"Monday" => "Maandag", +"Tuesday" => "Dinsdag", +"Wednesday" => "Woensdag", +"Thursday" => "Donderdag", +"Friday" => "Vrijdag", +"Saturday" => "Zaterdag", "January" => "januari", "February" => "februari", "March" => "maart", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 147afb35fbd..7714f99e8a2 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -1,5 +1,7 @@ "Innstillingar", +"Cancel" => "Kanseller", +"Error" => "Feil", "Password" => "Passord", "Use the following link to reset your password: {link}" => "Bruk føljane link til å tilbakestille passordet ditt: {link}", "You will receive a link to reset your password via Email." => "Du vil få ei lenkje for å nullstilla passordet via epost.", @@ -17,6 +19,7 @@ "Admin" => "Administrer", "Help" => "Hjelp", "Cloud not found" => "Fann ikkje skyen", +"Add" => "Legg til", "Create an admin account" => "Lag ein admin-konto", "Advanced" => "Avansert", "Data folder" => "Datamappe", @@ -28,6 +31,25 @@ "Database host" => "Databasetenar", "Finish setup" => "Fullfør oppsettet", "web services under your control" => "Vev tjenester under din kontroll", +"Sunday" => "Søndag", +"Monday" => "Måndag", +"Tuesday" => "Tysdag", +"Wednesday" => "Onsdag", +"Thursday" => "Torsdag", +"Friday" => "Fredag", +"Saturday" => "Laurdag", +"January" => "Januar", +"February" => "Februar", +"March" => "Mars", +"April" => "April", +"May" => "Mai", +"June" => "Juni", +"July" => "Juli", +"August" => "August", +"September" => "September", +"October" => "Oktober", +"November" => "November", +"December" => "Desember", "Log out" => "Logg ut", "Lost your password?" => "Gløymt passordet?", "remember" => "hugs", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 2a74e432eba..28d5c25ac4d 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -52,6 +52,7 @@ "Cloud not found" => "Nívol pas trobada", "Edit categories" => "Edita categorias", "Add" => "Ajusta", +"Security Warning" => "Avertiment de securitat", "Create an admin account" => "Crea un compte admin", "Advanced" => "Avançat", "Data folder" => "Dorsièr de donadas", @@ -64,6 +65,13 @@ "Database host" => "Òste de basa de donadas", "Finish setup" => "Configuracion acabada", "web services under your control" => "Services web jos ton contraròtle", +"Sunday" => "Dimenge", +"Monday" => "Diluns", +"Tuesday" => "Dimarç", +"Wednesday" => "Dimecres", +"Thursday" => "Dijòus", +"Friday" => "Divendres", +"Saturday" => "Dissabte", "January" => "Genièr", "February" => "Febrièr", "March" => "Març", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 7d56acd9278..ed6978a2dc8 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -71,6 +71,13 @@ "Database host" => "Komputer bazy danych", "Finish setup" => "Zakończ konfigurowanie", "web services under your control" => "usługi internetowe pod kontrolą", +"Sunday" => "Niedziela", +"Monday" => "Poniedziałek", +"Tuesday" => "Wtorek", +"Wednesday" => "Środa", +"Thursday" => "Czwartek", +"Friday" => "Piątek", +"Saturday" => "Sobota", "January" => "Styczeń", "February" => "Luty", "March" => "Marzec", diff --git a/core/l10n/pl_PL.php b/core/l10n/pl_PL.php new file mode 100644 index 00000000000..77febeea3e5 --- /dev/null +++ b/core/l10n/pl_PL.php @@ -0,0 +1,4 @@ + "Ustawienia", +"Username" => "Nazwa użytkownika" +); diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index d1b8bd01197..bbe016e228e 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -55,6 +55,7 @@ "Security Warning" => "Aviso de Segurança", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nenhum gerador de número aleatório de segurança disponível. Habilite a extensão OpenSSL do PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sem um gerador de número aleatório de segurança, um invasor pode ser capaz de prever os símbolos de redefinição de senhas e assumir sua conta.", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Seu diretório de dados e seus arquivos estão, provavelmente, acessíveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessível ou que você mova o diretório de dados para fora da raiz do servidor web.", "Create an admin account" => "Criar uma conta de administrador", "Advanced" => "Avançado", "Data folder" => "Pasta de dados", @@ -67,6 +68,13 @@ "Database host" => "Banco de dados do host", "Finish setup" => "Concluir configuração", "web services under your control" => "web services sob seu controle", +"Sunday" => "Domingo", +"Monday" => "Segunda-feira", +"Tuesday" => "Terça-feira", +"Wednesday" => "Quarta-feira", +"Thursday" => "Quinta-feira", +"Friday" => "Sexta-feira", +"Saturday" => "Sábado", "January" => "Janeiro", "February" => "Fevereiro", "March" => "Março", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index f8ea7f5ae73..a2212ccfc63 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -53,6 +53,7 @@ "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", +"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." => "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web.", "Create an admin account" => "Criar uma conta administrativa", "Advanced" => "Avançado", "Data folder" => "Pasta de dados", @@ -65,6 +66,13 @@ "Database host" => "Host da base de dados", "Finish setup" => "Acabar instalação", "web services under your control" => "serviços web sob o seu controlo", +"Sunday" => "Domingo", +"Monday" => "Segunda", +"Tuesday" => "Terça", +"Wednesday" => "Quarta", +"Thursday" => "Quinta", +"Friday" => "Sexta", +"Saturday" => "Sábado", "January" => "Janeiro", "February" => "Fevereiro", "March" => "Março", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index e5ba855daf3..c7cba8aad64 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -51,6 +51,8 @@ "Cloud not found" => "Nu s-a găsit", "Edit categories" => "Editează categoriile", "Add" => "Adaugă", +"Security Warning" => "Avertisment de securitate", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.", "Create an admin account" => "Crează un cont de administrator", "Advanced" => "Avansat", "Data folder" => "Director date", @@ -63,6 +65,13 @@ "Database host" => "Bază date", "Finish setup" => "Finalizează instalarea", "web services under your control" => "servicii web controlate de tine", +"Sunday" => "Duminică", +"Monday" => "Luni", +"Tuesday" => "Marți", +"Wednesday" => "Miercuri", +"Thursday" => "Joi", +"Friday" => "Vineri", +"Saturday" => "Sâmbătă", "January" => "Ianuarie", "February" => "Februarie", "March" => "Martie", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index efd3973531a..b68c5367aa3 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -71,6 +71,13 @@ "Database host" => "Хост базы данных", "Finish setup" => "Завершить установку", "web services under your control" => "Сетевые службы под твоим контролем", +"Sunday" => "Воскресенье", +"Monday" => "Понедельник", +"Tuesday" => "Вторник", +"Wednesday" => "Среда", +"Thursday" => "Четверг", +"Friday" => "Пятница", +"Saturday" => "Суббота", "January" => "Январь", "February" => "Февраль", "March" => "Март", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index a47276be535..065803eeb4d 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -71,6 +71,13 @@ "Database host" => "Сервер базы данных", "Finish setup" => "Завершение настройки", "web services under your control" => "веб-сервисы под Вашим контролем", +"Sunday" => "Воскресенье", +"Monday" => "Понедельник", +"Tuesday" => "Вторник", +"Wednesday" => "Среда", +"Thursday" => "Четверг", +"Friday" => "Пятница", +"Saturday" => "Суббота", "January" => "Январь", "February" => "Февраль", "March" => "Март", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index cd2ce07c493..a57c8b5854d 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -6,13 +6,27 @@ "No" => "නැහැ", "Yes" => "ඔව්", "Ok" => "හරි", +"No categories selected for deletion." => "මකා දැමීම සඳහා ප්‍රවර්ගයන් තෝරා නොමැත.", +"Error" => "දෝෂයක්", "Password" => "මුර පදය ", +"Username" => "පරිශීලක නම", "To login page" => "පිවිසුම් පිටුවට", "New password" => "නව මුර පදයක්", +"Personal" => "පෞද්ගලික", +"Users" => "පරිශීලකයන්", "Apps" => "යෙදුම්", +"Admin" => "පරිපාලක", "Help" => "උදව්", "Add" => "එක් කරන්න", "Data folder" => "දත්ත ෆෝල්ඩරය", +"web services under your control" => "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්", +"Sunday" => "ඉරිදා", +"Monday" => "සඳුදා", +"Tuesday" => "අඟහරුවාදා", +"Wednesday" => "බදාදා", +"Thursday" => "බ්‍රහස්පතින්දා", +"Friday" => "සිකුරාදා", +"Saturday" => "සෙනසුරාදා", "January" => "ජනවාරි", "February" => "පෙබරවාරි", "March" => "මාර්තු", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 97aa369487e..b5676befd7b 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -51,6 +51,7 @@ "Edit categories" => "Úprava kategórií", "Add" => "Pridať", "Security Warning" => "Bezpečnostné varovanie", +"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áš priečinok s dátami a vaše súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inštaláciou ownCloud nespĺňa úlohu. Dôrazne vám doporučujeme nakonfigurovať webserver takým spôsobom, aby dáta v priečinku neboli verejné, alebo presuňte dáta mimo štruktúry priečinkov webservera.", "Create an admin account" => "Vytvoriť administrátorský účet", "Advanced" => "Pokročilé", "Data folder" => "Priečinok dát", @@ -62,6 +63,13 @@ "Database host" => "Server databázy", "Finish setup" => "Dokončiť inštaláciu", "web services under your control" => "webové služby pod vašou kontrolou", +"Sunday" => "Nedeľa", +"Monday" => "Pondelok", +"Tuesday" => "Utorok", +"Wednesday" => "Streda", +"Thursday" => "Štvrtok", +"Friday" => "Piatok", +"Saturday" => "Sobota", "January" => "Január", "February" => "Február", "March" => "Marec", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index d1b3149c116..2c698d87fca 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -53,6 +53,7 @@ "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", "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." => "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud namreč ni omogočena. Močno priporočamo nastavitev spletnega strežnika tako, da mapa podatkov ne bo javno dostopna ali pa, da jo prestavite ven iz korenske mape spletnega strežnika.", "Create an admin account" => "Ustvari skrbniški račun", "Advanced" => "Napredne možnosti", "Data folder" => "Mapa s podatki", @@ -65,6 +66,13 @@ "Database host" => "Gostitelj podatkovne zbirke", "Finish setup" => "Dokončaj namestitev", "web services under your control" => "spletne storitve pod vašim nadzorom", +"Sunday" => "nedelja", +"Monday" => "ponedeljek", +"Tuesday" => "torek", +"Wednesday" => "sreda", +"Thursday" => "četrtek", +"Friday" => "petek", +"Saturday" => "sobota", "January" => "januar", "February" => "februar", "March" => "marec", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index dca207441fc..a8aa0d86c11 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -1,5 +1,6 @@ "Подешавања", +"Cancel" => "Откажи", "Password" => "Лозинка", "Use the following link to reset your password: {link}" => "Овом везом ресетујте своју лозинку: {link}", "You will receive a link to reset your password via Email." => "Добићете везу за ресетовање лозинке путем е-поште.", @@ -17,6 +18,7 @@ "Admin" => "Аднинистрација", "Help" => "Помоћ", "Cloud not found" => "Облак није нађен", +"Add" => "Додај", "Create an admin account" => "Направи административни налог", "Advanced" => "Напредно", "Data folder" => "Фацикла података", @@ -28,6 +30,25 @@ "Database host" => "Домаћин базе", "Finish setup" => "Заврши подешавање", "web services under your control" => "веб сервиси под контролом", +"Sunday" => "Недеља", +"Monday" => "Понедељак", +"Tuesday" => "Уторак", +"Wednesday" => "Среда", +"Thursday" => "Четвртак", +"Friday" => "Петак", +"Saturday" => "Субота", +"January" => "Јануар", +"February" => "Фебруар", +"March" => "Март", +"April" => "Април", +"May" => "Мај", +"June" => "Јун", +"July" => "Јул", +"August" => "Август", +"September" => "Септембар", +"October" => "Октобар", +"November" => "Новембар", +"December" => "Децембар", "Log out" => "Одјава", "Lost your password?" => "Изгубили сте лозинку?", "remember" => "упамти", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index c1d8a96073a..71e8bf35d3b 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -1,5 +1,6 @@ "Podešavanja", +"Cancel" => "Otkaži", "Password" => "Lozinka", "You will receive a link to reset your password via Email." => "Dobićete vezu za resetovanje lozinke putem e-pošte.", "Requested" => "Zahtevano", @@ -25,6 +26,25 @@ "Database name" => "Ime baze", "Database host" => "Domaćin baze", "Finish setup" => "Završi podešavanje", +"Sunday" => "Nedelja", +"Monday" => "Ponedeljak", +"Tuesday" => "Utorak", +"Wednesday" => "Sreda", +"Thursday" => "Četvrtak", +"Friday" => "Petak", +"Saturday" => "Subota", +"January" => "Januar", +"February" => "Februar", +"March" => "Mart", +"April" => "April", +"May" => "Maj", +"June" => "Jun", +"July" => "Jul", +"August" => "Avgust", +"September" => "Septembar", +"October" => "Oktobar", +"November" => "Novembar", +"December" => "Decembar", "Log out" => "Odjava", "Lost your password?" => "Izgubili ste lozinku?", "remember" => "upamti", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 2540a8e912d..68acd37912e 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -71,6 +71,13 @@ "Database host" => "Databasserver", "Finish setup" => "Avsluta installation", "web services under your control" => "webbtjänster under din kontroll", +"Sunday" => "Söndag", +"Monday" => "Måndag", +"Tuesday" => "Tisdag", +"Wednesday" => "Onsdag", +"Thursday" => "Torsdag", +"Friday" => "Fredag", +"Saturday" => "Lördag", "January" => "Januari", "February" => "Februari", "March" => "Mars", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 6d0e756e1ee..4fe2f966909 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -71,6 +71,13 @@ "Database host" => "தரவுத்தள ஓம்புனர்", "Finish setup" => "அமைப்பை முடிக்க", "web services under your control" => "உங்கள் கட்டுப்பாட்டின் கீழ் இணைய சேவைகள்", +"Sunday" => "ஞாயிற்றுக்கிழமை", +"Monday" => "திங்கட்கிழமை", +"Tuesday" => "செவ்வாய்க்கிழமை", +"Wednesday" => "புதன்கிழமை", +"Thursday" => "வியாழக்கிழமை", +"Friday" => "வெள்ளிக்கிழமை", +"Saturday" => "சனிக்கிழமை", "January" => "தை", "February" => "மாசி", "March" => "பங்குனி", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 8f28c2cc8af..75dade377eb 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -52,6 +52,8 @@ "Cloud not found" => "ไม่พบ Cloud", "Edit categories" => "แก้ไขหมวดหมู่", "Add" => "เพิ่ม", +"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 ของเว็บเซิร์ฟเวอร์แล้ว", "Create an admin account" => "สร้าง บัญชีผู้ดูแลระบบ", "Advanced" => "ขั้นสูง", "Data folder" => "โฟลเดอร์เก็บข้อมูล", @@ -64,6 +66,13 @@ "Database host" => "Database host", "Finish setup" => "ติดตั้งเรียบร้อยแล้ว", "web services under your control" => "web services under your control", +"Sunday" => "วันอาทิตย์", +"Monday" => "วันจันทร์", +"Tuesday" => "วันอังคาร", +"Wednesday" => "วันพุธ", +"Thursday" => "วันพฤหัสบดี", +"Friday" => "วันศุกร์", +"Saturday" => "วันเสาร์", "January" => "มกราคม", "February" => "กุมภาพันธ์", "March" => "มีนาคม", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 64eb3c484c5..d61821f7c41 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -10,6 +10,8 @@ "No categories selected for deletion." => "Silmek için bir kategori seçilmedi", "Error" => "Hata", "Password" => "Parola", +"Unshare" => "Paylaşılmayan", +"create" => "oluştur", "ownCloud password reset" => "ownCloud parola sıfırlama", "Use the following link to reset your password: {link}" => "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}", "You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek.", @@ -30,6 +32,7 @@ "Cloud not found" => "Bulut bulunamadı", "Edit categories" => "Kategorileri düzenle", "Add" => "Ekle", +"Security Warning" => "Güvenlik Uyarisi", "Create an admin account" => "Bir yönetici hesabı oluşturun", "Advanced" => "Gelişmiş", "Data folder" => "Veri klasörü", @@ -42,6 +45,13 @@ "Database host" => "Veritabanı sunucusu", "Finish setup" => "Kurulumu tamamla", "web services under your control" => "kontrolünüzdeki web servisleri", +"Sunday" => "Pazar", +"Monday" => "Pazartesi", +"Tuesday" => "Salı", +"Wednesday" => "Çarşamba", +"Thursday" => "Perşembe", +"Friday" => "Cuma", +"Saturday" => "Cumartesi", "January" => "Ocak", "February" => "Şubat", "March" => "Mart", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 659457ffec7..17a68987bd5 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -5,6 +5,8 @@ "Yes" => "Так", "Error" => "Помилка", "Password" => "Пароль", +"Unshare" => "Заборонити доступ", +"create" => "створити", "You will receive a link to reset your password via Email." => "Ви отримаєте посилання для скидання вашого паролю на e-mail.", "Username" => "Ім'я користувача", "Your password was reset" => "Ваш пароль був скинутий", @@ -13,6 +15,7 @@ "Reset password" => "Скинути пароль", "Personal" => "Особисте", "Users" => "Користувачі", +"Apps" => "Додатки", "Admin" => "Адміністратор", "Help" => "Допомога", "Add" => "Додати", @@ -23,6 +26,13 @@ "Database name" => "Назва бази даних", "Finish setup" => "Завершити налаштування", "web services under your control" => "веб-сервіс під вашим контролем", +"Sunday" => "Неділя", +"Monday" => "Понеділок", +"Tuesday" => "Вівторок", +"Wednesday" => "Середа", +"Thursday" => "Четвер", +"Friday" => "П'ятниця", +"Saturday" => "Субота", "January" => "Січень", "February" => "Лютий", "March" => "Березень", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index bcb8c958fba..59e9d8add5c 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -49,6 +49,8 @@ "Cloud not found" => "Không tìm thấy Clound", "Edit categories" => "Sửa thể loại", "Add" => "Thêm", +"Security Warning" => "Cảnh bảo bảo mật", +"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." => "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ internet. Tập tin .htaccess của ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ webserver của bạn để thư mục dữ liệu không còn bị truy cập hoặc bạn di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ.", "Create an admin account" => "Tạo một tài khoản quản trị", "Advanced" => "Nâng cao", "Data folder" => "Thư mục dữ liệu", @@ -60,6 +62,13 @@ "Database host" => "Database host", "Finish setup" => "Cài đặt hoàn tất", "web services under your control" => "các dịch vụ web dưới sự kiểm soát của bạn", +"Sunday" => "Chủ nhật", +"Monday" => "Thứ 2", +"Tuesday" => "Thứ 3", +"Wednesday" => "Thứ 4", +"Thursday" => "Thứ 5", +"Friday" => "Thứ ", +"Saturday" => "Thứ 7", "January" => "Tháng 1", "February" => "Tháng 2", "March" => "Tháng 3", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 576f3ab0940..cf28e77ef5d 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -68,6 +68,13 @@ "Database host" => "数据库主机", "Finish setup" => "完成安装", "web services under your control" => "你控制下的网络服务", +"Sunday" => "星期天", +"Monday" => "星期一", +"Tuesday" => "星期二", +"Wednesday" => "星期三", +"Thursday" => "星期四", +"Friday" => "星期五", +"Saturday" => "星期六", "January" => "一月", "February" => "二月", "March" => "三月", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index ed428a985ec..c2246437a8a 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -24,6 +24,7 @@ "Share via email:" => "通过Email共享", "No people found" => "未找到此人", "Resharing is not allowed" => "不允许二次共享", +"Shared in {item} with {user}" => "在{item} 与 {user}共享。", "Unshare" => "取消共享", "can edit" => "可以修改", "access control" => "访问控制", @@ -56,6 +57,7 @@ "Add" => "添加", "Security Warning" => "安全警告", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "随机数生成器无效,请启用PHP的OpenSSL扩展", +"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服务器根目录以外。", "Create an admin account" => "创建管理员账号", "Advanced" => "高级", "Data folder" => "数据目录", @@ -68,6 +70,13 @@ "Database host" => "数据库主机", "Finish setup" => "安装完成", "web services under your control" => "由您掌控的网络服务", +"Sunday" => "星期日", +"Monday" => "星期一", +"Tuesday" => "星期二", +"Wednesday" => "星期三", +"Thursday" => "星期四", +"Friday" => "星期五", +"Saturday" => "星期六", "January" => "一月", "February" => "二月", "March" => "三月", @@ -81,6 +90,9 @@ "November" => "十一月", "December" => "十二月", "Log out" => "注销", +"Automatic logon rejected!" => "自动登录被拒绝!", +"If you did not change your password recently, your account may be compromised!" => "如果您没有最近修改您的密码,您的帐户可能会受到影响!", +"Please change your password to secure your account again." => "请修改您的密码,以保护您的账户安全。", "Lost your password?" => "忘记密码?", "remember" => "记住", "Log in" => "登录", @@ -88,5 +100,6 @@ "prev" => "上一页", "next" => "下一页", "Security Warning!" => "安全警告!", +"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "请验证您的密码。
出于安全考虑,你可能偶尔会被要求再次输入密码。", "Verify" => "验证" ); diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index a955a1e05ca..a507a71edc6 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -10,6 +10,8 @@ "No categories selected for deletion." => "沒選擇要刪除的分類", "Error" => "錯誤", "Password" => "密碼", +"Unshare" => "取消共享", +"create" => "建立", "ownCloud password reset" => "ownCloud 密碼重設", "Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: (聯結) ", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱", @@ -30,6 +32,7 @@ "Cloud not found" => "未發現雲", "Edit categories" => "編輯分類", "Add" => "添加", +"Security Warning" => "安全性警告", "Create an admin account" => "建立一個管理者帳號", "Advanced" => "進階", "Data folder" => "資料夾", @@ -42,6 +45,13 @@ "Database host" => "資料庫主機", "Finish setup" => "完成設定", "web services under your control" => "網路服務已在你控制", +"Sunday" => "週日", +"Monday" => "週一", +"Tuesday" => "週二", +"Wednesday" => "週三", +"Thursday" => "週四", +"Friday" => "週五", +"Saturday" => "週六", "January" => "一月", "February" => "二月", "March" => "三月", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index b83ecdfbdde..428d99fb2ba 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -40,7 +40,7 @@ msgstr "" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "الغاء" #: js/oc-dialogs.js:159 msgid "No" @@ -239,11 +239,11 @@ msgstr "لم يتم إيجاد" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "" +msgstr "عدل الفئات" #: templates/edit_categories_dialog.php:14 msgid "Add" -msgstr "" +msgstr "أدخل" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" @@ -321,79 +321,79 @@ msgstr "خدمات الوب تحت تصرفك" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "الاحد" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "الأثنين" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "الثلاثاء" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "الاربعاء" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "الخميس" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "الجمعه" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "السبت" #: templates/layout.user.php:18 msgid "January" -msgstr "" +msgstr "كانون الثاني" #: templates/layout.user.php:18 msgid "February" -msgstr "" +msgstr "شباط" #: templates/layout.user.php:18 msgid "March" -msgstr "" +msgstr "آذار" #: templates/layout.user.php:18 msgid "April" -msgstr "" +msgstr "نيسان" #: templates/layout.user.php:18 msgid "May" -msgstr "" +msgstr "أيار" #: templates/layout.user.php:18 msgid "June" -msgstr "" +msgstr "حزيران" #: templates/layout.user.php:18 msgid "July" -msgstr "" +msgstr "تموز" #: templates/layout.user.php:18 msgid "August" -msgstr "" +msgstr "آب" #: templates/layout.user.php:18 msgid "September" -msgstr "" +msgstr "أيلول" #: templates/layout.user.php:18 msgid "October" -msgstr "" +msgstr "تشرين الاول" #: templates/layout.user.php:18 msgid "November" -msgstr "" +msgstr "تشرين الثاني" #: templates/layout.user.php:18 msgid "December" -msgstr "" +msgstr "كانون الاول" #: templates/layout.user.php:38 msgid "Log out" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 83c0a60fb77..cabbdbdb2cf 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -19,19 +19,19 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "المساعدة" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "شخصي" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "تعديلات" #: app.php:302 msgid "Users" -msgstr "" +msgstr "المستخدمين" #: app.php:309 msgid "Apps" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "لم يتم التأكد من الشخصية بنجاح" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,7 +75,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "معلومات إضافية" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 93b5efaa8bc..6b27f8227be 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -324,31 +324,31 @@ msgstr "" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Неделя" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Понеделник" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Вторник" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Сряда" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Четвъртък" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Петък" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Събота" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 3a9bc4adb91..923c20e0d1b 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -23,7 +23,7 @@ msgstr "" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Лично" #: app.php:297 msgid "Settings" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Проблем с идентификацията" #: json.php:51 msgid "Token expired. Please reload page." diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 16911aa7e84..676309a37f7 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -322,31 +322,31 @@ msgstr "controleu els vostres serveis web" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Diumenge" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Dilluns" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Dimarts" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Dimecres" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Dijous" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Divendres" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Dissabte" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 29cd9b55c1e..dddecdd61f2 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Fitxers" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Text" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 05905ff77cd..849cd942970 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -324,31 +324,31 @@ msgstr "webové služby pod Vaší kontrolou" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Neděle" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Pondělí" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Úterý" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Středa" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Čtvrtek" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Pátek" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sobota" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 857bed4b6ef..fed3e05a038 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 13:34+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" @@ -73,15 +73,15 @@ msgstr "Token vypršel. Obnovte prosím stránku." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Soubory" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Text" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Obrázky" #: template.php:87 msgid "seconds ago" diff --git a/l10n/da/core.po b/l10n/da/core.po index 73d5802786d..f9d82bb2217 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -327,31 +327,31 @@ msgstr "Webtjenester under din kontrol" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Søndag" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Mandag" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Tirsdag" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Onsdag" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Torsdag" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Fredag" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Lørdag" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index f16adbcf588..cf5027a650b 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -73,11 +73,11 @@ msgstr "Adgang er udløbet. Genindlæs siden." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Filer" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "SMS" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/de/core.po b/l10n/de/core.po index 2569cc96283..7718ab75bd1 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -334,31 +334,31 @@ msgstr "Web-Services unter Ihrer Kontrolle" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Sonntag" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Montag" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Dienstag" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Mittwoch" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Donnerstag" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Freitag" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Samstag" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index ccf23896f74..30180f6b45b 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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,11 +75,11 @@ msgstr "Token abgelaufen. Bitte lade die Seite neu." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Dateien" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Text" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index afa6d97ba38..2b48fb5a017 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -334,31 +334,31 @@ msgstr "Web-Services unter Ihrer Kontrolle" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Sonntag" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Montag" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Dienstag" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Mittwoch" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Donnerstag" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Freitag" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Samstag" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index a3ac72e9f56..e0e1af92cfc 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. # Phi Lieb <>, 2012. # , 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 16:29+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,15 +76,15 @@ msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Dateien" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Text" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Bilder" #: template.php:87 msgid "seconds ago" diff --git a/l10n/el/core.po b/l10n/el/core.po index 643b797a1d1..4b7f63dd08a 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -325,31 +325,31 @@ msgstr "Υπηρεσίες web υπό τον έλεγχό σας" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Κυριακή" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Δευτέρα" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Τρίτη" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Τετάρτη" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Πέμπτη" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Παρασκευή" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Σάββατο" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index aa0717fc810..c70bae146cd 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "Το αναγνωριστικό έληξε. Παρακαλώ φορτώ #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Αρχεία" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Κείμενο" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 6a0e85431db..f2a61ea15f6 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -249,7 +249,7 @@ msgstr "Aldoni" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Sekureca averto" #: templates/installation.php:24 msgid "" @@ -323,31 +323,31 @@ msgstr "TTT-servoj sub via kontrolo" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "dimanĉo" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "lundo" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "mardo" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "merkredo" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "ĵaŭdo" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "vendredo" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "sabato" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index d6147a5d69f..b19c509a903 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Dosieroj" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Teksto" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/es/core.po b/l10n/es/core.po index b4bbe09d66e..901d83c47d3 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -329,31 +329,31 @@ msgstr "servicios web bajo tu control" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Domingo" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Lunes" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Martes" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Miércoles" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Jueves" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Viernes" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sábado" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index a3d16383262..1da529bebc2 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -73,11 +73,11 @@ msgstr "Token expirado. Por favor, recarga la página." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Archivos" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Texto" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 5344e80a858..72ebbde9ec6 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -321,31 +321,31 @@ msgstr "servicios web sobre los que tenés control" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Domingo" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Lunes" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Martes" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Miércoles" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Jueves" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Viernes" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sábado" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 69b4dbbe284..0608f9c52d6 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -72,11 +72,11 @@ msgstr "Token expirado. Por favor, recargá la página." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Archivos" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Texto" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index f4168de4e55..ea45b0f7f0c 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -305,7 +305,7 @@ msgstr "Andmebasi nimi" #: templates/installation.php:121 msgid "Database tablespace" -msgstr "" +msgstr "Andmebaasi tabeliruum" #: templates/installation.php:127 msgid "Database host" @@ -321,31 +321,31 @@ msgstr "veebiteenused sinu kontrolli all" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Pühapäev" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Esmaspäev" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Teisipäev" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Kolmapäev" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Neljapäev" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Reede" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Laupäev" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 12b1d01e0f6..cf1cdb8ac11 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "Kontrollkood aegus. Paelun lae leht uuesti." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Failid" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Tekst" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 3cb96a97ae7..baf8bf0a74c 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -248,7 +248,7 @@ msgstr "Gehitu" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Segurtasun abisua" #: templates/installation.php:24 msgid "" @@ -269,7 +269,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/installation.php:36 msgid "Create an admin account" @@ -322,31 +322,31 @@ msgstr "web zerbitzuak zure kontrolpean" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Igandea" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Astelehena" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Asteartea" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Asteazkena" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Osteguna" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Ostirala" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Larunbata" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 7b7c9434385..2876cbb8802 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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,11 +72,11 @@ msgstr "Tokena iraungitu da. Mesedez birkargatu orria." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Fitxategiak" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Testua" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index ce531f78a48..adad4119c5a 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -138,7 +138,7 @@ msgstr "" #: js/share.js:288 msgid "create" -msgstr "" +msgstr "ایجاد" #: js/share.js:291 msgid "update" @@ -247,7 +247,7 @@ msgstr "افزودن" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "اخطار امنیتی" #: templates/installation.php:24 msgid "" @@ -321,31 +321,31 @@ msgstr "سرویس وب تحت کنترل شما" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "یکشنبه" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "دوشنبه" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "سه شنبه" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "چهارشنبه" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "پنجشنبه" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "جمعه" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "شنبه" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index e604e80b1c1..25215279ee8 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "پرونده‌ها" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "متن" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 1ea719acce5..6ca7e1bdfc1 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -274,7 +274,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/installation.php:36 msgid "Create an admin account" @@ -327,31 +327,31 @@ msgstr "verkkopalvelut hallinnassasi" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Sunnuntai" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Maanantai" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Tiistai" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Keskiviikko" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Torstai" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Perjantai" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Lauantai" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 9c2cdd6971a..c098cdaad7c 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "Valtuutus vanheni. Lataa sivu uudelleen." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Tiedostot" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Teksti" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 125dc0d8dde..3e90111b425 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -328,31 +328,31 @@ msgstr "services web sous votre contrôle" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Dimanche" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Lundi" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Mardi" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Mercredi" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Jeudi" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Vendredi" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Samedi" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 971c3ec8ddb..cd019449142 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -73,11 +73,11 @@ msgstr "La session a expiré. Veuillez recharger la page." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Fichiers" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Texte" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 1f6e22cf985..332c06d0924 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -127,7 +127,7 @@ msgstr "" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Deixar de compartir" #: js/share.js:283 msgid "can edit" @@ -248,7 +248,7 @@ msgstr "Engadir" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Aviso de seguridade" #: templates/installation.php:24 msgid "" @@ -322,31 +322,31 @@ msgstr "servizos web baixo o seu control" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Domingo" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Luns" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Martes" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Mércores" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Xoves" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Venres" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sábado" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index fedfe0f8f6c..6cb9add9d09 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -76,7 +76,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Texto" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/he/core.po b/l10n/he/core.po index bac7e6da202..d24ed1b8c1f 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -129,7 +129,7 @@ msgstr "" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "הסר שיתוף" #: js/share.js:283 msgid "can edit" @@ -324,31 +324,31 @@ msgstr "שירותי רשת בשליטתך" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "יום ראשון" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "יום שני" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "יום שלישי" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "יום רביעי" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "יום חמישי" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "יום שישי" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "שבת" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 027a26a5de8..9532af20725 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -76,7 +76,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "טקסט" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index c297964480d..7011a1c4916 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 423e26658f1..51c11fde99b 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index c02f8d6b0ca..c6ce6168d01 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -324,31 +324,31 @@ msgstr "web usluge pod vašom kontrolom" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "nedelja" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "ponedeljak" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "utorak" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "srijeda" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "četvrtak" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "petak" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "subota" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 12ea836c775..726eff0f4ef 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -19,19 +19,19 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "Pomoć" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Osobno" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Postavke" #: app.php:302 msgid "Users" -msgstr "" +msgstr "Korisnici" #: app.php:309 msgid "Apps" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Greška kod autorizacije" #: json.php:51 msgid "Token expired. Please reload page." @@ -71,11 +71,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Datoteke" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Tekst" #: search/provider/file.php:29 msgid "Images" @@ -83,7 +83,7 @@ msgstr "" #: template.php:87 msgid "seconds ago" -msgstr "" +msgstr "sekundi prije" #: template.php:88 msgid "1 minute ago" @@ -96,11 +96,11 @@ msgstr "" #: template.php:92 msgid "today" -msgstr "" +msgstr "danas" #: template.php:93 msgid "yesterday" -msgstr "" +msgstr "jučer" #: template.php:94 #, php-format @@ -109,19 +109,19 @@ msgstr "" #: template.php:95 msgid "last month" -msgstr "" +msgstr "prošli mjesec" #: template.php:96 msgid "months ago" -msgstr "" +msgstr "mjeseci" #: template.php:97 msgid "last year" -msgstr "" +msgstr "prošlu godinu" #: template.php:98 msgid "years ago" -msgstr "" +msgstr "godina" #: updater.php:75 #, php-format diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 26cb9db0ce2..a8f3ce8526a 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -128,7 +128,7 @@ msgstr "" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Nem oszt meg" #: js/share.js:283 msgid "can edit" @@ -140,7 +140,7 @@ msgstr "" #: js/share.js:288 msgid "create" -msgstr "" +msgstr "létrehozás" #: js/share.js:291 msgid "update" @@ -249,7 +249,7 @@ msgstr "Hozzáadás" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Biztonsági figyelmeztetés" #: templates/installation.php:24 msgid "" @@ -323,31 +323,31 @@ msgstr "webszolgáltatások az irányításod alatt" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Vasárnap" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Hétfő" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Kedd" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Szerda" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Csütörtök" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Péntek" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Szombat" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 860affddd21..fadaf046584 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "A token lejárt. Frissítsd az oldalt." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Fájlok" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Szöveg" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 3d32b2fdcea..f39b3eafdbd 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -40,7 +40,7 @@ msgstr "" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Cancellar" #: js/oc-dialogs.js:159 msgid "No" @@ -321,79 +321,79 @@ msgstr "servicios web sub tu controlo" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Dominica" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Lunedi" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Martedi" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Mercuridi" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Jovedi" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Venerdi" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sabbato" #: templates/layout.user.php:18 msgid "January" -msgstr "" +msgstr "januario" #: templates/layout.user.php:18 msgid "February" -msgstr "" +msgstr "Februario" #: templates/layout.user.php:18 msgid "March" -msgstr "" +msgstr "Martio" #: templates/layout.user.php:18 msgid "April" -msgstr "" +msgstr "April" #: templates/layout.user.php:18 msgid "May" -msgstr "" +msgstr "Mai" #: templates/layout.user.php:18 msgid "June" -msgstr "" +msgstr "Junio" #: templates/layout.user.php:18 msgid "July" -msgstr "" +msgstr "Julio" #: templates/layout.user.php:18 msgid "August" -msgstr "" +msgstr "Augusto" #: templates/layout.user.php:18 msgid "September" -msgstr "" +msgstr "Septembre" #: templates/layout.user.php:18 msgid "October" -msgstr "" +msgstr "Octobre" #: templates/layout.user.php:18 msgid "November" -msgstr "" +msgstr "Novembre" #: templates/layout.user.php:18 msgid "December" -msgstr "" +msgstr "Decembre" #: templates/layout.user.php:38 msgid "Log out" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 3650c9f5d9c..0c0fc78297d 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -19,19 +19,19 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "Adjuta" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Personal" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Configurationes" #: app.php:302 msgid "Users" -msgstr "" +msgstr "Usatores" #: app.php:309 msgid "Apps" @@ -75,7 +75,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Texto" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/id/core.po b/l10n/id/core.po index ba8617a8e0c..c2714fed49a 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -324,31 +324,31 @@ msgstr "web service dibawah kontrol anda" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "minggu" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "senin" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "selasa" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "rabu" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "kamis" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "jumat" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "sabtu" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 9bd4e26b838..250558d665d 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -76,7 +76,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "teks" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/it/core.po b/l10n/it/core.po index bea6d2af3ba..78a495439e5 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -325,31 +325,31 @@ msgstr "servizi web nelle tue mani" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Domenica" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Lunedì" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Martedì" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Mercoledì" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Giovedì" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Venerdì" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sabato" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index e6da7a3c7ba..ca74f5fe760 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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 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,15 +72,15 @@ msgstr "Token scaduto. Ricarica la pagina." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "File" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Testo" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Immagini" #: template.php:87 msgid "seconds ago" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 61cc7b4ac14..c0a644318b7 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -322,31 +322,31 @@ msgstr "管理下にあるウェブサービス" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "日" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "月" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "火" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "水" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "木" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "金" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "土" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index c4dfb838d77..354de86dd35 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 03:25+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" @@ -72,15 +72,15 @@ msgstr "トークンが無効になりました。ページを再読込してく #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "ファイル" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "TTY TDD" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "画像" #: template.php:87 msgid "seconds ago" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index de18fd06eff..38e74e25ef5 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -321,31 +321,31 @@ msgstr "თქვენი კონტროლის ქვეშ მყოფ #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "კვირა" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "ორშაბათი" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "სამშაბათი" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "ოთხშაბათი" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "ხუთშაბათი" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "პარასკევი" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "შაბათი" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 7e43b1452d0..22ac6b78a06 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -64,7 +64,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "ავთენტიფიკაციის შეცდომა" #: json.php:51 msgid "Token expired. Please reload page." @@ -76,7 +76,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "ტექსტი" #: search/provider/file.php:29 msgid "Images" @@ -84,11 +84,11 @@ msgstr "" #: template.php:87 msgid "seconds ago" -msgstr "" +msgstr "წამის წინ" #: template.php:88 msgid "1 minute ago" -msgstr "" +msgstr "1 წუთის წინ" #: template.php:89 #, php-format @@ -97,11 +97,11 @@ msgstr "" #: template.php:92 msgid "today" -msgstr "" +msgstr "დღეს" #: template.php:93 msgid "yesterday" -msgstr "" +msgstr "გუშინ" #: template.php:94 #, php-format @@ -110,7 +110,7 @@ msgstr "" #: template.php:95 msgid "last month" -msgstr "" +msgstr "გასულ თვეში" #: template.php:96 msgid "months ago" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index f496f2e6fdd..889a6c38236 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -139,7 +139,7 @@ msgstr "" #: js/share.js:288 msgid "create" -msgstr "" +msgstr "만들기" #: js/share.js:291 msgid "update" @@ -248,7 +248,7 @@ msgstr "추가" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "보안 경고" #: templates/installation.php:24 msgid "" @@ -322,31 +322,31 @@ msgstr "내가 관리하는 웹 서비스" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "일요일" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "월요일" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "화요일" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "수요일" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "목요일" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "금요일" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "토요일" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 0693d4fba72..c3ba0e2ebc8 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -19,19 +19,19 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "도움말" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "개인의" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "설정" #: app.php:302 msgid "Users" -msgstr "" +msgstr "사용자" #: app.php:309 msgid "Apps" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "인증 오류" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,7 +75,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "문자 번호" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 07bc0a04939..aa5978b69a5 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -61,7 +61,7 @@ msgstr "" #: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:505 #: js/share.js:517 msgid "Error" -msgstr "" +msgstr "هه‌ڵه" #: js/share.js:103 msgid "Error while sharing" @@ -187,7 +187,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 #: templates/login.php:20 msgid "Username" -msgstr "" +msgstr "ناوی به‌کارهێنه‌ر" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" @@ -243,7 +243,7 @@ msgstr "" #: templates/edit_categories_dialog.php:14 msgid "Add" -msgstr "" +msgstr "زیادکردن" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" @@ -317,7 +317,7 @@ msgstr "كۆتایی هات ده‌ستكاریه‌كان" #: templates/layout.guest.php:38 msgid "web services under your control" -msgstr "" +msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" #: templates/layout.user.php:17 msgid "Sunday" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index c1fdcba0844..97de2534f1d 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "یارمەتی" #: app.php:292 msgid "Personal" @@ -27,11 +27,11 @@ msgstr "" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "ده‌ستكاری" #: app.php:302 msgid "Users" -msgstr "" +msgstr "به‌كارهێنه‌ر" #: app.php:309 msgid "Apps" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 295b6c3306c..17f470d02a1 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -138,7 +138,7 @@ msgstr "" #: js/share.js:288 msgid "create" -msgstr "" +msgstr "erstellen" #: js/share.js:291 msgid "update" @@ -247,7 +247,7 @@ msgstr "Bäisetzen" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Sécherheets Warnung" #: templates/installation.php:24 msgid "" @@ -321,31 +321,31 @@ msgstr "Web Servicer ënnert denger Kontroll" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Sonndes" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Méindes" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Dënschdes" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Mëttwoch" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Donneschdes" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Freides" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Samschdes" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index e50623231d8..e4a07505a57 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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,11 +23,11 @@ msgstr "" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Perséinlech" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Astellungen" #: app.php:302 msgid "Users" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Authentifikatioun's Fehler" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,7 +75,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "SMS" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 9dc8861376f..df41c969180 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -322,31 +322,31 @@ msgstr "jūsų valdomos web paslaugos" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Sekmadienis" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Pirmadienis" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Antradienis" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Trečiadienis" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Ketvirtadienis" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Penktadienis" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Šeštadienis" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index d417ae75fc0..f4361df3bd2 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -73,11 +73,11 @@ msgstr "Sesija baigėsi. Prašome perkrauti puslapį." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Failai" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Žinučių" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 27e52c9ce71..ce667293417 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -61,7 +61,7 @@ msgstr "" #: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:505 #: js/share.js:517 msgid "Error" -msgstr "" +msgstr "Kļūme" #: js/share.js:103 msgid "Error while sharing" @@ -126,7 +126,7 @@ msgstr "" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Pārtraukt līdzdalīšanu" #: js/share.js:283 msgid "can edit" @@ -247,7 +247,7 @@ msgstr "" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Brīdinājums par drošību" #: templates/installation.php:24 msgid "" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 1fd2ec88639..839d10fc097 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -19,19 +19,19 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "Palīdzība" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Personīgi" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Iestatījumi" #: app.php:302 msgid "Users" -msgstr "" +msgstr "Lietotāji" #: app.php:309 msgid "Apps" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Ielogošanās kļūme" #: json.php:51 msgid "Token expired. Please reload page." diff --git a/l10n/mk/core.po b/l10n/mk/core.po index f9583df413b..db48388d30e 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -140,7 +140,7 @@ msgstr "" #: js/share.js:288 msgid "create" -msgstr "" +msgstr "креирај" #: js/share.js:291 msgid "update" @@ -323,31 +323,31 @@ msgstr "веб сервиси под Ваша контрола" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Недела" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Понеделник" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Вторник" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Среда" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Четврток" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Петок" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Сабота" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 54d60f5d2af..4a331a9b1fc 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -19,19 +19,19 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "Помош" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Лично" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Параметри" #: app.php:302 msgid "Users" -msgstr "" +msgstr "Корисници" #: app.php:309 msgid "Apps" @@ -75,7 +75,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Текст" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 971bc6e693b..4e8511ed243 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -249,7 +249,7 @@ msgstr "Tambah" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Amaran keselamatan" #: templates/installation.php:24 msgid "" @@ -323,31 +323,31 @@ msgstr "Perkhidmatan web di bawah kawalan anda" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Ahad" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Isnin" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Selasa" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Rabu" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Khamis" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Jumaat" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sabtu" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 31eba648c3a..cdb65a5fd57 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -23,15 +23,15 @@ msgstr "" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Peribadi" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Tetapan" #: app.php:302 msgid "Users" -msgstr "" +msgstr "Pengguna" #: app.php:309 msgid "Apps" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Ralat pengesahan" #: json.php:51 msgid "Token expired. Please reload page." @@ -71,11 +71,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Fail-fail" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Teks" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index dfd3a8414d6..b78e8f7b793 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -130,7 +130,7 @@ msgstr "" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Avslutt deling" #: js/share.js:283 msgid "can edit" @@ -142,7 +142,7 @@ msgstr "" #: js/share.js:288 msgid "create" -msgstr "" +msgstr "opprett" #: js/share.js:291 msgid "update" @@ -251,7 +251,7 @@ msgstr "Legg til" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Sikkerhetsadvarsel" #: templates/installation.php:24 msgid "" @@ -309,7 +309,7 @@ msgstr "Databasenavn" #: templates/installation.php:121 msgid "Database tablespace" -msgstr "" +msgstr "Database tabellområde" #: templates/installation.php:127 msgid "Database host" @@ -325,31 +325,31 @@ msgstr "nettjenester under din kontroll" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Søndag" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Mandag" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Tirsdag" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Onsdag" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Torsdag" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Fredag" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Lørdag" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 899168860a2..bd95451cb2f 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -74,11 +74,11 @@ msgstr "Symbol utløpt. Vennligst last inn siden på nytt." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Filer" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Tekst" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 7e5b7423966..7c391bcf394 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -331,31 +331,31 @@ msgstr "Webdiensten in eigen beheer" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Zondag" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Maandag" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Dinsdag" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Woensdag" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Donderdag" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Vrijdag" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Zaterdag" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 8847e61a0cd..5ceebeaafcd 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "Token verlopen. Herlaad de pagina." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Bestanden" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Tekst" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 8d5e6225fb4..ef849c1ac1a 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,7 @@ msgstr "" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Kanseller" #: js/oc-dialogs.js:159 msgid "No" @@ -62,7 +62,7 @@ msgstr "" #: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:505 #: js/share.js:517 msgid "Error" -msgstr "" +msgstr "Feil" #: js/share.js:103 msgid "Error while sharing" @@ -244,7 +244,7 @@ msgstr "" #: templates/edit_categories_dialog.php:14 msgid "Add" -msgstr "" +msgstr "Legg til" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" @@ -322,79 +322,79 @@ msgstr "Vev tjenester under din kontroll" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Søndag" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Måndag" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Tysdag" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Onsdag" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Torsdag" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Fredag" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Laurdag" #: templates/layout.user.php:18 msgid "January" -msgstr "" +msgstr "Januar" #: templates/layout.user.php:18 msgid "February" -msgstr "" +msgstr "Februar" #: templates/layout.user.php:18 msgid "March" -msgstr "" +msgstr "Mars" #: templates/layout.user.php:18 msgid "April" -msgstr "" +msgstr "April" #: templates/layout.user.php:18 msgid "May" -msgstr "" +msgstr "Mai" #: templates/layout.user.php:18 msgid "June" -msgstr "" +msgstr "Juni" #: templates/layout.user.php:18 msgid "July" -msgstr "" +msgstr "Juli" #: templates/layout.user.php:18 msgid "August" -msgstr "" +msgstr "August" #: templates/layout.user.php:18 msgid "September" -msgstr "" +msgstr "September" #: templates/layout.user.php:18 msgid "October" -msgstr "" +msgstr "Oktober" #: templates/layout.user.php:18 msgid "November" -msgstr "" +msgstr "November" #: templates/layout.user.php:18 msgid "December" -msgstr "" +msgstr "Desember" #: templates/layout.user.php:38 msgid "Log out" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 8482e36a16f..3936cb1d375 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,19 +19,19 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "Hjelp" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Personleg" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Innstillingar" #: app.php:302 msgid "Users" -msgstr "" +msgstr "Brukarar" #: app.php:309 msgid "Apps" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Feil i autentisering" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,7 +75,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Tekst" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 68828bf7e4e..99f47982bd9 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -247,7 +247,7 @@ msgstr "Ajusta" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Avertiment de securitat" #: templates/installation.php:24 msgid "" @@ -321,31 +321,31 @@ msgstr "Services web jos ton contraròtle" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Dimenge" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Diluns" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Dimarç" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Dimecres" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Dijòus" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Divendres" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Dissabte" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 35dc3e90377..50552d15262 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -72,7 +72,7 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Fichièrs" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 09e18e2d7ca..391d20d67be 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -328,31 +328,31 @@ msgstr "usługi internetowe pod kontrolą" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Niedziela" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Poniedziałek" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Wtorek" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Środa" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Czwartek" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Piątek" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sobota" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index a50f6a513c2..32da4d269a1 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -4,13 +4,14 @@ # # Translators: # Cyryl Sochacki <>, 2012. +# Marcin Małecki , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 15:52+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" @@ -72,15 +73,15 @@ msgstr "Token wygasł. Proszę ponownie załadować stronę." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Pliki" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Połączenie tekstowe" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Obrazy" #: template.php:87 msgid "seconds ago" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index e01ca37f257..3e551979231 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -31,7 +31,7 @@ msgstr "" #: js/js.js:238 templates/layout.user.php:53 templates/layout.user.php:54 msgid "Settings" -msgstr "" +msgstr "Ustawienia" #: js/oc-dialogs.js:123 msgid "Choose" @@ -186,7 +186,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 #: templates/login.php:20 msgid "Username" -msgstr "" +msgstr "Nazwa użytkownika" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index fd880f8490c..8cc412d39da 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -27,7 +27,7 @@ msgstr "" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Ustawienia" #: app.php:302 msgid "Users" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index cbf7cc6a953..83a2f8a6d50 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -274,7 +274,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 "Seu diretório de dados e seus arquivos estão, provavelmente, acessíveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessível ou que você mova o diretório de dados para fora da raiz do servidor web." #: templates/installation.php:36 msgid "Create an admin account" @@ -327,31 +327,31 @@ msgstr "web services sob seu controle" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Domingo" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Segunda-feira" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Terça-feira" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Quarta-feira" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Quinta-feira" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Sexta-feira" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sábado" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 86df929180b..168bc9bcc8e 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -72,11 +72,11 @@ msgstr "Token expirou. Por favor recarregue a página." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Arquivos" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Texto" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 2e36fc67f7b..feeead42090 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -272,7 +272,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 "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web." #: templates/installation.php:36 msgid "Create an admin account" @@ -325,31 +325,31 @@ msgstr "serviços web sob o seu controlo" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Domingo" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Segunda" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Terça" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Quarta" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Quinta" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Sexta" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sábado" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 17cfe1eca1e..5e2d41289a8 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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,11 +72,11 @@ msgstr "O token expirou. Por favor recarregue a página." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Ficheiros" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Texto" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index c36be52f84e..b24346a85fa 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -250,7 +250,7 @@ msgstr "Adaugă" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Avertisment de securitate" #: templates/installation.php:24 msgid "" @@ -271,7 +271,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 "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web." #: templates/installation.php:36 msgid "Create an admin account" @@ -324,31 +324,31 @@ msgstr "servicii web controlate de tine" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Duminică" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Luni" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Marți" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Miercuri" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Joi" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Vineri" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sâmbătă" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 1df730fc068..9c1fcf41941 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "Token expirat. Te rugăm să reîncarci pagina." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Fișiere" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Text" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index bcc7634fce8..3058a58bbaa 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -326,31 +326,31 @@ msgstr "Сетевые службы под твоим контролем" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Воскресенье" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Понедельник" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Вторник" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Среда" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Четверг" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Пятница" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Суббота" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 30c92e007e2..eff2ca1daed 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -74,11 +74,11 @@ msgstr "Токен просрочен. Перезагрузите страниц #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Файлы" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Текст" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 081518c28be..daad3228d45 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -321,31 +321,31 @@ msgstr "веб-сервисы под Вашим контролем" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Воскресенье" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Понедельник" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Вторник" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Среда" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Четверг" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Пятница" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Суббота" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index febba490e99..0f021e2aae2 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "Маркер истек. Пожалуйста, перезагрузит #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Файлы" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Текст" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 4c3bdeac500..c6d940efaca 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -56,12 +56,12 @@ msgstr "හරි" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "මකා දැමීම සඳහා ප්‍රවර්ගයන් තෝරා නොමැත." #: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:505 #: js/share.js:517 msgid "Error" -msgstr "" +msgstr "දෝෂයක්" #: js/share.js:103 msgid "Error while sharing" @@ -187,7 +187,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 #: templates/login.php:20 msgid "Username" -msgstr "" +msgstr "පරිශීලක නම" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" @@ -211,11 +211,11 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "පෞද්ගලික" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "පරිශීලකයන්" #: strings.php:7 msgid "Apps" @@ -223,7 +223,7 @@ msgstr "යෙදුම්" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "පරිපාලක" #: strings.php:9 msgid "Help" @@ -317,35 +317,35 @@ msgstr "" #: templates/layout.guest.php:38 msgid "web services under your control" -msgstr "" +msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "ඉරිදා" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "සඳුදා" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "අඟහරුවාදා" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "බදාදා" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "බ්‍රහස්පතින්දා" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "සිකුරාදා" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "සෙනසුරාදා" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 8f81cda0ac0..1c8e043cc7f 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "පෙළ" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 4174529dcc4..3d601e17d7e 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -270,7 +270,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áš priečinok s dátami a vaše súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inštaláciou ownCloud nespĺňa úlohu. Dôrazne vám doporučujeme nakonfigurovať webserver takým spôsobom, aby dáta v priečinku neboli verejné, alebo presuňte dáta mimo štruktúry priečinkov webservera." #: templates/installation.php:36 msgid "Create an admin account" @@ -323,31 +323,31 @@ msgstr "webové služby pod vašou kontrolou" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Nedeľa" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Pondelok" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Utorok" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Streda" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Štvrtok" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Piatok" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Sobota" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index b68e6edd93d..623760645f4 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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,11 +72,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Súbory" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "SMS" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 49de87d15e4..1d92978f739 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -271,7 +271,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 "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud namreč ni omogočena. Močno priporočamo nastavitev spletnega strežnika tako, da mapa podatkov ne bo javno dostopna ali pa, da jo prestavite ven iz korenske mape spletnega strežnika." #: templates/installation.php:36 msgid "Create an admin account" @@ -324,31 +324,31 @@ msgstr "spletne storitve pod vašim nadzorom" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "nedelja" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "ponedeljek" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "torek" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "sreda" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "četrtek" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "petek" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "sobota" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 1b0444a815c..2d619ae2f9e 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -73,11 +73,11 @@ msgstr "Žeton je potekel. Spletišče je traba znova naložiti." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Datoteke" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Besedilo" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index db56f0f83bd..e5e74ea78fb 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -40,7 +40,7 @@ msgstr "" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Откажи" #: js/oc-dialogs.js:159 msgid "No" @@ -243,7 +243,7 @@ msgstr "" #: templates/edit_categories_dialog.php:14 msgid "Add" -msgstr "" +msgstr "Додај" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" @@ -321,79 +321,79 @@ msgstr "веб сервиси под контролом" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Недеља" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Понедељак" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Уторак" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Среда" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Четвртак" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Петак" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Субота" #: templates/layout.user.php:18 msgid "January" -msgstr "" +msgstr "Јануар" #: templates/layout.user.php:18 msgid "February" -msgstr "" +msgstr "Фебруар" #: templates/layout.user.php:18 msgid "March" -msgstr "" +msgstr "Март" #: templates/layout.user.php:18 msgid "April" -msgstr "" +msgstr "Април" #: templates/layout.user.php:18 msgid "May" -msgstr "" +msgstr "Мај" #: templates/layout.user.php:18 msgid "June" -msgstr "" +msgstr "Јун" #: templates/layout.user.php:18 msgid "July" -msgstr "" +msgstr "Јул" #: templates/layout.user.php:18 msgid "August" -msgstr "" +msgstr "Август" #: templates/layout.user.php:18 msgid "September" -msgstr "" +msgstr "Септембар" #: templates/layout.user.php:18 msgid "October" -msgstr "" +msgstr "Октобар" #: templates/layout.user.php:18 msgid "November" -msgstr "" +msgstr "Новембар" #: templates/layout.user.php:18 msgid "December" -msgstr "" +msgstr "Децембар" #: templates/layout.user.php:38 msgid "Log out" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 6f0bb73e173..253cd5002f8 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -19,19 +19,19 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "Помоћ" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Лично" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Подешавања" #: app.php:302 msgid "Users" -msgstr "" +msgstr "Корисници" #: app.php:309 msgid "Apps" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Грешка при аутентификацији" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,7 +75,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Текст" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index bc0e5312931..5f0945390c5 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -40,7 +40,7 @@ msgstr "" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Otkaži" #: js/oc-dialogs.js:159 msgid "No" @@ -321,79 +321,79 @@ msgstr "" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Nedelja" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Ponedeljak" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Utorak" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Sreda" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Četvrtak" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Petak" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Subota" #: templates/layout.user.php:18 msgid "January" -msgstr "" +msgstr "Januar" #: templates/layout.user.php:18 msgid "February" -msgstr "" +msgstr "Februar" #: templates/layout.user.php:18 msgid "March" -msgstr "" +msgstr "Mart" #: templates/layout.user.php:18 msgid "April" -msgstr "" +msgstr "April" #: templates/layout.user.php:18 msgid "May" -msgstr "" +msgstr "Maj" #: templates/layout.user.php:18 msgid "June" -msgstr "" +msgstr "Jun" #: templates/layout.user.php:18 msgid "July" -msgstr "" +msgstr "Jul" #: templates/layout.user.php:18 msgid "August" -msgstr "" +msgstr "Avgust" #: templates/layout.user.php:18 msgid "September" -msgstr "" +msgstr "Septembar" #: templates/layout.user.php:18 msgid "October" -msgstr "" +msgstr "Oktobar" #: templates/layout.user.php:18 msgid "November" -msgstr "" +msgstr "Novembar" #: templates/layout.user.php:18 msgid "December" -msgstr "" +msgstr "Decembar" #: templates/layout.user.php:38 msgid "Log out" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 059869e59cf..364aef3c6f7 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -19,19 +19,19 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "Pomoć" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Lično" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Podešavanja" #: app.php:302 msgid "Users" -msgstr "" +msgstr "Korisnici" #: app.php:309 msgid "Apps" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Greška pri autentifikaciji" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,7 +75,7 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Tekst" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index aed14fc9b1d..6aaa41d4e34 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:13+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" @@ -326,31 +326,31 @@ msgstr "webbtjänster under din kontroll" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Söndag" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Måndag" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Tisdag" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Onsdag" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Torsdag" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Fredag" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Lördag" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 66ff7d7a0ba..61e9e6a65d3 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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 06:56+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,15 +73,15 @@ msgstr "Ogiltig token. Ladda om sidan." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Filer" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Text" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Bilder" #: template.php:87 msgid "seconds ago" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 1f6f3ac3ec9..908c28bb96e 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -321,31 +321,31 @@ msgstr "உங்கள் கட்டுப்பாட்டின் கீ #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "ஞாயிற்றுக்கிழமை" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "திங்கட்கிழமை" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "செவ்வாய்க்கிழமை" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "புதன்கிழமை" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "வியாழக்கிழமை" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "வெள்ளிக்கிழமை" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "சனிக்கிழமை" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 364f08173c5..bd22476639a 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -19,19 +19,19 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "உதவி" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "தனிப்பட்ட" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "அமைப்புகள்" #: app.php:302 msgid "Users" -msgstr "" +msgstr "பயனாளர்கள்" #: app.php:309 msgid "Apps" @@ -71,7 +71,7 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "கோப்புகள்" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" @@ -83,11 +83,11 @@ msgstr "" #: template.php:87 msgid "seconds ago" -msgstr "" +msgstr "செக்கன்களுக்கு முன்" #: template.php:88 msgid "1 minute ago" -msgstr "" +msgstr "1 நிமிடத்திற்கு முன் " #: template.php:89 #, php-format @@ -96,11 +96,11 @@ msgstr "" #: template.php:92 msgid "today" -msgstr "" +msgstr "இன்று" #: template.php:93 msgid "yesterday" -msgstr "" +msgstr "நேற்று" #: template.php:94 #, php-format @@ -109,19 +109,19 @@ msgstr "" #: template.php:95 msgid "last month" -msgstr "" +msgstr "கடந்த மாதம்" #: template.php:96 msgid "months ago" -msgstr "" +msgstr "மாதங்களுக்கு முன" #: template.php:97 msgid "last year" -msgstr "" +msgstr "கடந்த வருடம்" #: template.php:98 msgid "years ago" -msgstr "" +msgstr "வருடங்களுக்கு முன்" #: updater.php:75 #, php-format diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 596108ad388..4f37ac45735 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-10-24 02:02+0200\n" +"POT-Creation-Date: 2012-10-25 02:07+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 b3bc5634d75..94c3989c6d5 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-10-24 02:02+0200\n" +"POT-Creation-Date: 2012-10-25 02:07+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 b827dd93aa9..e5cc604d92a 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-10-24 02:02+0200\n" +"POT-Creation-Date: 2012-10-25 02:07+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 97cde51b5f7..c100a734d6d 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-10-24 02:02+0200\n" +"POT-Creation-Date: 2012-10-25 02:07+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 f47f3a5713b..db27ea020b9 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-10-24 02:02+0200\n" +"POT-Creation-Date: 2012-10-25 02:07+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 256c8aa539e..b8fc02d5341 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-10-24 02:02+0200\n" +"POT-Creation-Date: 2012-10-25 02:07+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 5ff3deb29d4..d310fba4426 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-10-24 02:02+0200\n" +"POT-Creation-Date: 2012-10-25 02:07+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 2d2445ff65d..b4a71977044 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-10-24 02:03+0200\n" +"POT-Creation-Date: 2012-10-25 02:08+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 f6c92d5ac5d..871f9d1fb12 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-10-24 02:02+0200\n" +"POT-Creation-Date: 2012-10-25 02:07+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 53142e3715b..749c22cb689 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -248,7 +248,7 @@ msgstr "เพิ่ม" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "คำเตือนเกี่ยวกับความปลอดภัย" #: templates/installation.php:24 msgid "" @@ -269,7 +269,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/installation.php:36 msgid "Create an admin account" @@ -322,31 +322,31 @@ msgstr "web services under your control" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "วันอาทิตย์" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "วันจันทร์" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "วันอังคาร" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "วันพุธ" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "วันพฤหัสบดี" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "วันศุกร์" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "วันเสาร์" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index a56cb62b568..98c7409a3db 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "รหัสยืนยันความถูกต้องหมด #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "ไฟล์" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "ข้อความ" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 0f753f554df..e5605461b08 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -128,7 +128,7 @@ msgstr "" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Paylaşılmayan" #: js/share.js:283 msgid "can edit" @@ -140,7 +140,7 @@ msgstr "" #: js/share.js:288 msgid "create" -msgstr "" +msgstr "oluştur" #: js/share.js:291 msgid "update" @@ -249,7 +249,7 @@ msgstr "Ekle" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Güvenlik Uyarisi" #: templates/installation.php:24 msgid "" @@ -323,31 +323,31 @@ msgstr "kontrolünüzdeki web servisleri" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Pazar" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Pazartesi" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Salı" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Çarşamba" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Perşembe" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Cuma" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Cumartesi" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index ad8cb2a8ce6..37955bfa993 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -19,19 +19,19 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "Yardı" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Kişisel" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Ayarlar" #: app.php:302 msgid "Users" -msgstr "" +msgstr "Kullanıcılar" #: app.php:309 msgid "Apps" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Kimlik doğrulama hatası" #: json.php:51 msgid "Token expired. Please reload page." @@ -71,11 +71,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Dosyalar" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Metin" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 9f48e20549a..43d3364fd8c 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -128,7 +128,7 @@ msgstr "" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Заборонити доступ" #: js/share.js:283 msgid "can edit" @@ -140,7 +140,7 @@ msgstr "" #: js/share.js:288 msgid "create" -msgstr "" +msgstr "створити" #: js/share.js:291 msgid "update" @@ -221,7 +221,7 @@ msgstr "Користувачі" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "Додатки" #: strings.php:8 msgid "Admin" @@ -323,31 +323,31 @@ msgstr "веб-сервіс під вашим контролем" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Неділя" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Понеділок" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Вівторок" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Середа" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Четвер" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "П'ятниця" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Субота" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index b9cab51466e..f366fc3c18f 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -73,11 +73,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Файли" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Текст" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 975ea000abb..e80d6a083fc 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -248,7 +248,7 @@ msgstr "Thêm" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "Cảnh bảo bảo mật" #: templates/installation.php:24 msgid "" @@ -269,7 +269,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 "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ internet. Tập tin .htaccess của ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ webserver của bạn để thư mục dữ liệu không còn bị truy cập hoặc bạn di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ." #: templates/installation.php:36 msgid "Create an admin account" @@ -322,31 +322,31 @@ msgstr "các dịch vụ web dưới sự kiểm soát của bạn" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "Chủ nhật" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "Thứ 2" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "Thứ 3" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "Thứ 4" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "Thứ 5" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "Thứ " #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "Thứ 7" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 7fb581dd671..cbb3ecaf3e4 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "Mã Token đã hết hạn. Hãy tải lại trang." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Các tập tin" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Văn bản" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 2af06bfd9c4..69e123044db 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -322,31 +322,31 @@ msgstr "你控制下的网络服务" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "星期天" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "星期一" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "星期二" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "星期三" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "星期四" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "星期五" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "星期六" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 53ba5055197..3acc8113db8 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -72,11 +72,11 @@ msgstr "会话过期。请刷新页面。" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "文件" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "文本" #: search/provider/file.php:29 msgid "Images" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index fdd7611c8aa..e0a23719902 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 02:26+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" @@ -125,7 +125,7 @@ msgstr "不允许二次共享" #: js/share.js:250 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "在{item} 与 {user}共享。" #: js/share.js:271 msgid "Unshare" @@ -271,7 +271,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/installation.php:36 msgid "Create an admin account" @@ -324,31 +324,31 @@ msgstr "由您掌控的网络服务" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "星期日" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "星期一" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "星期二" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "星期三" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "星期四" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "星期五" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "星期六" #: templates/layout.user.php:18 msgid "January" @@ -404,17 +404,17 @@ msgstr "注销" #: templates/login.php:8 msgid "Automatic logon rejected!" -msgstr "" +msgstr "自动登录被拒绝!" #: templates/login.php:9 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "如果您没有最近修改您的密码,您的帐户可能会受到影响!" #: templates/login.php:10 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "请修改您的密码,以保护您的账户安全。" #: templates/login.php:15 msgid "Lost your password?" @@ -448,7 +448,7 @@ msgstr "安全警告!" msgid "" "Please verify your password.
For security reasons you may be " "occasionally asked to enter your password again." -msgstr "" +msgstr "请验证您的密码。
出于安全考虑,你可能偶尔会被要求再次输入密码。" #: templates/verify.php:16 msgid "Verify" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 571f4f7680c..bcf873d1637 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-18 02:03+0200\n" -"PO-Revision-Date: 2012-10-17 05:17+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 05:14+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" @@ -20,19 +20,19 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "权限已授予。" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "配置Dropbox存储时出错" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "授权" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "完成所有必填项" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." @@ -64,7 +64,7 @@ msgstr "选项" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "适用的" #: templates/settings.php:23 msgid "Add mount point" @@ -72,7 +72,7 @@ msgstr "增加挂载点" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "未设置" #: templates/settings.php:63 msgid "All Users" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 0b783685fed..bda440d556f 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/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-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 02:21+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" @@ -73,15 +73,15 @@ msgstr "Token 过期,请刷新页面。" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "文件" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "文本" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "图像" #: template.php:87 msgid "seconds ago" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 4e5930aafbd..a000876a899 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:03+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:14+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" @@ -127,7 +127,7 @@ msgstr "" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "取消共享" #: js/share.js:283 msgid "can edit" @@ -139,7 +139,7 @@ msgstr "" #: js/share.js:288 msgid "create" -msgstr "" +msgstr "建立" #: js/share.js:291 msgid "update" @@ -248,7 +248,7 @@ msgstr "添加" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "安全性警告" #: templates/installation.php:24 msgid "" @@ -322,31 +322,31 @@ msgstr "網路服務已在你控制" #: templates/layout.user.php:17 msgid "Sunday" -msgstr "" +msgstr "週日" #: templates/layout.user.php:17 msgid "Monday" -msgstr "" +msgstr "週一" #: templates/layout.user.php:17 msgid "Tuesday" -msgstr "" +msgstr "週二" #: templates/layout.user.php:17 msgid "Wednesday" -msgstr "" +msgstr "週三" #: templates/layout.user.php:17 msgid "Thursday" -msgstr "" +msgstr "週四" #: templates/layout.user.php:17 msgid "Friday" -msgstr "" +msgstr "週五" #: templates/layout.user.php:17 msgid "Saturday" -msgstr "" +msgstr "週六" #: templates/layout.user.php:18 msgid "January" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index ba051d60475..47610cc9f5b 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-24 02:02+0200\n" -"PO-Revision-Date: 2012-10-24 00:04+0000\n" +"POT-Creation-Date: 2012-10-25 02:07+0200\n" +"PO-Revision-Date: 2012-10-24 00:11+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" @@ -73,11 +73,11 @@ msgstr "Token 過期. 請重新整理頁面" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "檔案" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "文字" #: search/provider/file.php:29 msgid "Images" diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php new file mode 100644 index 00000000000..4934e25a5f6 --- /dev/null +++ b/lib/l10n/ar.php @@ -0,0 +1,8 @@ + "المساعدة", +"Personal" => "شخصي", +"Settings" => "تعديلات", +"Users" => "المستخدمين", +"Authentication error" => "لم يتم التأكد من الشخصية بنجاح", +"Text" => "معلومات إضافية" +); diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php new file mode 100644 index 00000000000..3eb0660d944 --- /dev/null +++ b/lib/l10n/bg_BG.php @@ -0,0 +1,4 @@ + "Лично", +"Authentication error" => "Проблем с идентификацията" +); diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 031207227ec..1aa4284bccd 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -12,6 +12,8 @@ "Application is not enabled" => "L'aplicació no està habilitada", "Authentication error" => "Error d'autenticació", "Token expired. Please reload page." => "El testimoni ha expirat. Torneu a carregar la pàgina.", +"Files" => "Fitxers", +"Text" => "Text", "seconds ago" => "segons enrere", "1 minute ago" => "fa 1 minut", "%d minutes ago" => "fa %d minuts", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 00815f97533..72d9b955a41 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -12,6 +12,9 @@ "Application is not enabled" => "Aplikace není povolena", "Authentication error" => "Chyba ověření", "Token expired. Please reload page." => "Token vypršel. Obnovte prosím stránku.", +"Files" => "Soubory", +"Text" => "Text", +"Images" => "Obrázky", "seconds ago" => "před vteřinami", "1 minute ago" => "před 1 minutou", "%d minutes ago" => "před %d minutami", diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 09124c18290..ca4a6c6eca6 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Programmet er ikke aktiveret", "Authentication error" => "Adgangsfejl", "Token expired. Please reload page." => "Adgang er udløbet. Genindlæs siden.", +"Files" => "Filer", +"Text" => "SMS", "seconds ago" => "sekunder siden", "1 minute ago" => "1 minut siden", "%d minutes ago" => "%d minutter siden", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index c118b468671..088608b183f 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Die Anwendung ist nicht aktiviert", "Authentication error" => "Authentifizierungs-Fehler", "Token expired. Please reload page." => "Token abgelaufen. Bitte lade die Seite neu.", +"Files" => "Dateien", +"Text" => "Text", "seconds ago" => "Vor wenigen Sekunden", "1 minute ago" => "Vor einer Minute", "%d minutes ago" => "Vor %d Minuten", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index b6c8df1b205..0f08a3ea71d 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -12,6 +12,9 @@ "Application is not enabled" => "Die Anwendung ist nicht aktiviert", "Authentication error" => "Authentifizierungs-Fehler", "Token expired. Please reload page." => "Token abgelaufen. Bitte laden Sie die Seite neu.", +"Files" => "Dateien", +"Text" => "Text", +"Images" => "Bilder", "seconds ago" => "Vor wenigen Sekunden", "1 minute ago" => "Vor einer Minute", "%d minutes ago" => "Vor %d Minuten", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index e4e12490711..e6475ec08aa 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Δεν ενεργοποιήθηκε η εφαρμογή", "Authentication error" => "Σφάλμα πιστοποίησης", "Token expired. Please reload page." => "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα.", +"Files" => "Αρχεία", +"Text" => "Κείμενο", "seconds ago" => "δευτερόλεπτα πριν", "1 minute ago" => "1 λεπτό πριν", "%d minutes ago" => "%d λεπτά πριν", diff --git a/lib/l10n/eo.php b/lib/l10n/eo.php index b3c1c52ecee..e569101fc6b 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -12,6 +12,8 @@ "Application is not enabled" => "La aplikaĵo ne estas kapabligita", "Authentication error" => "Aŭtentiga eraro", "Token expired. Please reload page." => "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon.", +"Files" => "Dosieroj", +"Text" => "Teksto", "seconds ago" => "sekundojn antaŭe", "1 minute ago" => "antaŭ 1 minuto", "%d minutes ago" => "antaŭ %d minutoj", diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 6d2a310ca3b..5064fe2d2f0 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -12,6 +12,8 @@ "Application is not enabled" => "La aplicación no está habilitada", "Authentication error" => "Error de autenticación", "Token expired. Please reload page." => "Token expirado. Por favor, recarga la página.", +"Files" => "Archivos", +"Text" => "Texto", "seconds ago" => "hace segundos", "1 minute ago" => "hace 1 minuto", "%d minutes ago" => "hace %d minutos", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index fd50027d8a1..7411806f93b 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -12,6 +12,8 @@ "Application is not enabled" => "La aplicación no está habilitada", "Authentication error" => "Error de autenticación", "Token expired. Please reload page." => "Token expirado. Por favor, recargá la página.", +"Files" => "Archivos", +"Text" => "Texto", "seconds ago" => "hace unos segundos", "1 minute ago" => "hace 1 minuto", "%d minutes ago" => "hace %d minutos", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 87f222af838..52d91d37655 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Rakendus pole sisse lülitatud", "Authentication error" => "Autentimise viga", "Token expired. Please reload page." => "Kontrollkood aegus. Paelun lae leht uuesti.", +"Files" => "Failid", +"Text" => "Tekst", "seconds ago" => "sekundit tagasi", "1 minute ago" => "1 minut tagasi", "%d minutes ago" => "%d minutit tagasi", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 461bf458778..c6c0e18ea99 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Aplikazioa ez dago gaituta", "Authentication error" => "Autentikazio errorea", "Token expired. Please reload page." => "Tokena iraungitu da. Mesedez birkargatu orria.", +"Files" => "Fitxategiak", +"Text" => "Testua", "seconds ago" => "orain dela segundu batzuk", "1 minute ago" => "orain dela minutu 1", "%d minutes ago" => "orain dela %d minutu", diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index 3579329820f..31f936b8c98 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -4,6 +4,8 @@ "Settings" => "تنظیمات", "Users" => "کاربران", "Admin" => "مدیر", +"Files" => "پرونده‌ها", +"Text" => "متن", "seconds ago" => "ثانیه‌ها پیش", "1 minute ago" => "1 دقیقه پیش", "%d minutes ago" => "%d دقیقه پیش", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 6f0ebcd16e6..47d734ca365 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Sovellusta ei ole otettu käyttöön", "Authentication error" => "Todennusvirhe", "Token expired. Please reload page." => "Valtuutus vanheni. Lataa sivu uudelleen.", +"Files" => "Tiedostot", +"Text" => "Teksti", "seconds ago" => "sekuntia sitten", "1 minute ago" => "1 minuutti sitten", "%d minutes ago" => "%d minuuttia sitten", diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index c10259e6376..1c05b3435af 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -12,6 +12,8 @@ "Application is not enabled" => "L'application n'est pas activée", "Authentication error" => "Erreur d'authentification", "Token expired. Please reload page." => "La session a expiré. Veuillez recharger la page.", +"Files" => "Fichiers", +"Text" => "Texte", "seconds ago" => "à l'instant", "1 minute ago" => "il y a 1 minute", "%d minutes ago" => "il y a %d minutes", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index 7a9de627c2d..96368ef03db 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -12,6 +12,7 @@ "Application is not enabled" => "O aplicativo non está habilitado", "Authentication error" => "Erro na autenticación", "Token expired. Please reload page." => "Testemuño caducado. Por favor recargue a páxina.", +"Text" => "Texto", "seconds ago" => "hai segundos", "1 minute ago" => "hai 1 minuto", "%d minutes ago" => "hai %d minutos", diff --git a/lib/l10n/he.php b/lib/l10n/he.php index 149637d09d2..27bcf7655d5 100644 --- a/lib/l10n/he.php +++ b/lib/l10n/he.php @@ -12,6 +12,7 @@ "Application is not enabled" => "יישומים אינם מופעלים", "Authentication error" => "שגיאת הזדהות", "Token expired. Please reload page." => "פג תוקף. נא לטעון שוב את הדף.", +"Text" => "טקסט", "seconds ago" => "שניות", "1 minute ago" => "לפני דקה אחת", "%d minutes ago" => "לפני %d דקות", diff --git a/lib/l10n/hr.php b/lib/l10n/hr.php new file mode 100644 index 00000000000..0d2a0f46248 --- /dev/null +++ b/lib/l10n/hr.php @@ -0,0 +1,16 @@ + "Pomoć", +"Personal" => "Osobno", +"Settings" => "Postavke", +"Users" => "Korisnici", +"Authentication error" => "Greška kod autorizacije", +"Files" => "Datoteke", +"Text" => "Tekst", +"seconds ago" => "sekundi prije", +"today" => "danas", +"yesterday" => "jučer", +"last month" => "prošli mjesec", +"months ago" => "mjeseci", +"last year" => "prošlu godinu", +"years ago" => "godina" +); diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index eb074b79c61..3abf96e85a8 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -12,6 +12,8 @@ "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.", +"Files" => "Fájlok", +"Text" => "Szöveg", "seconds ago" => "másodperccel ezelőtt", "1 minute ago" => "1 perccel ezelőtt", "%d minutes ago" => "%d perccel ezelőtt", diff --git a/lib/l10n/ia.php b/lib/l10n/ia.php new file mode 100644 index 00000000000..fb7595d564e --- /dev/null +++ b/lib/l10n/ia.php @@ -0,0 +1,7 @@ + "Adjuta", +"Personal" => "Personal", +"Settings" => "Configurationes", +"Users" => "Usatores", +"Text" => "Texto" +); diff --git a/lib/l10n/id.php b/lib/l10n/id.php index 3f9bc4ee6ba..40c4532bdd0 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -12,6 +12,7 @@ "Application is not enabled" => "aplikasi tidak diaktifkan", "Authentication error" => "autentikasi bermasalah", "Token expired. Please reload page." => "token kadaluarsa.mohon perbaharui laman.", +"Text" => "teks", "seconds ago" => "beberapa detik yang lalu", "1 minute ago" => "1 menit lalu", "%d minutes ago" => "%d menit lalu", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index c4c7d90610b..98ba5973a4a 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -12,6 +12,9 @@ "Application is not enabled" => "L'applicazione non è abilitata", "Authentication error" => "Errore di autenticazione", "Token expired. Please reload page." => "Token scaduto. Ricarica la pagina.", +"Files" => "File", +"Text" => "Testo", +"Images" => "Immagini", "seconds ago" => "secondi fa", "1 minute ago" => "1 minuto fa", "%d minutes ago" => "%d minuti fa", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 10f7276703a..eb3316b4ab1 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -12,6 +12,9 @@ "Application is not enabled" => "アプリケーションは無効です", "Authentication error" => "認証エラー", "Token expired. Please reload page." => "トークンが無効になりました。ページを再読込してください。", +"Files" => "ファイル", +"Text" => "TTY TDD", +"Images" => "画像", "seconds ago" => "秒前", "1 minute ago" => "1分前", "%d minutes ago" => "%d 分前", diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index 9820ce68599..69b72e04130 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -5,6 +5,13 @@ "Users" => "მომხმარებელი", "Apps" => "აპლიკაციები", "Admin" => "ადმინისტრატორი", +"Authentication error" => "ავთენტიფიკაციის შეცდომა", +"Text" => "ტექსტი", +"seconds ago" => "წამის წინ", +"1 minute ago" => "1 წუთის წინ", +"today" => "დღეს", +"yesterday" => "გუშინ", +"last month" => "გასულ თვეში", "months ago" => "თვის წინ", "last year" => "ბოლო წელს", "years ago" => "წლის წინ", diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php new file mode 100644 index 00000000000..8648eba63b2 --- /dev/null +++ b/lib/l10n/ko.php @@ -0,0 +1,8 @@ + "도움말", +"Personal" => "개인의", +"Settings" => "설정", +"Users" => "사용자", +"Authentication error" => "인증 오류", +"Text" => "문자 번호" +); diff --git a/lib/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php new file mode 100644 index 00000000000..f89871f23c9 --- /dev/null +++ b/lib/l10n/ku_IQ.php @@ -0,0 +1,5 @@ + "یارمەتی", +"Settings" => "ده‌ستكاری", +"Users" => "به‌كارهێنه‌ر" +); diff --git a/lib/l10n/lb.php b/lib/l10n/lb.php new file mode 100644 index 00000000000..baee630e897 --- /dev/null +++ b/lib/l10n/lb.php @@ -0,0 +1,6 @@ + "Perséinlech", +"Settings" => "Astellungen", +"Authentication error" => "Authentifikatioun's Fehler", +"Text" => "SMS" +); diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index a20daf4cb5b..b34c602af2a 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Programa neįjungta", "Authentication error" => "Autentikacijos klaida", "Token expired. Please reload page." => "Sesija baigėsi. Prašome perkrauti puslapį.", +"Files" => "Failai", +"Text" => "Žinučių", "seconds ago" => "prieš kelias sekundes", "1 minute ago" => "prieš 1 minutę", "%d minutes ago" => "prieš %d minučių", diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php new file mode 100644 index 00000000000..fb333bd55c3 --- /dev/null +++ b/lib/l10n/lv.php @@ -0,0 +1,7 @@ + "Palīdzība", +"Personal" => "Personīgi", +"Settings" => "Iestatījumi", +"Users" => "Lietotāji", +"Authentication error" => "Ielogošanās kļūme" +); diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php new file mode 100644 index 00000000000..55e010d61ad --- /dev/null +++ b/lib/l10n/mk.php @@ -0,0 +1,7 @@ + "Помош", +"Personal" => "Лично", +"Settings" => "Параметри", +"Users" => "Корисници", +"Text" => "Текст" +); diff --git a/lib/l10n/ms_MY.php b/lib/l10n/ms_MY.php new file mode 100644 index 00000000000..86c7e51b486 --- /dev/null +++ b/lib/l10n/ms_MY.php @@ -0,0 +1,8 @@ + "Peribadi", +"Settings" => "Tetapan", +"Users" => "Pengguna", +"Authentication error" => "Ralat pengesahan", +"Files" => "Fail-fail", +"Text" => "Teks" +); diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index c43ada258d4..afb80288b53 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Applikasjon er ikke påslått", "Authentication error" => "Autentiseringsfeil", "Token expired. Please reload page." => "Symbol utløpt. Vennligst last inn siden på nytt.", +"Files" => "Filer", +"Text" => "Tekst", "seconds ago" => "sekunder siden", "1 minute ago" => "1 minuitt siden", "%d minutes ago" => "%d minutter siden", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 583956c66e6..ca867c37cf0 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -12,6 +12,8 @@ "Application is not enabled" => "De applicatie is niet actief", "Authentication error" => "Authenticatie fout", "Token expired. Please reload page." => "Token verlopen. Herlaad de pagina.", +"Files" => "Bestanden", +"Text" => "Tekst", "seconds ago" => "seconden geleden", "1 minute ago" => "1 minuut geleden", "%d minutes ago" => "%d minuten geleden", diff --git a/lib/l10n/nn_NO.php b/lib/l10n/nn_NO.php new file mode 100644 index 00000000000..56ce733fc19 --- /dev/null +++ b/lib/l10n/nn_NO.php @@ -0,0 +1,8 @@ + "Hjelp", +"Personal" => "Personleg", +"Settings" => "Innstillingar", +"Users" => "Brukarar", +"Authentication error" => "Feil i autentisering", +"Text" => "Tekst" +); diff --git a/lib/l10n/oc.php b/lib/l10n/oc.php index ffc0588becc..2ac89fc74c1 100644 --- a/lib/l10n/oc.php +++ b/lib/l10n/oc.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Los fichièrs devan èsser avalcargats un per un.", "Back to Files" => "Torna cap als fichièrs", "Authentication error" => "Error d'autentificacion", +"Files" => "Fichièrs", "seconds ago" => "segonda a", "1 minute ago" => "1 minuta a", "%d minutes ago" => "%d minutas a", diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index 087aaa227d3..0fb29cbedbf 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -12,6 +12,9 @@ "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ę.", +"Files" => "Pliki", +"Text" => "Połączenie tekstowe", +"Images" => "Obrazy", "seconds ago" => "sekund temu", "1 minute ago" => "1 minutę temu", "%d minutes ago" => "%d minut temu", diff --git a/lib/l10n/pl_PL.php b/lib/l10n/pl_PL.php new file mode 100644 index 00000000000..67cf0a33259 --- /dev/null +++ b/lib/l10n/pl_PL.php @@ -0,0 +1,3 @@ + "Ustawienia" +); diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 1455eabbc94..5eb2348100a 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Aplicação não está habilitada", "Authentication error" => "Erro de autenticação", "Token expired. Please reload page." => "Token expirou. Por favor recarregue a página.", +"Files" => "Arquivos", +"Text" => "Texto", "seconds ago" => "segundos atrás", "1 minute ago" => "1 minuto atrás", "%d minutes ago" => "%d minutos atrás", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index c3cee207a16..ca0281f1341 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -12,6 +12,8 @@ "Application is not enabled" => "A aplicação não está activada", "Authentication error" => "Erro na autenticação", "Token expired. Please reload page." => "O token expirou. Por favor recarregue a página.", +"Files" => "Ficheiros", +"Text" => "Texto", "seconds ago" => "há alguns segundos", "1 minute ago" => "há 1 minuto", "%d minutes ago" => "há %d minutos", diff --git a/lib/l10n/ro.php b/lib/l10n/ro.php index 5fffeec2335..818b3f3eeed 100644 --- a/lib/l10n/ro.php +++ b/lib/l10n/ro.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Aplicația nu este activată", "Authentication error" => "Eroare la autentificare", "Token expired. Please reload page." => "Token expirat. Te rugăm să reîncarci pagina.", +"Files" => "Fișiere", +"Text" => "Text", "seconds ago" => "secunde în urmă", "1 minute ago" => "1 minut în urmă", "%d minutes ago" => "%d minute în urmă", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 74425f0e134..c703c30ac44 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Приложение не разрешено", "Authentication error" => "Ошибка аутентификации", "Token expired. Please reload page." => "Токен просрочен. Перезагрузите страницу.", +"Files" => "Файлы", +"Text" => "Текст", "seconds ago" => "менее минуты", "1 minute ago" => "1 минуту назад", "%d minutes ago" => "%d минут назад", diff --git a/lib/l10n/ru_RU.php b/lib/l10n/ru_RU.php index decf63efb97..36cc85e8d28 100644 --- a/lib/l10n/ru_RU.php +++ b/lib/l10n/ru_RU.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Приложение не запущено", "Authentication error" => "Ошибка аутентификации", "Token expired. Please reload page." => "Маркер истек. Пожалуйста, перезагрузите страницу.", +"Files" => "Файлы", +"Text" => "Текст", "seconds ago" => "секунд назад", "1 minute ago" => "1 минуту назад", "%d minutes ago" => "%d минут назад", diff --git a/lib/l10n/si_LK.php b/lib/l10n/si_LK.php index e5728050ce1..58e8ba3ff80 100644 --- a/lib/l10n/si_LK.php +++ b/lib/l10n/si_LK.php @@ -12,6 +12,7 @@ "Application is not enabled" => "යෙදුම සක්‍රිය කර නොමැත", "Authentication error" => "සත්‍යාපනය කිරීමේ දෝශයක්", "Token expired. Please reload page." => "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව නැවුම් කරන්න", +"Text" => "පෙළ", "seconds ago" => "තත්පරයන්ට පෙර", "1 minute ago" => "1 මිනිත්තුවකට පෙර", "%d minutes ago" => "%d මිනිත්තුවන්ට පෙර", diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 8c77e82b7a6..fef1802b4ec 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -11,6 +11,8 @@ "Selected files too large to generate zip file." => "Zvolené súbory sú príliž veľké na vygenerovanie zip súboru.", "Application is not enabled" => "Aplikácia nie je zapnutá", "Authentication error" => "Chyba autentifikácie", +"Files" => "Súbory", +"Text" => "SMS", "seconds ago" => "pred sekundami", "1 minute ago" => "pred 1 minútou", "%d minutes ago" => "pred %d minútami", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 87fd0fb027d..3dc8753a436 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Program ni omogočen", "Authentication error" => "Napaka overitve", "Token expired. Please reload page." => "Žeton je potekel. Spletišče je traba znova naložiti.", +"Files" => "Datoteke", +"Text" => "Besedilo", "seconds ago" => "pred nekaj sekundami", "1 minute ago" => "pred minuto", "%d minutes ago" => "pred %d minutami", diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php new file mode 100644 index 00000000000..cec7ea703fb --- /dev/null +++ b/lib/l10n/sr.php @@ -0,0 +1,8 @@ + "Помоћ", +"Personal" => "Лично", +"Settings" => "Подешавања", +"Users" => "Корисници", +"Authentication error" => "Грешка при аутентификацији", +"Text" => "Текст" +); diff --git a/lib/l10n/sr@latin.php b/lib/l10n/sr@latin.php new file mode 100644 index 00000000000..c692ec3c4b7 --- /dev/null +++ b/lib/l10n/sr@latin.php @@ -0,0 +1,8 @@ + "Pomoć", +"Personal" => "Lično", +"Settings" => "Podešavanja", +"Users" => "Korisnici", +"Authentication error" => "Greška pri autentifikaciji", +"Text" => "Tekst" +); diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 3d377133f22..cc1e09ea76a 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -12,6 +12,9 @@ "Application is not enabled" => "Applikationen är inte aktiverad", "Authentication error" => "Fel vid autentisering", "Token expired. Please reload page." => "Ogiltig token. Ladda om sidan.", +"Files" => "Filer", +"Text" => "Text", +"Images" => "Bilder", "seconds ago" => "sekunder sedan", "1 minute ago" => "1 minut sedan", "%d minutes ago" => "%d minuter sedan", diff --git a/lib/l10n/ta_LK.php b/lib/l10n/ta_LK.php new file mode 100644 index 00000000000..28d552c2b7a --- /dev/null +++ b/lib/l10n/ta_LK.php @@ -0,0 +1,15 @@ + "உதவி", +"Personal" => "தனிப்பட்ட", +"Settings" => "அமைப்புகள்", +"Users" => "பயனாளர்கள்", +"Files" => "கோப்புகள்", +"seconds ago" => "செக்கன்களுக்கு முன்", +"1 minute ago" => "1 நிமிடத்திற்கு முன் ", +"today" => "இன்று", +"yesterday" => "நேற்று", +"last month" => "கடந்த மாதம்", +"months ago" => "மாதங்களுக்கு முன", +"last year" => "கடந்த வருடம்", +"years ago" => "வருடங்களுக்கு முன்" +); diff --git a/lib/l10n/th_TH.php b/lib/l10n/th_TH.php index 2aa2ffaba8c..2767ed643a6 100644 --- a/lib/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -12,6 +12,8 @@ "Application is not enabled" => "แอพพลิเคชั่นดังกล่าวยังไม่ได้เปิดใช้งาน", "Authentication error" => "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน", "Token expired. Please reload page." => "รหัสยืนยันความถูกต้องหมดอายุแล้ว กรุณาโหลดหน้าเว็บใหม่อีกครั้ง", +"Files" => "ไฟล์", +"Text" => "ข้อความ", "seconds ago" => "วินาทีที่ผ่านมา", "1 minute ago" => "1 นาทีมาแล้ว", "%d minutes ago" => "%d นาทีที่ผ่านมา", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php new file mode 100644 index 00000000000..69067d7ec57 --- /dev/null +++ b/lib/l10n/tr.php @@ -0,0 +1,9 @@ + "Yardı", +"Personal" => "Kişisel", +"Settings" => "Ayarlar", +"Users" => "Kullanıcılar", +"Authentication error" => "Kimlik doğrulama hatası", +"Files" => "Dosyalar", +"Text" => "Metin" +); diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index 423aa12b2d7..b08f559595b 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -11,6 +11,8 @@ "Selected files too large to generate zip file." => "Вибрані фали завеликі для генерування zip файлу.", "Application is not enabled" => "Додаток не увімкнений", "Authentication error" => "Помилка автентифікації", +"Files" => "Файли", +"Text" => "Текст", "seconds ago" => "секунди тому", "1 minute ago" => "1 хвилину тому", "%d minutes ago" => "%d хвилин тому", diff --git a/lib/l10n/vi.php b/lib/l10n/vi.php index fc41d69819a..956d2b2bfe5 100644 --- a/lib/l10n/vi.php +++ b/lib/l10n/vi.php @@ -12,6 +12,8 @@ "Application is not enabled" => "Ứng dụng không được BẬT", "Authentication error" => "Lỗi xác thực", "Token expired. Please reload page." => "Mã Token đã hết hạn. Hãy tải lại trang.", +"Files" => "Các tập tin", +"Text" => "Văn bản", "seconds ago" => "1 giây trước", "1 minute ago" => "1 phút trước", "%d minutes ago" => "%d phút trước", diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php index 4b0a5e9f4d2..adc5c3bc6a9 100644 --- a/lib/l10n/zh_CN.GB2312.php +++ b/lib/l10n/zh_CN.GB2312.php @@ -12,6 +12,8 @@ "Application is not enabled" => "应用未启用", "Authentication error" => "验证错误", "Token expired. Please reload page." => "会话过期。请刷新页面。", +"Files" => "文件", +"Text" => "文本", "seconds ago" => "秒前", "1 minute ago" => "1 分钟前", "%d minutes ago" => "%d 分钟前", diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 8229c77d2dd..6cdfd472510 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -12,6 +12,9 @@ "Application is not enabled" => "不需要程序", "Authentication error" => "认证错误", "Token expired. Please reload page." => "Token 过期,请刷新页面。", +"Files" => "文件", +"Text" => "文本", +"Images" => "图像", "seconds ago" => "几秒前", "1 minute ago" => "1分钟前", "%d minutes ago" => "%d 分钟前", diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index c9a26a53b2a..3122695033a 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -12,6 +12,8 @@ "Application is not enabled" => "應用程式未啟用", "Authentication error" => "認證錯誤", "Token expired. Please reload page." => "Token 過期. 請重新整理頁面", +"Files" => "檔案", +"Text" => "文字", "seconds ago" => "幾秒前", "1 minute ago" => "1 分鐘前", "%d minutes ago" => "%d 分鐘前", From 43ac43d7af95df2c4ef8002f9f0556ebc72ae3b0 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 24 Oct 2012 17:31:22 +0200 Subject: [PATCH 09/12] dir in newfile has to start with / --- apps/files/ajax/newfile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 77d866979c3..b87079f2712 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -9,7 +9,7 @@ if(!OC_User::isLoggedIn()) { session_write_close(); // Get the params -$dir = isset( $_REQUEST['dir'] ) ? trim($_REQUEST['dir'], '/\\') : ''; +$dir = isset( $_REQUEST['dir'] ) ? '/'.trim($_REQUEST['dir'], '/\\') : ''; $filename = isset( $_REQUEST['filename'] ) ? trim($_REQUEST['filename'], '/\\') : ''; $content = isset( $_REQUEST['content'] ) ? $_REQUEST['content'] : ''; $source = isset( $_REQUEST['source'] ) ? trim($_REQUEST['source'], '/\\') : ''; From 55277c8e5a9a54baed3b1070eafffaa0f6d54c71 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 25 Oct 2012 11:54:27 +0200 Subject: [PATCH 10/12] Allow any characters in the groupname Fixes #82 --- lib/group.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/group.php b/lib/group.php index 66892a99b60..a89c6c55e36 100644 --- a/lib/group.php +++ b/lib/group.php @@ -65,15 +65,8 @@ class OC_Group { * * Tries to create a new group. If the group name already exists, false will * be returned. Basic checking of Group name - * - * Allowed characters in the username are: "a-z", "A-Z", "0-9" and "_.@-" */ public static function createGroup( $gid ) { - // Check the name for bad characters - // Allowed are: "a-z", "A-Z", "0-9" and "_.@-" - if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $gid )) { - return false; - } // No empty group names! if( !$gid ) { return false; From 228a05a79247da63504445c75cb5925b563ac0b3 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 25 Oct 2012 16:49:55 +0200 Subject: [PATCH 11/12] Check for iconv --- lib/util.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 907b4554037..72b5e4d260e 100755 --- a/lib/util.php +++ b/lib/util.php @@ -296,7 +296,10 @@ class OC_Util { $errors[]=array('error'=>'PHP module zlib is not installed.
','hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } - + if(!function_exists('iconv')) { + $errors[]=array('error'=>'PHP module iconv is not installed.
','hint'=>'Please ask your server administrator to install the module.'); + $web_server_restart= false; + } if(!function_exists('simplexml_load_string')) { $errors[]=array('error'=>'PHP module SimpleXML is not installed.
','hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; From ec613b589bed2069346696902f59eadc2a3a91d5 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 25 Oct 2012 17:51:59 +0200 Subject: [PATCH 12/12] Fix not defined JS variables --- core/templates/layout.guest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 6f59e18a8e1..1f39148b2b1 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -12,6 +12,9 @@ var oc_appswebroots = ; var oc_requesttoken = ''; var oc_requestlifespan = ''; + var dayNames = t('Sunday'), (string)$l->t('Monday'), (string)$l->t('Tuesday'), (string)$l->t('Wednesday'), (string)$l->t('Thursday'), (string)$l->t('Friday'), (string)$l->t('Saturday'))) ?>; + var monthNames = t('January'), (string)$l->t('February'), (string)$l->t('March'), (string)$l->t('April'), (string)$l->t('May'), (string)$l->t('June'), (string)$l->t('July'), (string)$l->t('August'), (string)$l->t('September'), (string)$l->t('October'), (string)$l->t('November'), (string)$l->t('December'))) ?>; + var firstDay = l('firstday')) ?>;