Merge branch 'master' into files_encryption_check_private_key

Conflicts:
	apps/files_encryption/tests/crypt.php
This commit is contained in:
Björn Schießle 2013-06-11 15:19:02 +02:00
commit 20ddd6e1c7
568 changed files with 3057 additions and 2386 deletions

4
.gitignore vendored
View File

@ -6,7 +6,7 @@ config/mount.php
apps/inc.php apps/inc.php
# ignore all apps except core ones # ignore all apps except core ones
apps/* apps*
!apps/files !apps/files
!apps/files_encryption !apps/files_encryption
!apps/files_external !apps/files_external
@ -76,4 +76,4 @@ nbproject
data-autotest data-autotest
/tests/coverage* /tests/coverage*
/tests/autoconfig* /tests/autoconfig*
/tests/autotest* /tests/autotest*

View File

@ -1,4 +1,12 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password successfully changed." => "Ο κωδικός αλλάχτηκε επιτυχώς.",
"Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.",
"Saving..." => "Γίνεται αποθήκευση...", "Saving..." => "Γίνεται αποθήκευση...",
"Encryption" => "Κρυπτογράφηση" "Encryption" => "Κρυπτογράφηση",
"Recovery account password" => "Επαναφορά κωδικού πρόσβασης λογαριασμού",
"Enabled" => "Ενεργοποιημένο",
"Disabled" => "Απενεργοποιημένο",
"Change Password" => "Αλλαγή Κωδικού Πρόσβασης",
"Enable password recovery by sharing all files with your administrator:" => "Ενεργοποιήστε την επαναφορά κωδικού πρόσβασης με το να μοιραστείτε όλα τα αρχεία με τον διαχειριστή σας:",
"File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν"
); );

View File

@ -1,9 +1,22 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Recovery key successfully enabled" => "Chave de recuperação activada com sucesso",
"Could not enable recovery key. Please check your recovery key password!" => "Não foi possível activar a chave de recuperação. Por favor verifique a password da chave de recuperação!",
"Recovery key successfully disabled" => "Chave de recuperação descativada com sucesso",
"Could not disable recovery key. Please check your recovery key password!" => "Não foi possível desactivar a chave de recuperação. Por favor verifique a password da chave de recuperação.",
"Password successfully changed." => "Password alterada com sucesso.", "Password successfully changed." => "Password alterada com sucesso.",
"Could not change the password. Maybe the old password was not correct." => "Não foi possivel alterar a password. Possivelmente a password antiga não está correcta.", "Could not change the password. Maybe the old password was not correct." => "Não foi possivel alterar a password. Possivelmente a password antiga não está correcta.",
"Saving..." => "A guardar...", "Saving..." => "A guardar...",
"Encryption" => "Encriptação", "Encryption" => "Encriptação",
"Enable encryption passwords recovery key (allow sharing to recovery key):" => "Activar a chave de recuperação das passwords de encriptação (permitir partilha da chave de recuperação):",
"Recovery account password" => "Password de recuperação de conta",
"Enabled" => "Activado", "Enabled" => "Activado",
"Disabled" => "Desactivado", "Disabled" => "Desactivado",
"Change Password" => "Mudar a Password" "Change encryption passwords recovery key:" => "Alterar a chave de recuperação da password de encriptação:",
"Old Recovery account password" => "Password de recuperação de conta antiga:",
"New Recovery account password" => "Nova password de recuperação de conta",
"Change Password" => "Mudar a Password",
"Enable password recovery by sharing all files with your administrator:" => "Activar a recuperação de password ao partilhar todos os ficheiros com o administrador:",
"Enabling this option will allow you to reobtain access to your encrypted files if your password is lost" => "Activar esta opção, tornar-lhe-a possível a obtenção de acesso aos seus ficheiros encriptados caso perca a password.",
"File recovery settings updated" => "Actualizadas as definições de recuperação de ficheiros",
"Could not update file recovery" => "Não foi possível actualizar a recuperação de ficheiros"
); );

View File

@ -289,7 +289,7 @@ class Util {
*/ */
public function recoveryEnabledForUser() { public function recoveryEnabledForUser() {
$sql = 'SELECT `recovery_enabled` FROM `*PREFIX*encryption` WHERE uid = ?'; $sql = 'SELECT `recovery_enabled` FROM `*PREFIX*encryption` WHERE `uid` = ?';
$args = array($this->userId); $args = array($this->userId);
@ -347,7 +347,7 @@ class Util {
// Create a new record instead // Create a new record instead
} else { } else {
$sql = 'UPDATE `*PREFIX*encryption` SET recovery_enabled = ? WHERE uid = ?'; $sql = 'UPDATE `*PREFIX*encryption` SET `recovery_enabled` = ? WHERE `uid` = ?';
$args = array( $args = array(
$enabled, $enabled,
@ -1066,7 +1066,7 @@ class Util {
*/ */
public function setMigrationStatus($status) { public function setMigrationStatus($status) {
$sql = 'UPDATE `*PREFIX*encryption` SET migration_status = ? WHERE uid = ?'; $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ?';
$args = array( $args = array(
$status, $status,
@ -1095,7 +1095,7 @@ class Util {
*/ */
public function getMigrationStatus() { public function getMigrationStatus() {
$sql = 'SELECT `migration_status` FROM `*PREFIX*encryption` WHERE uid = ?'; $sql = 'SELECT `migration_status` FROM `*PREFIX*encryption` WHERE `uid` = ?';
$args = array($this->userId); $args = array($this->userId);

View File

@ -102,6 +102,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
\OC_User::deleteUser(\Test_Encryption_Crypt::TEST_ENCRYPTION_CRYPT_USER1); \OC_User::deleteUser(\Test_Encryption_Crypt::TEST_ENCRYPTION_CRYPT_USER1);
} }
/**
* @medium
*/
function testGenerateKey() { function testGenerateKey() {
# TODO: use more accurate (larger) string length for test confirmation # TODO: use more accurate (larger) string length for test confirmation
@ -113,6 +116,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @large
* @return String * @return String
*/ */
function testGenerateIv() { function testGenerateIv() {
@ -126,6 +130,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @large
* @depends testGenerateIv * @depends testGenerateIv
*/ */
function testConcatIv($iv) { function testConcatIv($iv) {
@ -158,6 +163,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @depends testConcatIv * @depends testConcatIv
*/ */
function testSplitIv($testConcatIv) { function testSplitIv($testConcatIv) {
@ -174,6 +180,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @return string padded * @return string padded
*/ */
function testAddPadding() { function testAddPadding() {
@ -189,6 +196,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @depends testAddPadding * @depends testAddPadding
*/ */
function testRemovePadding($padded) { function testRemovePadding($padded) {
@ -199,6 +207,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/**
* @medium
*/
function testEncrypt() { function testEncrypt() {
$random = openssl_random_pseudo_bytes(13); $random = openssl_random_pseudo_bytes(13);
@ -211,6 +222,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/**
* @medium
*/
function testDecrypt() { function testDecrypt() {
$random = openssl_random_pseudo_bytes(13); $random = openssl_random_pseudo_bytes(13);
@ -241,6 +255,10 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/**
* @medium
*/
function testSymmetricEncryptFileContent() { function testSymmetricEncryptFileContent() {
# TODO: search in keyfile for actual content as IV will ensure this test always passes # TODO: search in keyfile for actual content as IV will ensure this test always passes
@ -256,6 +274,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/**
* @medium
*/
function testSymmetricStreamEncryptShortFileContent() { function testSymmetricStreamEncryptShortFileContent() {
$filename = 'tmp-' . time() . '.test'; $filename = 'tmp-' . time() . '.test';
@ -306,6 +327,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief Test that data that is written by the crypto stream wrapper * @brief Test that data that is written by the crypto stream wrapper
* @note Encrypted data is manually prepared and decrypted here to avoid dependency on success of stream_read * @note Encrypted data is manually prepared and decrypted here to avoid dependency on success of stream_read
* @note If this test fails with truncate content, check that enough array slices are being rejoined to form $e, as the crypt.php file may have gotten longer and broken the manual * @note If this test fails with truncate content, check that enough array slices are being rejoined to form $e, as the crypt.php file may have gotten longer and broken the manual
@ -392,6 +414,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief Test that data that is read by the crypto stream wrapper * @brief Test that data that is read by the crypto stream wrapper
*/ */
function testSymmetricStreamDecryptShortFileContent() { function testSymmetricStreamDecryptShortFileContent() {
@ -421,6 +444,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
$this->view->unlink($this->userId . '/files/' . $filename); $this->view->unlink($this->userId . '/files/' . $filename);
} }
/**
* @medium
*/
function testSymmetricStreamDecryptLongFileContent() { function testSymmetricStreamDecryptLongFileContent() {
$filename = 'tmp-' . time(); $filename = 'tmp-' . time();
@ -440,6 +466,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
$this->view->unlink($this->userId . '/files/' . $filename); $this->view->unlink($this->userId . '/files/' . $filename);
} }
/**
* @medium
*/
function testSymmetricEncryptFileContentKeyfile() { function testSymmetricEncryptFileContentKeyfile() {
# TODO: search in keyfile for actual content as IV will ensure this test always passes # TODO: search in keyfile for actual content as IV will ensure this test always passes
@ -455,6 +484,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/**
* @medium
*/
function testIsEncryptedContent() { function testIsEncryptedContent() {
$this->assertFalse(Encryption\Crypt::isCatfileContent($this->dataUrl)); $this->assertFalse(Encryption\Crypt::isCatfileContent($this->dataUrl));
@ -467,6 +499,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/**
* @large
*/
function testMultiKeyEncrypt() { function testMultiKeyEncrypt() {
# TODO: search in keyfile for actual content as IV will ensure this test always passes # TODO: search in keyfile for actual content as IV will ensure this test always passes
@ -491,6 +526,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/**
* @medium
*/
function testKeyEncrypt() { function testKeyEncrypt() {
// Generate keypair // Generate keypair
@ -509,6 +547,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test encryption using legacy blowfish method * @brief test encryption using legacy blowfish method
*/ */
function testLegacyEncryptShort() { function testLegacyEncryptShort() {
@ -525,6 +564,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test decryption using legacy blowfish method * @brief test decryption using legacy blowfish method
* @depends testLegacyEncryptShort * @depends testLegacyEncryptShort
*/ */
@ -537,6 +577,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test encryption using legacy blowfish method * @brief test encryption using legacy blowfish method
*/ */
function testLegacyEncryptLong() { function testLegacyEncryptLong() {
@ -553,6 +594,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test decryption using legacy blowfish method * @brief test decryption using legacy blowfish method
* @depends testLegacyEncryptLong * @depends testLegacyEncryptLong
*/ */
@ -566,6 +608,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test generation of legacy encryption key * @brief test generation of legacy encryption key
* @depends testLegacyDecryptShort * @depends testLegacyDecryptShort
*/ */
@ -585,6 +628,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test decryption using legacy blowfish method * @brief test decryption using legacy blowfish method
* @depends testLegacyEncryptLong * @depends testLegacyEncryptLong
*/ */
@ -601,6 +645,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
} }
/**
* @medium
*/
function testRenameFile() { function testRenameFile() {
$filename = 'tmp-' . time(); $filename = 'tmp-' . time();
@ -629,6 +676,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
$view->unlink($newFilename); $view->unlink($newFilename);
} }
/**
* @medium
*/
function testMoveFileIntoFolder() { function testMoveFileIntoFolder() {
$filename = 'tmp-' . time(); $filename = 'tmp-' . time();
@ -659,6 +709,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
$view->unlink($newFolder); $view->unlink($newFolder);
} }
/**
* @medium
*/
function testMoveFolder() { function testMoveFolder() {
$view = new \OC\Files\View('/' . $this->userId . '/files'); $view = new \OC\Files\View('/' . $this->userId . '/files');
@ -694,6 +747,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
$view->unlink('/newfolder'); $view->unlink('/newfolder');
} }
/**
* @medium
*/
function testChangePassphrase() { function testChangePassphrase() {
$filename = 'tmp-' . time(); $filename = 'tmp-' . time();
@ -728,6 +784,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
$view->unlink($filename); $view->unlink($filename);
} }
/**
* @medium
*/
function testViewFilePutAndGetContents() { function testViewFilePutAndGetContents() {
$filename = '/tmp-' . time(); $filename = '/tmp-' . time();
@ -759,6 +818,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
$view->unlink($filename); $view->unlink($filename);
} }
/**
* @large
*/
function testTouchExistingFile() { function testTouchExistingFile() {
$filename = '/tmp-' . time(); $filename = '/tmp-' . time();
$view = new \OC\Files\View('/' . $this->userId . '/files'); $view = new \OC\Files\View('/' . $this->userId . '/files');
@ -780,6 +842,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
$view->unlink($filename); $view->unlink($filename);
} }
/**
* @medium
*/
function testTouchFile() { function testTouchFile() {
$filename = '/tmp-' . time(); $filename = '/tmp-' . time();
$view = new \OC\Files\View('/' . $this->userId . '/files'); $view = new \OC\Files\View('/' . $this->userId . '/files');
@ -801,6 +866,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
$view->unlink($filename); $view->unlink($filename);
} }
/**
* @medium
*/
function testFopenFile() { function testFopenFile() {
$filename = '/tmp-' . time(); $filename = '/tmp-' . time();
$view = new \OC\Files\View('/' . $this->userId . '/files'); $view = new \OC\Files\View('/' . $this->userId . '/files');

View File

@ -103,6 +103,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
\OC_FileProxy::$enabled = true; \OC_FileProxy::$enabled = true;
} }
/**
* @medium
*/
function testGetPrivateKey() { function testGetPrivateKey() {
$key = Encryption\Keymanager::getPrivateKey($this->view, $this->userId); $key = Encryption\Keymanager::getPrivateKey($this->view, $this->userId);
@ -119,6 +122,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
} }
/**
* @medium
*/
function testGetPublicKey() { function testGetPublicKey() {
$publiceKey = Encryption\Keymanager::getPublicKey($this->view, $this->userId); $publiceKey = Encryption\Keymanager::getPublicKey($this->view, $this->userId);
@ -132,6 +138,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
$this->assertArrayHasKey('key', $sslInfo); $this->assertArrayHasKey('key', $sslInfo);
} }
/**
* @medium
*/
function testSetFileKey() { function testSetFileKey() {
# NOTE: This cannot be tested until we are able to break out # NOTE: This cannot be tested until we are able to break out
@ -165,6 +174,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
} }
/**
* @medium
*/
function testGetUserKeys() { function testGetUserKeys() {
$keys = Encryption\Keymanager::getUserKeys($this->view, $this->userId); $keys = Encryption\Keymanager::getUserKeys($this->view, $this->userId);
@ -188,6 +200,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
$this->assertArrayHasKey('key', $sslInfoPrivate); $this->assertArrayHasKey('key', $sslInfoPrivate);
} }
/**
* @medium
*/
function testFixPartialFilePath() { function testFixPartialFilePath() {
$partFilename = 'testfile.txt.part'; $partFilename = 'testfile.txt.part';
@ -202,6 +217,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
$this->assertEquals('testfile.txt', Encryption\Keymanager::fixPartialFilePath($filename)); $this->assertEquals('testfile.txt', Encryption\Keymanager::fixPartialFilePath($filename));
} }
/**
* @medium
*/
function testRecursiveDelShareKeys() { function testRecursiveDelShareKeys() {
// generate filename // generate filename

View File

@ -128,6 +128,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @param bool $withTeardown * @param bool $withTeardown
*/ */
function testShareFile($withTeardown = true) { function testShareFile($withTeardown = true) {
@ -204,6 +205,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @param bool $withTeardown * @param bool $withTeardown
*/ */
function testReShareFile($withTeardown = true) { function testReShareFile($withTeardown = true) {
@ -274,6 +276,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @param bool $withTeardown * @param bool $withTeardown
* @return array * @return array
*/ */
@ -362,6 +365,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @param bool $withTeardown * @param bool $withTeardown
*/ */
function testReShareFolder($withTeardown = true) { function testReShareFolder($withTeardown = true) {
@ -563,6 +567,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
. $this->filename . '.' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '.shareKey')); . $this->filename . '.' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '.shareKey'));
} }
/**
* @medium
*/
function testShareFileWithGroup() { function testShareFileWithGroup() {
// login as admin // login as admin
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1);
@ -638,6 +645,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
} }
/**
* @large
*/
function testRecoveryFile() { function testRecoveryFile() {
// login as admin // login as admin
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1);
@ -737,6 +747,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
$this->assertEquals(0, \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled')); $this->assertEquals(0, \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled'));
} }
/**
* @large
*/
function testRecoveryForUser() { function testRecoveryForUser() {
// login as admin // login as admin
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1);
@ -830,6 +843,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
$this->assertEquals(0, \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled')); $this->assertEquals(0, \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled'));
} }
/**
* @medium
*/
function testFailShareFile() { function testFailShareFile() {
// login as admin // login as admin
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1);

View File

@ -140,6 +140,9 @@ class Test_Encryption_Stream extends \PHPUnit_Framework_TestCase {
$view->unlink($filename); $view->unlink($filename);
} }
/**
* @medium
*/
function testStreamSetTimeout() { function testStreamSetTimeout() {
$filename = '/tmp-' . time(); $filename = '/tmp-' . time();
$view = new \OC\Files\View('/' . $this->userId . '/files'); $view = new \OC\Files\View('/' . $this->userId . '/files');

View File

@ -113,6 +113,7 @@ class Test_Encryption_Trashbin extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test delete file * @brief test delete file
*/ */
function testDeleteFile() { function testDeleteFile() {
@ -184,6 +185,7 @@ class Test_Encryption_Trashbin extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test restore file * @brief test restore file
* *
* @depends testDeleteFile * @depends testDeleteFile
@ -215,6 +217,7 @@ class Test_Encryption_Trashbin extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test delete file forever * @brief test delete file forever
*/ */
function testPermanentDeleteFile() { function testPermanentDeleteFile() {

View File

@ -118,6 +118,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test that paths set during User construction are correct * @brief test that paths set during User construction are correct
*/ */
function testKeyPaths() { function testKeyPaths() {
@ -132,6 +133,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test setup of encryption directories * @brief test setup of encryption directories
*/ */
function testSetupServerSide() { function testSetupServerSide() {
@ -139,6 +141,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
} }
/** /**
* @medium
* @brief test checking whether account is ready for encryption, * @brief test checking whether account is ready for encryption,
*/ */
function testUserIsReady() { function testUserIsReady() {
@ -159,6 +162,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
// } // }
/** /**
* @medium
* @brief test checking whether account is not ready for encryption, * @brief test checking whether account is not ready for encryption,
*/ */
function testIsLegacyUser() { function testIsLegacyUser() {
@ -186,6 +190,9 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
$this->assertEquals($this->legacyKey, \OC::$session->get('legacyKey')); $this->assertEquals($this->legacyKey, \OC::$session->get('legacyKey'));
} }
/**
* @medium
*/
function testRecoveryEnabledForUser() { function testRecoveryEnabledForUser() {
$util = new Encryption\Util($this->view, $this->userId); $util = new Encryption\Util($this->view, $this->userId);
@ -206,6 +213,9 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
} }
/**
* @medium
*/
function testGetUidAndFilename() { function testGetUidAndFilename() {
\OC_User::setUserId(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1); \OC_User::setUserId(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1);
@ -232,6 +242,9 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
$this->view->unlink($this->userId . '/files/' . $filename); $this->view->unlink($this->userId . '/files/' . $filename);
} }
/**
* @medium
*/
function testIsSharedPath() { function testIsSharedPath() {
$sharedPath = '/user1/files/Shared/test'; $sharedPath = '/user1/files/Shared/test';
$path = '/user1/files/test'; $path = '/user1/files/test';
@ -241,6 +254,9 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
$this->assertFalse($this->util->isSharedPath($path)); $this->assertFalse($this->util->isSharedPath($path));
} }
/**
* @large
*/
function testEncryptLegacyFiles() { function testEncryptLegacyFiles() {
\Test_Encryption_Util::loginHelper(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER); \Test_Encryption_Util::loginHelper(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Failed to clear the mappings." => "Falhou a limpar os mapas",
"Failed to delete the server configuration" => "Erro ao eliminar as configurações do servidor", "Failed to delete the server configuration" => "Erro ao eliminar as configurações do servidor",
"The configuration is valid and the connection could be established!" => "A configuração está correcta e foi possível estabelecer a ligação!", "The configuration is valid and the connection could be established!" => "A configuração está correcta e foi possível estabelecer a ligação!",
"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "A configuração está correcta, mas não foi possível estabelecer o \"laço\", por favor, verifique as configurações do servidor e as credenciais.", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "A configuração está correcta, mas não foi possível estabelecer o \"laço\", por favor, verifique as configurações do servidor e as credenciais.",
@ -7,6 +8,7 @@
"Take over settings from recent server configuration?" => "Assumir as configurações da configuração do servidor mais recente?", "Take over settings from recent server configuration?" => "Assumir as configurações da configuração do servidor mais recente?",
"Keep settings?" => "Manter as definições?", "Keep settings?" => "Manter as definições?",
"Cannot add server configuration" => "Não foi possível adicionar as configurações do servidor.", "Cannot add server configuration" => "Não foi possível adicionar as configurações do servidor.",
"mappings cleared" => "Mapas limpos",
"Success" => "Sucesso", "Success" => "Sucesso",
"Error" => "Erro", "Error" => "Erro",
"Connection test succeeded" => "Teste de conecção passado com sucesso.", "Connection test succeeded" => "Teste de conecção passado com sucesso.",
@ -72,6 +74,13 @@
"Email Field" => "Campo de email", "Email Field" => "Campo de email",
"User Home Folder Naming Rule" => "Regra da pasta inicial do utilizador", "User Home Folder Naming Rule" => "Regra da pasta inicial do utilizador",
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD.", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD.",
"Internal Username" => "Nome de utilizador interno",
"Internal Username Attribute:" => "Atributo do nome de utilizador interno",
"Override UUID detection" => "Passar a detecção do UUID",
"UUID Attribute:" => "Atributo UUID:",
"Username-LDAP User Mapping" => "Mapeamento do utilizador LDAP",
"Clear Username-LDAP User Mapping" => "Limpar mapeamento do utilizador-LDAP",
"Clear Groupname-LDAP Group Mapping" => "Limpar o mapeamento do nome de grupo LDAP",
"Test Configuration" => "Testar a configuração", "Test Configuration" => "Testar a configuração",
"Help" => "Ajuda" "Help" => "Ajuda"
); );

View File

@ -125,6 +125,7 @@
"Database host" => "Διακομιστής βάσης δεδομένων", "Database host" => "Διακομιστής βάσης δεδομένων",
"Finish setup" => "Ολοκλήρωση εγκατάστασης", "Finish setup" => "Ολοκλήρωση εγκατάστασης",
"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", "web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας",
"%s is available. Get more information on how to update." => "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε.",
"Log out" => "Αποσύνδεση", "Log out" => "Αποσύνδεση",
"Automatic logon rejected!" => "Απορρίφθηκε η αυτόματη σύνδεση!", "Automatic logon rejected!" => "Απορρίφθηκε η αυτόματη σύνδεση!",
"If you did not change your password recently, your account may be compromised!" => "Εάν δεν αλλάξατε το συνθηματικό σας προσφάτως, ο λογαριασμός μπορεί να έχει διαρρεύσει!", "If you did not change your password recently, your account may be compromised!" => "Εάν δεν αλλάξατε το συνθηματικό σας προσφάτως, ο λογαριασμός μπορεί να έχει διαρρεύσει!",

View File

@ -70,7 +70,7 @@
<name>id</name> <name>id</name>
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>false</notnull>
<length>64</length> <length>64</length>
</field> </field>
@ -220,7 +220,7 @@
<name>path</name> <name>path</name>
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>false</notnull>
<length>512</length> <length>512</length>
</field> </field>
@ -244,7 +244,7 @@
<name>name</name> <name>name</name>
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>false</notnull>
<length>250</length> <length>250</length>
</field> </field>

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 00:02+0000\n" "PO-Revision-Date: 2013-06-10 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 00:02+0000\n" "PO-Revision-Date: 2013-06-10 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-25 02:02+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-05-25 00:02+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -136,16 +136,16 @@ msgstr ""
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "" msgstr ""
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "" msgstr ""
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "" msgstr ""
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -324,11 +324,11 @@ msgstr ""
msgid "Less" msgid "Less"
msgstr "" msgstr ""
#: templates/admin.php:235 templates/personal.php:105 #: templates/admin.php:235 templates/personal.php:111
msgid "Version" msgid "Version"
msgstr "" msgstr ""
#: templates/admin.php:237 templates/personal.php:108 #: templates/admin.php:237 templates/personal.php:114
msgid "" msgid ""
"Developed by the <a href=\"http://ownCloud.org/contact\" " "Developed by the <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a " "target=\"_blank\">ownCloud community</a>, the <a "
@ -399,7 +399,7 @@ msgstr ""
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "" msgstr ""
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "Wagwoord" msgstr "Wagwoord"
@ -423,39 +423,39 @@ msgstr "Nuwe wagwoord"
msgid "Change password" msgid "Change password"
msgstr "" msgstr ""
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
#: templates/personal.php:68 #: templates/personal.php:71
msgid "Email" msgid "Email"
msgstr "" msgstr ""
#: templates/personal.php:70 #: templates/personal.php:73
msgid "Your email address" msgid "Your email address"
msgstr "" msgstr ""
#: templates/personal.php:71 #: templates/personal.php:74
msgid "Fill in an email address to enable password recovery" msgid "Fill in an email address to enable password recovery"
msgstr "" msgstr ""
#: templates/personal.php:77 templates/personal.php:78 #: templates/personal.php:83 templates/personal.php:84
msgid "Language" msgid "Language"
msgstr "" msgstr ""
#: templates/personal.php:89 #: templates/personal.php:95
msgid "Help translate" msgid "Help translate"
msgstr "" msgstr ""
#: templates/personal.php:94 #: templates/personal.php:100
msgid "WebDAV" msgid "WebDAV"
msgstr "" msgstr ""
#: templates/personal.php:96 #: templates/personal.php:102
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "" msgstr ""
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "" msgstr ""
@ -463,34 +463,40 @@ msgstr ""
msgid "Create" msgid "Create"
msgstr "" msgstr ""
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "" msgstr ""
#: templates/users.php:38 #: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr ""
#: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "" msgstr ""
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "" msgstr ""
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "" msgstr ""
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "" msgstr ""
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "" msgstr ""
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "" msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:17+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -136,16 +136,16 @@ msgstr "تراجع"
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "تعذر حذف المستخدم" msgstr "تعذر حذف المستخدم"
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "مجموعات" msgstr "مجموعات"
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "مدير المجموعة" msgstr "مدير المجموعة"
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "إلغاء" msgstr "إلغاء"
@ -399,7 +399,7 @@ msgstr "احصل على التطبيقات لمزامنة ملفاتك"
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "ابدأ خطوات بداية التشغيل من جديد" msgstr "ابدأ خطوات بداية التشغيل من جديد"
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "كلمة المرور" msgstr "كلمة المرور"
@ -423,7 +423,7 @@ msgstr "كلمات سر جديدة"
msgid "Change password" msgid "Change password"
msgstr "عدل كلمة السر" msgstr "عدل كلمة السر"
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "اسم الحساب" msgstr "اسم الحساب"
@ -455,7 +455,7 @@ msgstr "WebDAV"
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات" msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات"
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "اسم الدخول" msgstr "اسم الدخول"
@ -463,34 +463,40 @@ msgstr "اسم الدخول"
msgid "Create" msgid "Create"
msgstr "انشئ" msgstr "انشئ"
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "" msgstr ""
#: templates/users.php:38 #: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr ""
#: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "وحدة التخزين الافتراضية" msgstr "وحدة التخزين الافتراضية"
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "غير محدود" msgstr "غير محدود"
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "شيء آخر" msgstr "شيء آخر"
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "وحدة التخزين" msgstr "وحدة التخزين"
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "تغيير اسم الحساب" msgstr "تغيير اسم الحساب"
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "اعداد كلمة مرور جديدة" msgstr "اعداد كلمة مرور جديدة"
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "افتراضي" msgstr "افتراضي"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-25 02:02+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-05-25 00:02+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -136,16 +136,16 @@ msgstr ""
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "" msgstr ""
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "" msgstr ""
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "" msgstr ""
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -324,11 +324,11 @@ msgstr ""
msgid "Less" msgid "Less"
msgstr "" msgstr ""
#: templates/admin.php:235 templates/personal.php:105 #: templates/admin.php:235 templates/personal.php:111
msgid "Version" msgid "Version"
msgstr "" msgstr ""
#: templates/admin.php:237 templates/personal.php:108 #: templates/admin.php:237 templates/personal.php:114
msgid "" msgid ""
"Developed by the <a href=\"http://ownCloud.org/contact\" " "Developed by the <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a " "target=\"_blank\">ownCloud community</a>, the <a "
@ -399,7 +399,7 @@ msgstr ""
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "" msgstr ""
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "" msgstr ""
@ -423,39 +423,39 @@ msgstr ""
msgid "Change password" msgid "Change password"
msgstr "" msgstr ""
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
#: templates/personal.php:68 #: templates/personal.php:71
msgid "Email" msgid "Email"
msgstr "" msgstr ""
#: templates/personal.php:70 #: templates/personal.php:73
msgid "Your email address" msgid "Your email address"
msgstr "" msgstr ""
#: templates/personal.php:71 #: templates/personal.php:74
msgid "Fill in an email address to enable password recovery" msgid "Fill in an email address to enable password recovery"
msgstr "" msgstr ""
#: templates/personal.php:77 templates/personal.php:78 #: templates/personal.php:83 templates/personal.php:84
msgid "Language" msgid "Language"
msgstr "" msgstr ""
#: templates/personal.php:89 #: templates/personal.php:95
msgid "Help translate" msgid "Help translate"
msgstr "" msgstr ""
#: templates/personal.php:94 #: templates/personal.php:100
msgid "WebDAV" msgid "WebDAV"
msgstr "" msgstr ""
#: templates/personal.php:96 #: templates/personal.php:102
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "" msgstr ""
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "" msgstr ""
@ -463,34 +463,40 @@ msgstr ""
msgid "Create" msgid "Create"
msgstr "" msgstr ""
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "" msgstr ""
#: templates/users.php:38 #: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr ""
#: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "" msgstr ""
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "" msgstr ""
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "" msgstr ""
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "" msgstr ""
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "" msgstr ""
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "" msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:17+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\n" "Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\n" "Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -136,16 +136,16 @@ msgstr "възтановяване"
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "" msgstr ""
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "Групи" msgstr "Групи"
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "" msgstr ""
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "Изтриване" msgstr "Изтриване"
@ -399,7 +399,7 @@ msgstr ""
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "Покажи настройките за първоначално зареждане отново" msgstr "Покажи настройките за първоначално зареждане отново"
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "Парола" msgstr "Парола"
@ -423,7 +423,7 @@ msgstr "Нова парола"
msgid "Change password" msgid "Change password"
msgstr "Промяна на паролата" msgstr "Промяна на паролата"
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "Екранно име" msgstr "Екранно име"
@ -455,7 +455,7 @@ msgstr "WebDAV"
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "" msgstr ""
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "Потребител" msgstr "Потребител"
@ -463,34 +463,40 @@ msgstr "Потребител"
msgid "Create" msgid "Create"
msgstr "Създаване" msgstr "Създаване"
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "" msgstr ""
#: templates/users.php:38 #: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr ""
#: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "Хранилище по подразбиране" msgstr "Хранилище по подразбиране"
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "Неограничено" msgstr "Неограничено"
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "Други" msgstr "Други"
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "Хранилище" msgstr "Хранилище"
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "" msgstr ""
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "" msgstr ""
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "По подразбиране" msgstr "По подразбиране"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:17+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -136,16 +136,16 @@ msgstr "ক্রিয়া প্রত্যাহার"
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "" msgstr ""
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "গোষ্ঠীসমূহ" msgstr "গোষ্ঠীসমূহ"
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "গোষ্ঠী প্রশাসক" msgstr "গোষ্ঠী প্রশাসক"
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "মুছে" msgstr "মুছে"
@ -399,7 +399,7 @@ msgstr ""
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "প্রথমবার চালানোর যাদুকর পূনরায় প্রদর্শন কর" msgstr "প্রথমবার চালানোর যাদুকর পূনরায় প্রদর্শন কর"
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "কূটশব্দ" msgstr "কূটশব্দ"
@ -423,7 +423,7 @@ msgstr "নতুন কূটশব্দ"
msgid "Change password" msgid "Change password"
msgstr "কূটশব্দ পরিবর্তন করুন" msgstr "কূটশব্দ পরিবর্তন করুন"
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -455,7 +455,7 @@ msgstr "WebDAV"
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন"
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "" msgstr ""
@ -463,34 +463,40 @@ msgstr ""
msgid "Create" msgid "Create"
msgstr "তৈরী কর" msgstr "তৈরী কর"
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "" msgstr ""
#: templates/users.php:38 #: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr ""
#: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "পূর্বনির্ধারিত সংরক্ষণাগার" msgstr "পূর্বনির্ধারিত সংরক্ষণাগার"
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "অসীম" msgstr "অসীম"
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "অন্যান্য" msgstr "অন্যান্য"
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "সংরক্ষণাগার" msgstr "সংরক্ষণাগার"
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "" msgstr ""
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "" msgstr ""
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "পূর্বনির্ধারিত" msgstr "পূর্বনির্ধারিত"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:17+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: rogerc\n" "Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: rogerc\n" "Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: rogerc\n" "Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: rogerc\n" "Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: rogerc\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -138,16 +138,16 @@ msgstr "desfés"
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "No s'ha pogut eliminar l'usuari" msgstr "No s'ha pogut eliminar l'usuari"
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "Grups" msgstr "Grups"
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "Grup Admin" msgstr "Grup Admin"
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "Esborra" msgstr "Esborra"
@ -401,7 +401,7 @@ msgstr "Obtén les aplicacions per sincronitzar fitxers"
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "Torna a mostrar l'assistent de primera execució" msgstr "Torna a mostrar l'assistent de primera execució"
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "Contrasenya" msgstr "Contrasenya"
@ -425,7 +425,7 @@ msgstr "Contrasenya nova"
msgid "Change password" msgid "Change password"
msgstr "Canvia la contrasenya" msgstr "Canvia la contrasenya"
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "Nom a mostrar" msgstr "Nom a mostrar"
@ -457,7 +457,7 @@ msgstr "WebDAV"
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers" msgstr "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers"
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "Nom d'accés" msgstr "Nom d'accés"
@ -465,34 +465,40 @@ msgstr "Nom d'accés"
msgid "Create" msgid "Create"
msgstr "Crea" msgstr "Crea"
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "Recuperació de contrasenya d'administrador" msgstr "Recuperació de contrasenya d'administrador"
#: templates/users.php:38 #: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr ""
#: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "Emmagatzemament per defecte" msgstr "Emmagatzemament per defecte"
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "Il·limitat" msgstr "Il·limitat"
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "Un altre" msgstr "Un altre"
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "Emmagatzemament" msgstr "Emmagatzemament"
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "canvia el nom a mostrar" msgstr "canvia el nom a mostrar"
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "estableix nova contrasenya" msgstr "estableix nova contrasenya"
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "Per defecte" msgstr "Per defecte"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: rogerc\n" "Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:17+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\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" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\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" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\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" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,9 +8,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -137,16 +137,16 @@ msgstr "zpět"
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "Nelze odebrat uživatele" msgstr "Nelze odebrat uživatele"
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "Skupiny" msgstr "Skupiny"
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "Správa skupiny" msgstr "Správa skupiny"
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "Smazat" msgstr "Smazat"
@ -400,7 +400,7 @@ msgstr "Získat aplikace pro synchronizaci vašich souborů"
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "Znovu zobrazit průvodce prvním spuštěním" msgstr "Znovu zobrazit průvodce prvním spuštěním"
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "Heslo" msgstr "Heslo"
@ -424,7 +424,7 @@ msgstr "Nové heslo"
msgid "Change password" msgid "Change password"
msgstr "Změnit heslo" msgstr "Změnit heslo"
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "Zobrazované jméno" msgstr "Zobrazované jméno"
@ -456,7 +456,7 @@ msgstr "WebDAV"
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů" msgstr "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů"
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "Přihlašovací jméno" msgstr "Přihlašovací jméno"
@ -464,34 +464,40 @@ msgstr "Přihlašovací jméno"
msgid "Create" msgid "Create"
msgstr "Vytvořit" msgstr "Vytvořit"
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "Heslo obnovy správce" msgstr "Heslo obnovy správce"
#: templates/users.php:38 #: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr ""
#: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "Výchozí úložiště" msgstr "Výchozí úložiště"
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "Neomezeně" msgstr "Neomezeně"
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "Jiný" msgstr "Jiný"
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "Úložiště" msgstr "Úložiště"
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "změnit zobrazované jméno" msgstr "změnit zobrazované jméno"
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "nastavit nové heslo" msgstr "nastavit nové heslo"
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "Výchozí" msgstr "Výchozí"

View File

@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\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" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:17+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n" "Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n" "Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n" "Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n" "Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -136,16 +136,16 @@ msgstr "dadwneud"
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "" msgstr ""
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "Grwpiau" msgstr "Grwpiau"
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "" msgstr ""
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "Dileu" msgstr "Dileu"
@ -399,7 +399,7 @@ msgstr ""
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "" msgstr ""
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "Cyfrinair" msgstr "Cyfrinair"
@ -423,7 +423,7 @@ msgstr "Cyfrinair newydd"
msgid "Change password" msgid "Change password"
msgstr "" msgstr ""
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -455,7 +455,7 @@ msgstr ""
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "" msgstr ""
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "" msgstr ""
@ -463,34 +463,40 @@ msgstr ""
msgid "Create" msgid "Create"
msgstr "" msgstr ""
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "" msgstr ""
#: templates/users.php:38 #: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr ""
#: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "" msgstr ""
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "Arall" msgstr "Arall"
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "" msgstr ""
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "" msgstr ""
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "" msgstr ""
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "" msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: Peter Jespersen <flywheeldk@gmail.com>\n" "Last-Translator: Peter Jespersen <flywheeldk@gmail.com>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -137,16 +137,16 @@ msgstr "fortryd"
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "Kan ikke fjerne bruger" msgstr "Kan ikke fjerne bruger"
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "Grupper" msgstr "Grupper"
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "Gruppe Administrator" msgstr "Gruppe Administrator"
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "Slet" msgstr "Slet"
@ -400,7 +400,7 @@ msgstr "Hent applikationerne for at synkronisere dine filer"
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "Vis Første Kørsels Guiden igen." msgstr "Vis Første Kørsels Guiden igen."
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "Kodeord" msgstr "Kodeord"
@ -424,7 +424,7 @@ msgstr "Nyt kodeord"
msgid "Change password" msgid "Change password"
msgstr "Skift kodeord" msgstr "Skift kodeord"
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "Skærmnavn" msgstr "Skærmnavn"
@ -456,7 +456,7 @@ msgstr "WebDAV"
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring" msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring"
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "Loginnavn" msgstr "Loginnavn"
@ -464,34 +464,40 @@ msgstr "Loginnavn"
msgid "Create" msgid "Create"
msgstr "Ny" msgstr "Ny"
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "" msgstr ""
#: templates/users.php:38 #: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr ""
#: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "Standard opbevaring" msgstr "Standard opbevaring"
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "Ubegrænset" msgstr "Ubegrænset"
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "Andet" msgstr "Andet"
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "Opbevaring" msgstr "Opbevaring"
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "skift skærmnavn" msgstr "skift skærmnavn"
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "skift kodeord" msgstr "skift kodeord"
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "Standard" msgstr "Standard"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -11,8 +11,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:17+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: ninov <ninovdl@ymail.com>\n" "Last-Translator: ninov <ninovdl@ymail.com>\n"
"Language-Team: German <translations@owncloud.org>\n" "Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: ninov <ninovdl@ymail.com>\n" "Last-Translator: ninov <ninovdl@ymail.com>\n"
"Language-Team: German <translations@owncloud.org>\n" "Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German <translations@owncloud.org>\n" "Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German <translations@owncloud.org>\n" "Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German <translations@owncloud.org>\n" "Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: ninov <ninovdl@ymail.com>\n" "Last-Translator: ninov <ninovdl@ymail.com>\n"
"Language-Team: German <translations@owncloud.org>\n" "Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -10,9 +10,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: ninov <ninovdl@ymail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German <translations@owncloud.org>\n" "Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -139,16 +139,16 @@ msgstr "rückgängig machen"
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "Benutzer konnte nicht entfernt werden." msgstr "Benutzer konnte nicht entfernt werden."
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "Gruppen" msgstr "Gruppen"
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "Gruppenadministrator" msgstr "Gruppenadministrator"
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
@ -402,7 +402,7 @@ msgstr "Lade die Apps zur Synchronisierung Deiner Daten herunter"
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "Erstinstallation erneut durchführen" msgstr "Erstinstallation erneut durchführen"
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "Passwort" msgstr "Passwort"
@ -426,7 +426,7 @@ msgstr "Neues Passwort"
msgid "Change password" msgid "Change password"
msgstr "Passwort ändern" msgstr "Passwort ändern"
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "Anzeigename" msgstr "Anzeigename"
@ -458,7 +458,7 @@ msgstr "WebDAV"
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden"
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "Loginname" msgstr "Loginname"
@ -466,34 +466,40 @@ msgstr "Loginname"
msgid "Create" msgid "Create"
msgstr "Anlegen" msgstr "Anlegen"
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "Admin-Wiederherstellungspasswort" msgstr "Admin-Wiederherstellungspasswort"
#: templates/users.php:38 #: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr ""
#: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "Standard-Speicher" msgstr "Standard-Speicher"
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "Unbegrenzt" msgstr "Unbegrenzt"
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "Andere" msgstr "Andere"
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "Speicher" msgstr "Speicher"
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "Anzeigenamen ändern" msgstr "Anzeigenamen ändern"
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "Neues Passwort setzen" msgstr "Neues Passwort setzen"
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "Standard" msgstr "Standard"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German <translations@owncloud.org>\n" "Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -11,8 +11,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:17+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -10,8 +10,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Last-Translator: a.tangemann <a.tangemann@web.de>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -11,9 +11,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -140,16 +140,16 @@ msgstr "rückgängig machen"
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "Der Benutzer konnte nicht entfernt werden." msgstr "Der Benutzer konnte nicht entfernt werden."
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "Gruppen" msgstr "Gruppen"
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "Gruppenadministrator" msgstr "Gruppenadministrator"
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
@ -403,7 +403,7 @@ msgstr "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren"
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "Den Einrichtungsassistenten erneut anzeigen" msgstr "Den Einrichtungsassistenten erneut anzeigen"
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "Passwort" msgstr "Passwort"
@ -427,7 +427,7 @@ msgstr "Neues Passwort"
msgid "Change password" msgid "Change password"
msgstr "Passwort ändern" msgstr "Passwort ändern"
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "Anzeigename" msgstr "Anzeigename"
@ -459,7 +459,7 @@ msgstr "WebDAV"
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden"
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "Loginname" msgstr "Loginname"
@ -467,34 +467,40 @@ msgstr "Loginname"
msgid "Create" msgid "Create"
msgstr "Erstellen" msgstr "Erstellen"
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "Admin-Paswort-Wiederherstellung" msgstr "Admin-Paswort-Wiederherstellung"
#: templates/users.php:38 #: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr ""
#: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "Standard-Speicher" msgstr "Standard-Speicher"
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "Unbegrenzt" msgstr "Unbegrenzt"
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "Andere" msgstr "Andere"
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "Speicher" msgstr "Speicher"
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "Anzeigenamen ändern" msgstr "Anzeigenamen ändern"
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "Neues Passwort setzen" msgstr "Neues Passwort setzen"
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "Standard" msgstr "Standard"

View File

@ -10,8 +10,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -3,15 +3,16 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Teogramm <theodorewii121@hotmail.com>, 2013
# Wasilis <inactive+Wasilis@transifex.com>, 2013 # Wasilis <inactive+Wasilis@transifex.com>, 2013
# KAT.RAT12 <spanish.katerina@gmail.com>, 2013 # KAT.RAT12 <spanish.katerina@gmail.com>, 2013
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: Teogramm <theodorewii121@hotmail.com>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -569,7 +570,7 @@ msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας"
#: templates/layout.user.php:37 #: templates/layout.user.php:37
#, php-format #, php-format
msgid "%s is available. Get more information on how to update." msgid "%s is available. Get more information on how to update."
msgstr "" msgstr "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε."
#: templates/layout.user.php:62 #: templates/layout.user.php:62
msgid "Log out" msgid "Log out"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n" "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Teogramm <theodorewii121@hotmail.com>, 2013
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-30 02:27+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-05-30 00:27+0000\n" "PO-Revision-Date: 2013-06-10 15:00+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: Teogramm <theodorewii121@hotmail.com>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -37,11 +38,11 @@ msgstr ""
#: ajax/changeRecoveryPassword.php:49 #: ajax/changeRecoveryPassword.php:49
msgid "Password successfully changed." msgid "Password successfully changed."
msgstr "" msgstr "Ο κωδικός αλλάχτηκε επιτυχώς."
#: ajax/changeRecoveryPassword.php:51 #: ajax/changeRecoveryPassword.php:51
msgid "Could not change the password. Maybe the old password was not correct." msgid "Could not change the password. Maybe the old password was not correct."
msgstr "" msgstr "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός."
#: js/settings-admin.js:11 #: js/settings-admin.js:11
msgid "Saving..." msgid "Saving..."
@ -58,15 +59,15 @@ msgstr ""
#: templates/settings-admin.php:13 #: templates/settings-admin.php:13
msgid "Recovery account password" msgid "Recovery account password"
msgstr "" msgstr "Επαναφορά κωδικού πρόσβασης λογαριασμού"
#: templates/settings-admin.php:20 templates/settings-personal.php:18 #: templates/settings-admin.php:20 templates/settings-personal.php:18
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr "Ενεργοποιημένο"
#: templates/settings-admin.php:28 templates/settings-personal.php:26 #: templates/settings-admin.php:28 templates/settings-personal.php:26
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr "Απενεργοποιημένο"
#: templates/settings-admin.php:32 #: templates/settings-admin.php:32
msgid "Change encryption passwords recovery key:" msgid "Change encryption passwords recovery key:"
@ -82,11 +83,11 @@ msgstr ""
#: templates/settings-admin.php:51 #: templates/settings-admin.php:51
msgid "Change Password" msgid "Change Password"
msgstr "" msgstr "Αλλαγή Κωδικού Πρόσβασης"
#: templates/settings-personal.php:9 #: templates/settings-personal.php:9
msgid "Enable password recovery by sharing all files with your administrator:" msgid "Enable password recovery by sharing all files with your administrator:"
msgstr "" msgstr "Ενεργοποιήστε την επαναφορά κωδικού πρόσβασης με το να μοιραστείτε όλα τα αρχεία με τον διαχειριστή σας:"
#: templates/settings-personal.php:11 #: templates/settings-personal.php:11
msgid "" msgid ""
@ -96,7 +97,7 @@ msgstr ""
#: templates/settings-personal.php:27 #: templates/settings-personal.php:27
msgid "File recovery settings updated" msgid "File recovery settings updated"
msgstr "" msgstr "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν"
#: templates/settings-personal.php:28 #: templates/settings-personal.php:28
msgid "Could not update file recovery" msgid "Could not update file recovery"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: KAT.RAT12 <spanish.katerina@gmail.com>\n" "Last-Translator: KAT.RAT12 <spanish.katerina@gmail.com>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Teogramm <theodorewii121@hotmail.com>, 2013
# KAT.RAT12 <spanish.katerina@gmail.com>, 2013 # KAT.RAT12 <spanish.katerina@gmail.com>, 2013
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:59+0200\n" "POT-Creation-Date: 2013-06-11 01:57+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:57+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -137,16 +138,16 @@ msgstr "αναίρεση"
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "Αδυναμία αφαίρεση χρήστη" msgstr "Αδυναμία αφαίρεση χρήστη"
#: js/users.js:92 templates/users.php:26 templates/users.php:83 #: js/users.js:92 templates/users.php:26 templates/users.php:87
#: templates/users.php:108 #: templates/users.php:112
msgid "Groups" msgid "Groups"
msgstr "Ομάδες" msgstr "Ομάδες"
#: js/users.js:95 templates/users.php:85 templates/users.php:120 #: js/users.js:95 templates/users.php:89 templates/users.php:124
msgid "Group Admin" msgid "Group Admin"
msgstr "Ομάδα Διαχειριστών" msgstr "Ομάδα Διαχειριστών"
#: js/users.js:115 templates/users.php:160 #: js/users.js:115 templates/users.php:164
msgid "Delete" msgid "Delete"
msgstr "Διαγραφή" msgstr "Διαγραφή"
@ -400,7 +401,7 @@ msgstr "Λήψη της εφαρμογής για συγχρονισμό των
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "Προβολή Πρώτης Εκτέλεσης Οδηγού πάλι" msgstr "Προβολή Πρώτης Εκτέλεσης Οδηγού πάλι"
#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 #: templates/personal.php:37 templates/users.php:23 templates/users.php:86
msgid "Password" msgid "Password"
msgstr "Συνθηματικό" msgstr "Συνθηματικό"
@ -424,7 +425,7 @@ msgstr "Νέο συνθηματικό"
msgid "Change password" msgid "Change password"
msgstr "Αλλαγή συνθηματικού" msgstr "Αλλαγή συνθηματικού"
#: templates/personal.php:56 templates/users.php:81 #: templates/personal.php:56 templates/users.php:85
msgid "Display Name" msgid "Display Name"
msgstr "Όνομα εμφάνισης" msgstr "Όνομα εμφάνισης"
@ -456,7 +457,7 @@ msgstr "WebDAV"
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας" msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας"
#: templates/users.php:21 templates/users.php:80 #: templates/users.php:21 templates/users.php:84
msgid "Login Name" msgid "Login Name"
msgstr "Όνομα Σύνδεσης" msgstr "Όνομα Σύνδεσης"
@ -464,34 +465,40 @@ msgstr "Όνομα Σύνδεσης"
msgid "Create" msgid "Create"
msgstr "Δημιουργία" msgstr "Δημιουργία"
#: templates/users.php:34 #: templates/users.php:36
msgid "Admin Recovery Password" msgid "Admin Recovery Password"
msgstr "Κωδικός Επαναφοράς Διαχειριστή "
#: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
msgstr "" msgstr ""
#: templates/users.php:38 #: templates/users.php:42
msgid "Default Storage" msgid "Default Storage"
msgstr "Προκαθορισμένη Αποθήκευση " msgstr "Προκαθορισμένη Αποθήκευση "
#: templates/users.php:44 templates/users.php:138 #: templates/users.php:48 templates/users.php:142
msgid "Unlimited" msgid "Unlimited"
msgstr "Απεριόριστο" msgstr "Απεριόριστο"
#: templates/users.php:62 templates/users.php:153 #: templates/users.php:66 templates/users.php:157
msgid "Other" msgid "Other"
msgstr "Άλλο" msgstr "Άλλο"
#: templates/users.php:87 #: templates/users.php:91
msgid "Storage" msgid "Storage"
msgstr "Αποθήκευση" msgstr "Αποθήκευση"
#: templates/users.php:98 #: templates/users.php:102
msgid "change display name" msgid "change display name"
msgstr "αλλαγή ονόματος εμφάνισης" msgstr "αλλαγή ονόματος εμφάνισης"
#: templates/users.php:102 #: templates/users.php:106
msgid "set new password" msgid "set new password"
msgstr "επιλογή νέου κωδικού" msgstr "επιλογή νέου κωδικού"
#: templates/users.php:133 #: templates/users.php:137
msgid "Default" msgid "Default"
msgstr "Προκαθορισμένο" msgstr "Προκαθορισμένο"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:19+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:18+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-10 01:58+0200\n" "POT-Creation-Date: 2013-06-11 01:56+0200\n"
"PO-Revision-Date: 2013-06-09 23:18+0000\n" "PO-Revision-Date: 2013-06-10 23:19+0000\n"
"Last-Translator: lhpalacio <luizhenrique_gomespalacio@hotmail.com>\n" "Last-Translator: lhpalacio <luizhenrique_gomespalacio@hotmail.com>\n"
"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

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