merge master into filesystem

This commit is contained in:
Robin Appelman 2012-10-25 18:26:08 +02:00
commit 7bc49d2a57
276 changed files with 1791 additions and 1053 deletions

View File

@ -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_User::isLoggedIn() && ($dir != '' || $file != 'Shared')) {
$targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file);

View File

@ -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'], '/\\') : '';

View File

@ -1,6 +1,6 @@
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
$crumb = $_["breadcrumb"][$i]; ?>
<div class="crumb <?php if($i == count($_["breadcrumb"])-1) echo 'last';?> svg" data-dir='<?php echo urlencode($crumb["dir"]);?>' style='background-image:url("<?php echo OCP\image_path('core','breadcrumb.png');?>")'>
<a href="<?php echo urlencode($_['baseURL'].$crumb["dir"]); ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a>
<a href="<?php echo $_['baseURL'].urlencode($crumb["dir"]); ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a>
</div>
<?php endfor;?>

View File

@ -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); ?>
<tr data-id="<?php echo $file['id']; ?>" data-file="<?php echo $name;?>" data-type="<?php echo ($file['type'] == 'dir')?'dir':'file'?>" data-mime="<?php echo $file['mimetype']?>" data-size='<?php echo $file['size'];?>' data-permissions='<?php echo $file['permissions']; ?>'>
<td class="filename svg" style="background-image:url(<?php if($file['type'] == 'dir') echo OCP\mimetype_icon('dir'); else echo OCP\mimetype_icon($file['mimetype']); ?>)">

View File

@ -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);
}

View File

@ -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;
}
}
@ -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),'');
}
}
}

View File

@ -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);

View File

@ -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);
}
}

View File

@ -30,7 +30,7 @@ class Test_CryptProxy extends UnitTestCase {
//set up temporary storage
\OC\Files\Filesystem::clearMounts();
\OC\Files\Filesystem::mount('\OC\Files\Storage\Temporary',array(),'/');
\OC\Files\Filesystem::mount('\OC\Files\Storage\Temporary' ,array(), '/');
\OC\Files\Filesystem::init('/'.$user.'/files');
@ -59,7 +59,7 @@ class Test_CryptProxy extends UnitTestCase {
$fromFile=\OC\Files\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\Files\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\Files\Filesystem::file_get_contents('/file');
$this->assertNotEqual($original,$stored);
$this->assertEqual(strlen($original),strlen($fromFile));
$this->assertEqual(strlen($original), strlen($fromFile));
}
}

View File

@ -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);
}
}

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
"Access granted" => "权限已授予。",
"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" => "用户",

View File

@ -60,7 +60,7 @@ class FTP extends \OC\Files\Storage\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+':
@ -71,7 +71,7 @@ class FTP extends \OC\Files\Storage\StreamWrapper{
case 'c+':
//emulate these
if(strrpos($path,'.')!==false) {
$ext=substr($path,strrpos($path,'.'));
$ext=substr($path, strrpos($path,'.'));
}else{
$ext='';
}
@ -89,7 +89,7 @@ class FTP extends \OC\Files\Storage\StreamWrapper{
public function writeBack($tmpFile) {
$this->init();
if(isset(self::$tempFiles[$tmpFile])) {
$this->uploadFile($tmpFile,self::$tempFiles[$tmpFile]);
$this->uploadFile($tmpFile, self::$tempFiles[$tmpFile]);
unlink($tmpFile);
}
}

View File

@ -400,7 +400,7 @@ class Google extends \OC\Files\Storage\Common {
case 'c':
case 'c+':
if (strrpos($path,'.') !== false) {
$ext = substr($path,strrpos($path,'.'));
$ext = substr($path, strrpos($path,'.'));
} else {
$ext = '';
}

View File

@ -87,7 +87,7 @@ class SWIFT extends \OC\Files\Storage\Common{
$parentContainer=$this->getContainer($parent);
}
}
$this->addSubContainer($parentContainer,basename($path));
$this->addSubContainer($parentContainer, basename($path));
return $this->conn->create_container($this->getContainerName($path));
}
@ -248,7 +248,7 @@ class SWIFT extends \OC\Files\Storage\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);
@ -324,7 +324,7 @@ class SWIFT extends \OC\Files\Storage\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));
@ -467,7 +467,7 @@ class SWIFT extends \OC\Files\Storage\Common{
public function writeBack($tmpFile) {
if(isset(self::$tempFiles[$tmpFile])) {
$this->fromTmpFile($tmpFile,self::$tempFiles[$tmpFile]);
$this->fromTmpFile($tmpFile, self::$tempFiles[$tmpFile]);
unlink($tmpFile);
}
}
@ -495,7 +495,7 @@ class SWIFT extends \OC\Files\Storage\Common{
$this->init();
$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);
@ -508,7 +508,7 @@ class SWIFT extends \OC\Files\Storage\Common{
$this->init();
$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);

View File

@ -80,13 +80,13 @@ class DAV extends \OC\Files\Storage\Common{
public function mkdir($path) {
$this->init();
$path=$this->cleanPath($path);
return $this->simpleResponse('MKCOL',$path,null,201);
return $this->simpleResponse('MKCOL',$path, null,201);
}
public function rmdir($path) {
$this->init();
$path=$this->cleanPath($path);
return $this->simpleResponse('DELETE',$path,null,204);
return $this->simpleResponse('DELETE',$path, null,204);
}
public function opendir($path) {
@ -143,7 +143,7 @@ class DAV extends \OC\Files\Storage\Common{
public function unlink($path) {
$this->init();
return $this->simpleResponse('DELETE',$path,null,204);
return $this->simpleResponse('DELETE', $path, null ,204);
}
public function fopen($path,$mode) {
@ -180,7 +180,7 @@ class DAV extends \OC\Files\Storage\Common{
case 'c+':
//emulate these
if(strrpos($path,'.')!==false) {
$ext=substr($path,strrpos($path,'.'));
$ext=substr($path, strrpos($path,'.'));
}else{
$ext='';
}
@ -196,7 +196,7 @@ class DAV extends \OC\Files\Storage\Common{
public function writeBack($tmpFile) {
if(isset(self::$tempFiles[$tmpFile])) {
$this->uploadFile($tmpFile,self::$tempFiles[$tmpFile]);
$this->uploadFile($tmpFile, self::$tempFiles[$tmpFile]);
unlink($tmpFile);
}
}
@ -251,7 +251,7 @@ class DAV extends \OC\Files\Storage\Common{
$path1=$this->cleanPath($path1);
$path2=$this->root.$this->cleanPath($path2);
try{
$this->client->request('MOVE',$path1,null,array('Destination'=>$path2));
$this->client->request('MOVE', $path1, null, array('Destination' => $path2));
return true;
}catch(\Exception $e) {
return false;
@ -263,7 +263,7 @@ class DAV extends \OC\Files\Storage\Common{
$path1=$this->cleanPath($path1);
$path2=$this->root.$this->cleanPath($path2);
try{
$this->client->request('COPY',$path1,null,array('Destination'=>$path2));
$this->client->request('COPY', $path1, null, array('Destination' => $path2));
return true;
}catch(\Exception $e) {
return false;

View File

@ -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='.urlencode($getPath), false);
}
}
$tmpl->printPage();

View File

@ -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']);

View File

@ -100,7 +100,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;
}
@ -110,7 +110,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

View File

@ -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;

View File

@ -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()));
}
}

View File

@ -1,5 +1,6 @@
<?php $TRANSLATIONS = array(
"Settings" => "تعديلات",
"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 <strong>admin account</strong>" => "أضف </strong>مستخدم رئيسي <strong>",
"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" => "تذكر",

View File

@ -35,6 +35,13 @@
"Database name" => "Име на базата",
"Database host" => "Хост за базата",
"Finish setup" => "Завършване на настройките",
"Sunday" => "Неделя",
"Monday" => "Понеделник",
"Tuesday" => "Вторник",
"Wednesday" => "Сряда",
"Thursday" => "Четвъртък",
"Friday" => "Петък",
"Saturday" => "Събота",
"January" => "Януари",
"February" => "Февруари",
"March" => "Март",

View File

@ -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ç",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -69,6 +69,13 @@
"Database host" => "Διακομιστής βάσης δεδομένων",
"Finish setup" => "Ολοκλήρωση εγκατάστασης",
"web services under your control" => "Υπηρεσίες web υπό τον έλεγχό σας",
"Sunday" => "Κυριακή",
"Monday" => "Δευτέρα",
"Tuesday" => "Τρίτη",
"Wednesday" => "Τετάρτη",
"Thursday" => "Πέμπτη",
"Friday" => "Παρασκευή",
"Saturday" => "Σάββατο",
"January" => "Ιανουάριος",
"February" => "Φεβρουάριος",
"March" => "Μάρτιος",

View File

@ -52,6 +52,7 @@
"Cloud not found" => "La nubo ne estas trovita",
"Edit categories" => "Redakti kategoriojn",
"Add" => "Aldoni",
"Security Warning" => "Sekureca averto",
"Create an <strong>admin account</strong>" => "Krei <strong>administran konton</strong>",
"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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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 <strong>admin account</strong>" => "Sortu <strong>kudeatzaile kontu<strong> 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",

View File

@ -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 <strong>admin account</strong>" => "لطفا یک <strong> شناسه برای مدیر</strong> بسازید",
"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" => "مارس",

View File

@ -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 <strong>admin account</strong>" => "Luo <strong>ylläpitäjän tunnus</strong>",
"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",

View File

@ -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",

View File

@ -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 <strong>admin account</strong>" => "Crear unha <strong>contra de administrador</strong>",
"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",

View File

@ -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" => "מרץ",

View File

@ -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",

View File

@ -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 <strong>admin account</strong>" => "<strong>Rendszergazdafiók</strong> 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",

View File

@ -1,6 +1,7 @@
<?php $TRANSLATIONS = array(
"This category already exists: " => "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",

View File

@ -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",

View File

@ -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",

View File

@ -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月",

View File

@ -67,6 +67,13 @@
"Database host" => "ბაზის ჰოსტი",
"Finish setup" => "კონფიგურაციის დასრულება",
"web services under your control" => "თქვენი კონტროლის ქვეშ მყოფი ვებ სერვისები",
"Sunday" => "კვირა",
"Monday" => "ორშაბათი",
"Tuesday" => "სამშაბათი",
"Wednesday" => "ოთხშაბათი",
"Thursday" => "ხუთშაბათი",
"Friday" => "პარასკევი",
"Saturday" => "შაბათი",
"January" => "იანვარი",
"February" => "თებერვალი",
"March" => "მარტი",

View File

@ -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 <strong>admin account</strong>" => "<strong>관리자 계정</strong>을 만드십시오",
"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월",

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array(
"Settings" => "ده‌ستكاری",
"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" => "دواتر"

View File

@ -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 <strong>admin account</strong>" => "En <strong>Admin Account</strong> 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",

View File

@ -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",

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array(
"Settings" => "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",

View File

@ -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" => "Март",

View File

@ -30,6 +30,7 @@
"Cloud not found" => "Awan tidak dijumpai",
"Edit categories" => "Edit kategori",
"Add" => "Tambah",
"Security Warning" => "Amaran keselamatan",
"Create an <strong>admin account</strong>" => "buat <strong>akaun admin</strong>",
"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",

View File

@ -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 <strong>admin account</strong>" => "opprett en <strong>administrator-konto</strong>",
"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",

View File

@ -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",

View File

@ -1,5 +1,7 @@
<?php $TRANSLATIONS = array(
"Settings" => "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 <strong>admin account</strong>" => "Lag ein <strong>admin-konto</strong>",
"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",

View File

@ -52,6 +52,7 @@
"Cloud not found" => "Nívol pas trobada",
"Edit categories" => "Edita categorias",
"Add" => "Ajusta",
"Security Warning" => "Avertiment de securitat",
"Create an <strong>admin account</strong>" => "Crea un <strong>compte admin</strong>",
"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ç",

View File

@ -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",

4
core/l10n/pl_PL.php Normal file
View File

@ -0,0 +1,4 @@
<?php $TRANSLATIONS = array(
"Settings" => "Ustawienia",
"Username" => "Nazwa użytkownika"
);

View File

@ -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 <strong>admin account</strong>" => "Criar uma <strong>conta</strong> de <strong>administrador</strong>",
"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",

View File

@ -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 <strong>admin account</strong>" => "Criar uma <strong>conta administrativa</strong>",
"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",

View File

@ -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 <strong>admin account</strong>" => "Crează un <strong>cont de administrator</strong>",
"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",

View File

@ -71,6 +71,13 @@
"Database host" => "Хост базы данных",
"Finish setup" => "Завершить установку",
"web services under your control" => "Сетевые службы под твоим контролем",
"Sunday" => "Воскресенье",
"Monday" => "Понедельник",
"Tuesday" => "Вторник",
"Wednesday" => "Среда",
"Thursday" => "Четверг",
"Friday" => "Пятница",
"Saturday" => "Суббота",
"January" => "Январь",
"February" => "Февраль",
"March" => "Март",

View File

@ -71,6 +71,13 @@
"Database host" => "Сервер базы данных",
"Finish setup" => "Завершение настройки",
"web services under your control" => "веб-сервисы под Вашим контролем",
"Sunday" => "Воскресенье",
"Monday" => "Понедельник",
"Tuesday" => "Вторник",
"Wednesday" => "Среда",
"Thursday" => "Четверг",
"Friday" => "Пятница",
"Saturday" => "Суббота",
"January" => "Январь",
"February" => "Февраль",
"March" => "Март",

View File

@ -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" => "මාර්තු",

View File

@ -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 <strong>admin account</strong>" => "Vytvoriť <strong>administrátorský účet</strong>",
"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",

View File

@ -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 <strong>admin account</strong>" => "Ustvari <strong>skrbniški račun</strong>",
"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",

View File

@ -1,5 +1,6 @@
<?php $TRANSLATIONS = array(
"Settings" => "Подешавања",
"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 <strong>admin account</strong>" => "Направи <strong>административни налог</strong>",
"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" => "упамти",

View File

@ -1,5 +1,6 @@
<?php $TRANSLATIONS = array(
"Settings" => "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",

View File

@ -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",

View File

@ -71,6 +71,13 @@
"Database host" => "தரவுத்தள ஓம்புனர்",
"Finish setup" => "அமைப்பை முடிக்க",
"web services under your control" => "உங்கள் கட்டுப்பாட்டின் கீழ் இணைய சேவைகள்",
"Sunday" => "ஞாயிற்றுக்கிழமை",
"Monday" => "திங்கட்கிழமை",
"Tuesday" => "செவ்வாய்க்கிழமை",
"Wednesday" => "புதன்கிழமை",
"Thursday" => "வியாழக்கிழமை",
"Friday" => "வெள்ளிக்கிழமை",
"Saturday" => "சனிக்கிழமை",
"January" => "தை",
"February" => "மாசி",
"March" => "பங்குனி",

View File

@ -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 <strong>admin account</strong>" => "สร้าง <strong>บัญชีผู้ดูแลระบบ</strong>",
"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" => "มีนาคม",

View File

@ -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 <strong>admin account</strong>" => "Bir <strong>yönetici hesabı</strong> 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",

View File

@ -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" => "Березень",

View File

@ -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 <strong>admin account</strong>" => "Tạo một <strong>tài khoản quản trị</strong>",
"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",

View File

@ -68,6 +68,13 @@
"Database host" => "数据库主机",
"Finish setup" => "完成安装",
"web services under your control" => "你控制下的网络服务",
"Sunday" => "星期天",
"Monday" => "星期一",
"Tuesday" => "星期二",
"Wednesday" => "星期三",
"Thursday" => "星期四",
"Friday" => "星期五",
"Saturday" => "星期六",
"January" => "一月",
"February" => "二月",
"March" => "三月",

View File

@ -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 <strong>admin account</strong>" => "创建<strong>管理员账号</strong>",
"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. <br/>For security reasons you may be occasionally asked to enter your password again." => "请验证您的密码。 <br/>出于安全考虑,你可能偶尔会被要求再次输入密码。",
"Verify" => "验证"
);

View File

@ -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 <strong>admin account</strong>" => "建立一個<strong>管理者帳號</strong>",
"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" => "三月",

View File

@ -12,6 +12,9 @@
var oc_appswebroots = <?php echo $_['apps_paths'] ?>;
var oc_requesttoken = '<?php echo $_['requesttoken']; ?>';
var oc_requestlifespan = '<?php echo $_['requestlifespan']; ?>';
var dayNames = <?php echo json_encode(array((string)$l->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 = <?php echo json_encode(array((string)$l->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 = <?php echo json_encode($l->l('firstday')) ?>;
</script>
<?php foreach($_['jsfiles'] as $jsfile): ?>
<script type="text/javascript" src="<?php echo $jsfile; ?>"></script>

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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."

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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 <tomas.chvatal@gmail.com>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -3,6 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# <a.tangemann@web.de>, 2012.
# <blobbyjj@ymail.com>, 2012.
# Phi Lieb <>, 2012.
# <thomas.mueller@tmit.eu>, 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 <thomas.mueller@tmit.eu>\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 <a.tangemann@web.de>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <thomas.mueller@tmit.eu>\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"

Some files were not shown because too many files have changed in this diff Show More