Merge branch 'master' into files_encryption_check_private_key
Conflicts: apps/files_encryption/tests/crypt.php
This commit is contained in:
commit
20ddd6e1c7
|
@ -6,7 +6,7 @@ config/mount.php
|
|||
apps/inc.php
|
||||
|
||||
# ignore all apps except core ones
|
||||
apps/*
|
||||
apps*
|
||||
!apps/files
|
||||
!apps/files_encryption
|
||||
!apps/files_external
|
||||
|
@ -76,4 +76,4 @@ nbproject
|
|||
data-autotest
|
||||
/tests/coverage*
|
||||
/tests/autoconfig*
|
||||
/tests/autotest*
|
||||
/tests/autotest*
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password successfully changed." => "Ο κωδικός αλλάχτηκε επιτυχώς.",
|
||||
"Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.",
|
||||
"Saving..." => "Γίνεται αποθήκευση...",
|
||||
"Encryption" => "Κρυπτογράφηση"
|
||||
"Encryption" => "Κρυπτογράφηση",
|
||||
"Recovery account password" => "Επαναφορά κωδικού πρόσβασης λογαριασμού",
|
||||
"Enabled" => "Ενεργοποιημένο",
|
||||
"Disabled" => "Απενεργοποιημένο",
|
||||
"Change Password" => "Αλλαγή Κωδικού Πρόσβασης",
|
||||
"Enable password recovery by sharing all files with your administrator:" => "Ενεργοποιήστε την επαναφορά κωδικού πρόσβασης με το να μοιραστείτε όλα τα αρχεία με τον διαχειριστή σας:",
|
||||
"File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν"
|
||||
);
|
||||
|
|
|
@ -1,9 +1,22 @@
|
|||
<?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.",
|
||||
"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...",
|
||||
"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",
|
||||
"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"
|
||||
);
|
||||
|
|
|
@ -289,7 +289,7 @@ class Util {
|
|||
*/
|
||||
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);
|
||||
|
||||
|
@ -347,7 +347,7 @@ class Util {
|
|||
// Create a new record instead
|
||||
} else {
|
||||
|
||||
$sql = 'UPDATE `*PREFIX*encryption` SET recovery_enabled = ? WHERE uid = ?';
|
||||
$sql = 'UPDATE `*PREFIX*encryption` SET `recovery_enabled` = ? WHERE `uid` = ?';
|
||||
|
||||
$args = array(
|
||||
$enabled,
|
||||
|
@ -1066,7 +1066,7 @@ class Util {
|
|||
*/
|
||||
public function setMigrationStatus($status) {
|
||||
|
||||
$sql = 'UPDATE `*PREFIX*encryption` SET migration_status = ? WHERE uid = ?';
|
||||
$sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ?';
|
||||
|
||||
$args = array(
|
||||
$status,
|
||||
|
@ -1095,7 +1095,7 @@ class Util {
|
|||
*/
|
||||
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);
|
||||
|
||||
|
|
|
@ -102,6 +102,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
\OC_User::deleteUser(\Test_Encryption_Crypt::TEST_ENCRYPTION_CRYPT_USER1);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testGenerateKey() {
|
||||
|
||||
# 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
|
||||
*/
|
||||
function testGenerateIv() {
|
||||
|
@ -126,6 +130,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @large
|
||||
* @depends testGenerateIv
|
||||
*/
|
||||
function testConcatIv($iv) {
|
||||
|
@ -158,6 +163,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @depends testConcatIv
|
||||
*/
|
||||
function testSplitIv($testConcatIv) {
|
||||
|
@ -174,6 +180,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @return string padded
|
||||
*/
|
||||
function testAddPadding() {
|
||||
|
@ -189,6 +196,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @depends testAddPadding
|
||||
*/
|
||||
function testRemovePadding($padded) {
|
||||
|
@ -199,6 +207,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testEncrypt() {
|
||||
|
||||
$random = openssl_random_pseudo_bytes(13);
|
||||
|
@ -211,6 +222,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testDecrypt() {
|
||||
|
||||
$random = openssl_random_pseudo_bytes(13);
|
||||
|
@ -241,6 +255,10 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testSymmetricEncryptFileContent() {
|
||||
|
||||
# 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() {
|
||||
|
||||
$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
|
||||
* @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
|
||||
|
@ -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
|
||||
*/
|
||||
function testSymmetricStreamDecryptShortFileContent() {
|
||||
|
@ -421,6 +444,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
$this->view->unlink($this->userId . '/files/' . $filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testSymmetricStreamDecryptLongFileContent() {
|
||||
|
||||
$filename = 'tmp-' . time();
|
||||
|
@ -440,6 +466,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
$this->view->unlink($this->userId . '/files/' . $filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testSymmetricEncryptFileContentKeyfile() {
|
||||
|
||||
# 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() {
|
||||
|
||||
$this->assertFalse(Encryption\Crypt::isCatfileContent($this->dataUrl));
|
||||
|
@ -467,6 +499,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* @large
|
||||
*/
|
||||
function testMultiKeyEncrypt() {
|
||||
|
||||
# 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() {
|
||||
|
||||
// Generate keypair
|
||||
|
@ -509,6 +547,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test encryption using legacy blowfish method
|
||||
*/
|
||||
function testLegacyEncryptShort() {
|
||||
|
@ -525,6 +564,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test decryption using legacy blowfish method
|
||||
* @depends testLegacyEncryptShort
|
||||
*/
|
||||
|
@ -537,6 +577,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test encryption using legacy blowfish method
|
||||
*/
|
||||
function testLegacyEncryptLong() {
|
||||
|
@ -553,6 +594,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test decryption using legacy blowfish method
|
||||
* @depends testLegacyEncryptLong
|
||||
*/
|
||||
|
@ -566,6 +608,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test generation of legacy encryption key
|
||||
* @depends testLegacyDecryptShort
|
||||
*/
|
||||
|
@ -585,6 +628,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test decryption using legacy blowfish method
|
||||
* @depends testLegacyEncryptLong
|
||||
*/
|
||||
|
@ -601,6 +645,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testRenameFile() {
|
||||
|
||||
$filename = 'tmp-' . time();
|
||||
|
@ -629,6 +676,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
$view->unlink($newFilename);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testMoveFileIntoFolder() {
|
||||
|
||||
$filename = 'tmp-' . time();
|
||||
|
@ -659,6 +709,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
$view->unlink($newFolder);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testMoveFolder() {
|
||||
|
||||
$view = new \OC\Files\View('/' . $this->userId . '/files');
|
||||
|
@ -694,6 +747,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
$view->unlink('/newfolder');
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testChangePassphrase() {
|
||||
$filename = 'tmp-' . time();
|
||||
|
||||
|
@ -728,6 +784,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
$view->unlink($filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testViewFilePutAndGetContents() {
|
||||
|
||||
$filename = '/tmp-' . time();
|
||||
|
@ -759,6 +818,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
$view->unlink($filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* @large
|
||||
*/
|
||||
function testTouchExistingFile() {
|
||||
$filename = '/tmp-' . time();
|
||||
$view = new \OC\Files\View('/' . $this->userId . '/files');
|
||||
|
@ -780,6 +842,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
$view->unlink($filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testTouchFile() {
|
||||
$filename = '/tmp-' . time();
|
||||
$view = new \OC\Files\View('/' . $this->userId . '/files');
|
||||
|
@ -801,6 +866,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
$view->unlink($filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testFopenFile() {
|
||||
$filename = '/tmp-' . time();
|
||||
$view = new \OC\Files\View('/' . $this->userId . '/files');
|
||||
|
|
|
@ -103,6 +103,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
|
|||
\OC_FileProxy::$enabled = true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testGetPrivateKey() {
|
||||
|
||||
$key = Encryption\Keymanager::getPrivateKey($this->view, $this->userId);
|
||||
|
@ -119,6 +122,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testGetPublicKey() {
|
||||
|
||||
$publiceKey = Encryption\Keymanager::getPublicKey($this->view, $this->userId);
|
||||
|
@ -132,6 +138,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
|
|||
$this->assertArrayHasKey('key', $sslInfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testSetFileKey() {
|
||||
|
||||
# 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() {
|
||||
|
||||
$keys = Encryption\Keymanager::getUserKeys($this->view, $this->userId);
|
||||
|
@ -188,6 +200,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
|
|||
$this->assertArrayHasKey('key', $sslInfoPrivate);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testFixPartialFilePath() {
|
||||
|
||||
$partFilename = 'testfile.txt.part';
|
||||
|
@ -202,6 +217,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
|
|||
$this->assertEquals('testfile.txt', Encryption\Keymanager::fixPartialFilePath($filename));
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testRecursiveDelShareKeys() {
|
||||
|
||||
// generate filename
|
||||
|
|
|
@ -128,6 +128,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @param bool $withTeardown
|
||||
*/
|
||||
function testShareFile($withTeardown = true) {
|
||||
|
@ -204,6 +205,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @param bool $withTeardown
|
||||
*/
|
||||
function testReShareFile($withTeardown = true) {
|
||||
|
@ -274,6 +276,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @param bool $withTeardown
|
||||
* @return array
|
||||
*/
|
||||
|
@ -362,6 +365,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @param bool $withTeardown
|
||||
*/
|
||||
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'));
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testShareFileWithGroup() {
|
||||
// login as admin
|
||||
\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() {
|
||||
// login as admin
|
||||
\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'));
|
||||
}
|
||||
|
||||
/**
|
||||
* @large
|
||||
*/
|
||||
function testRecoveryForUser() {
|
||||
// login as admin
|
||||
\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'));
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testFailShareFile() {
|
||||
// login as admin
|
||||
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1);
|
||||
|
|
|
@ -140,6 +140,9 @@ class Test_Encryption_Stream extends \PHPUnit_Framework_TestCase {
|
|||
$view->unlink($filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testStreamSetTimeout() {
|
||||
$filename = '/tmp-' . time();
|
||||
$view = new \OC\Files\View('/' . $this->userId . '/files');
|
||||
|
|
|
@ -113,6 +113,7 @@ class Test_Encryption_Trashbin extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test delete file
|
||||
*/
|
||||
function testDeleteFile() {
|
||||
|
@ -184,6 +185,7 @@ class Test_Encryption_Trashbin extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test restore file
|
||||
*
|
||||
* @depends testDeleteFile
|
||||
|
@ -215,6 +217,7 @@ class Test_Encryption_Trashbin extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test delete file forever
|
||||
*/
|
||||
function testPermanentDeleteFile() {
|
||||
|
|
|
@ -118,6 +118,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test that paths set during User construction are correct
|
||||
*/
|
||||
function testKeyPaths() {
|
||||
|
@ -132,6 +133,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test setup of encryption directories
|
||||
*/
|
||||
function testSetupServerSide() {
|
||||
|
@ -139,6 +141,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
* @brief test checking whether account is ready for encryption,
|
||||
*/
|
||||
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,
|
||||
*/
|
||||
function testIsLegacyUser() {
|
||||
|
@ -186,6 +190,9 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
|
|||
$this->assertEquals($this->legacyKey, \OC::$session->get('legacyKey'));
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testRecoveryEnabledForUser() {
|
||||
|
||||
$util = new Encryption\Util($this->view, $this->userId);
|
||||
|
@ -206,6 +213,9 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testGetUidAndFilename() {
|
||||
|
||||
\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);
|
||||
}
|
||||
|
||||
/**
|
||||
* @medium
|
||||
*/
|
||||
function testIsSharedPath() {
|
||||
$sharedPath = '/user1/files/Shared/test';
|
||||
$path = '/user1/files/test';
|
||||
|
@ -241,6 +254,9 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
|
|||
$this->assertFalse($this->util->isSharedPath($path));
|
||||
}
|
||||
|
||||
/**
|
||||
* @large
|
||||
*/
|
||||
function testEncryptLegacyFiles() {
|
||||
\Test_Encryption_Util::loginHelper(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?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",
|
||||
"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.",
|
||||
|
@ -7,6 +8,7 @@
|
|||
"Take over settings from recent server configuration?" => "Assumir as configurações da configuração do servidor mais recente?",
|
||||
"Keep settings?" => "Manter as definições?",
|
||||
"Cannot add server configuration" => "Não foi possível adicionar as configurações do servidor.",
|
||||
"mappings cleared" => "Mapas limpos",
|
||||
"Success" => "Sucesso",
|
||||
"Error" => "Erro",
|
||||
"Connection test succeeded" => "Teste de conecção passado com sucesso.",
|
||||
|
@ -72,6 +74,13 @@
|
|||
"Email Field" => "Campo de email",
|
||||
"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.",
|
||||
"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",
|
||||
"Help" => "Ajuda"
|
||||
);
|
||||
|
|
|
@ -125,6 +125,7 @@
|
|||
"Database host" => "Διακομιστής βάσης δεδομένων",
|
||||
"Finish setup" => "Ολοκλήρωση εγκατάστασης",
|
||||
"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας",
|
||||
"%s is available. Get more information on how to update." => "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε.",
|
||||
"Log out" => "Αποσύνδεση",
|
||||
"Automatic logon rejected!" => "Απορρίφθηκε η αυτόματη σύνδεση!",
|
||||
"If you did not change your password recently, your account may be compromised!" => "Εάν δεν αλλάξατε το συνθηματικό σας προσφάτως, ο λογαριασμός μπορεί να έχει διαρρεύσει!",
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
<name>id</name>
|
||||
<type>text</type>
|
||||
<default></default>
|
||||
<notnull>true</notnull>
|
||||
<notnull>false</notnull>
|
||||
<length>64</length>
|
||||
</field>
|
||||
|
||||
|
@ -220,7 +220,7 @@
|
|||
<name>path</name>
|
||||
<type>text</type>
|
||||
<default></default>
|
||||
<notnull>true</notnull>
|
||||
<notnull>false</notnull>
|
||||
<length>512</length>
|
||||
</field>
|
||||
|
||||
|
@ -244,7 +244,7 @@
|
|||
<name>name</name>
|
||||
<type>text</type>
|
||||
<default></default>
|
||||
<notnull>true</notnull>
|
||||
<notnull>false</notnull>
|
||||
<length>250</length>
|
||||
</field>
|
||||
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 00:02+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 00:02+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-25 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-25 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -136,16 +136,16 @@ msgstr ""
|
|||
msgid "Unable to remove user"
|
||||
msgstr ""
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
|
@ -324,11 +324,11 @@ msgstr ""
|
|||
msgid "Less"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:235 templates/personal.php:105
|
||||
#: templates/admin.php:235 templates/personal.php:111
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:237 templates/personal.php:108
|
||||
#: templates/admin.php:237 templates/personal.php:114
|
||||
msgid ""
|
||||
"Developed by the <a href=\"http://ownCloud.org/contact\" "
|
||||
"target=\"_blank\">ownCloud community</a>, the <a "
|
||||
|
@ -399,7 +399,7 @@ msgstr ""
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr "Wagwoord"
|
||||
|
||||
|
@ -423,39 +423,39 @@ msgstr "Nuwe wagwoord"
|
|||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:68
|
||||
#: templates/personal.php:71
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:70
|
||||
#: templates/personal.php:73
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:71
|
||||
#: templates/personal.php:74
|
||||
msgid "Fill in an email address to enable password recovery"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:77 templates/personal.php:78
|
||||
#: templates/personal.php:83 templates/personal.php:84
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:89
|
||||
#: templates/personal.php:95
|
||||
msgid "Help translate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:94
|
||||
#: templates/personal.php:100
|
||||
msgid "WebDAV"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:96
|
||||
#: templates/personal.php:102
|
||||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr ""
|
||||
|
||||
|
@ -463,34 +463,40 @@ msgstr ""
|
|||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
msgid "Admin Recovery Password"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -136,16 +136,16 @@ msgstr "تراجع"
|
|||
msgid "Unable to remove user"
|
||||
msgstr "تعذر حذف المستخدم"
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr "مدير المجموعة"
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr "إلغاء"
|
||||
|
||||
|
@ -399,7 +399,7 @@ msgstr "احصل على التطبيقات لمزامنة ملفاتك"
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr "كلمة المرور"
|
||||
|
||||
|
@ -423,7 +423,7 @@ msgstr "كلمات سر جديدة"
|
|||
msgid "Change password"
|
||||
msgstr "عدل كلمة السر"
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr "اسم الحساب"
|
||||
|
||||
|
@ -455,7 +455,7 @@ msgstr "WebDAV"
|
|||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات"
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr "اسم الدخول"
|
||||
|
||||
|
@ -463,34 +463,40 @@ msgstr "اسم الدخول"
|
|||
msgid "Create"
|
||||
msgstr "انشئ"
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
msgid "Admin Recovery Password"
|
||||
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"
|
||||
msgstr "وحدة التخزين الافتراضية"
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr "غير محدود"
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr "شيء آخر"
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr "وحدة التخزين"
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr "تغيير اسم الحساب"
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr "اعداد كلمة مرور جديدة"
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr "افتراضي"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-25 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-25 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -136,16 +136,16 @@ msgstr ""
|
|||
msgid "Unable to remove user"
|
||||
msgstr ""
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
|
@ -324,11 +324,11 @@ msgstr ""
|
|||
msgid "Less"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:235 templates/personal.php:105
|
||||
#: templates/admin.php:235 templates/personal.php:111
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:237 templates/personal.php:108
|
||||
#: templates/admin.php:237 templates/personal.php:114
|
||||
msgid ""
|
||||
"Developed by the <a href=\"http://ownCloud.org/contact\" "
|
||||
"target=\"_blank\">ownCloud community</a>, the <a "
|
||||
|
@ -399,7 +399,7 @@ msgstr ""
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -423,39 +423,39 @@ msgstr ""
|
|||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:68
|
||||
#: templates/personal.php:71
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:70
|
||||
#: templates/personal.php:73
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:71
|
||||
#: templates/personal.php:74
|
||||
msgid "Fill in an email address to enable password recovery"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:77 templates/personal.php:78
|
||||
#: templates/personal.php:83 templates/personal.php:84
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:89
|
||||
#: templates/personal.php:95
|
||||
msgid "Help translate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:94
|
||||
#: templates/personal.php:100
|
||||
msgid "WebDAV"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:96
|
||||
#: templates/personal.php:102
|
||||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr ""
|
||||
|
||||
|
@ -463,34 +463,40 @@ msgstr ""
|
|||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
msgid "Admin Recovery Password"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\n"
|
||||
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\n"
|
||||
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -136,16 +136,16 @@ msgstr "възтановяване"
|
|||
msgid "Unable to remove user"
|
||||
msgstr ""
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr "Изтриване"
|
||||
|
||||
|
@ -399,7 +399,7 @@ msgstr ""
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr "Парола"
|
||||
|
||||
|
@ -423,7 +423,7 @@ msgstr "Нова парола"
|
|||
msgid "Change password"
|
||||
msgstr "Промяна на паролата"
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr "Екранно име"
|
||||
|
||||
|
@ -455,7 +455,7 @@ msgstr "WebDAV"
|
|||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr "Потребител"
|
||||
|
||||
|
@ -463,34 +463,40 @@ msgstr "Потребител"
|
|||
msgid "Create"
|
||||
msgstr "Създаване"
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
msgid "Admin Recovery Password"
|
||||
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"
|
||||
msgstr "Хранилище по подразбиране"
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr "Неограничено"
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr "Други"
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr "Хранилище"
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr "По подразбиране"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -136,16 +136,16 @@ msgstr "ক্রিয়া প্রত্যাহার"
|
|||
msgid "Unable to remove user"
|
||||
msgstr ""
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr "গোষ্ঠী প্রশাসক"
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr "মুছে"
|
||||
|
||||
|
@ -399,7 +399,7 @@ msgstr ""
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr "কূটশব্দ"
|
||||
|
||||
|
@ -423,7 +423,7 @@ msgstr "নতুন কূটশব্দ"
|
|||
msgid "Change password"
|
||||
msgstr "কূটশব্দ পরিবর্তন করুন"
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
@ -455,7 +455,7 @@ msgstr "WebDAV"
|
|||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন"
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr ""
|
||||
|
||||
|
@ -463,34 +463,40 @@ msgstr ""
|
|||
msgid "Create"
|
||||
msgstr "তৈরী কর"
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
msgid "Admin Recovery Password"
|
||||
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"
|
||||
msgstr "পূর্বনির্ধারিত সংরক্ষণাগার"
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr "অসীম"
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr "অন্যান্য"
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr "সংরক্ষণাগার"
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr "পূর্বনির্ধারিত"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: rogerc\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: rogerc\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: rogerc\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: rogerc\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"Last-Translator: rogerc\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -138,16 +138,16 @@ msgstr "desfés"
|
|||
msgid "Unable to remove user"
|
||||
msgstr "No s'ha pogut eliminar l'usuari"
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr "Grup Admin"
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr "Esborra"
|
||||
|
||||
|
@ -401,7 +401,7 @@ msgstr "Obtén les aplicacions per sincronitzar fitxers"
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
|
@ -425,7 +425,7 @@ msgstr "Contrasenya nova"
|
|||
msgid "Change password"
|
||||
msgstr "Canvia la contrasenya"
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
|
||||
|
@ -457,7 +457,7 @@ msgstr "WebDAV"
|
|||
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"
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr "Nom d'accés"
|
||||
|
||||
|
@ -465,34 +465,40 @@ msgstr "Nom d'accés"
|
|||
msgid "Create"
|
||||
msgstr "Crea"
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
msgid "Admin Recovery Password"
|
||||
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"
|
||||
msgstr "Emmagatzemament per defecte"
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr "Il·limitat"
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr "Un altre"
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr "Emmagatzemament"
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr "canvia el nom a mostrar"
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr "estableix nova contrasenya"
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr "Per defecte"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: rogerc\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
|
||||
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
|
||||
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
|
||||
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,9 +8,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -137,16 +137,16 @@ msgstr "zpět"
|
|||
msgid "Unable to remove user"
|
||||
msgstr "Nelze odebrat uživatele"
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr "Správa skupiny"
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr "Smazat"
|
||||
|
||||
|
@ -400,7 +400,7 @@ msgstr "Získat aplikace pro synchronizaci vašich souborů"
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr "Heslo"
|
||||
|
||||
|
@ -424,7 +424,7 @@ msgstr "Nové heslo"
|
|||
msgid "Change password"
|
||||
msgstr "Změnit heslo"
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazované jméno"
|
||||
|
||||
|
@ -456,7 +456,7 @@ msgstr "WebDAV"
|
|||
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ů"
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr "Přihlašovací jméno"
|
||||
|
||||
|
@ -464,34 +464,40 @@ msgstr "Přihlašovací jméno"
|
|||
msgid "Create"
|
||||
msgstr "Vytvořit"
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
msgid "Admin Recovery Password"
|
||||
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"
|
||||
msgstr "Výchozí úložiště"
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr "Neomezeně"
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr "Jiný"
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr "Úložiště"
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr "změnit zobrazované jméno"
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr "nastavit nové heslo"
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr "Výchozí"
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
|
||||
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -136,16 +136,16 @@ msgstr "dadwneud"
|
|||
msgid "Unable to remove user"
|
||||
msgstr ""
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr "Dileu"
|
||||
|
||||
|
@ -399,7 +399,7 @@ msgstr ""
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr "Cyfrinair"
|
||||
|
||||
|
@ -423,7 +423,7 @@ msgstr "Cyfrinair newydd"
|
|||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
@ -455,7 +455,7 @@ msgstr ""
|
|||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr ""
|
||||
|
||||
|
@ -463,34 +463,40 @@ msgstr ""
|
|||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
msgid "Admin Recovery Password"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr "Arall"
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: Peter Jespersen <flywheeldk@gmail.com>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -137,16 +137,16 @@ msgstr "fortryd"
|
|||
msgid "Unable to remove user"
|
||||
msgstr "Kan ikke fjerne bruger"
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr "Gruppe Administrator"
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr "Slet"
|
||||
|
||||
|
@ -400,7 +400,7 @@ msgstr "Hent applikationerne for at synkronisere dine filer"
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr "Kodeord"
|
||||
|
||||
|
@ -424,7 +424,7 @@ msgstr "Nyt kodeord"
|
|||
msgid "Change password"
|
||||
msgstr "Skift kodeord"
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr "Skærmnavn"
|
||||
|
||||
|
@ -456,7 +456,7 @@ msgstr "WebDAV"
|
|||
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"
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr "Loginnavn"
|
||||
|
||||
|
@ -464,34 +464,40 @@ msgstr "Loginnavn"
|
|||
msgid "Create"
|
||||
msgstr "Ny"
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
msgid "Admin Recovery Password"
|
||||
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"
|
||||
msgstr "Standard opbevaring"
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr "Ubegrænset"
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr "Andet"
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr "Opbevaring"
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr "skift skærmnavn"
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr "skift kodeord"
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -11,8 +11,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: ninov <ninovdl@ymail.com>\n"
|
||||
"Language-Team: German <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: ninov <ninovdl@ymail.com>\n"
|
||||
"Language-Team: German <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: ninov <ninovdl@ymail.com>\n"
|
||||
"Language-Team: German <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -10,9 +10,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"Last-Translator: ninov <ninovdl@ymail.com>\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: German <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -139,16 +139,16 @@ msgstr "rückgängig machen"
|
|||
msgid "Unable to remove user"
|
||||
msgstr "Benutzer konnte nicht entfernt werden."
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr "Gruppenadministrator"
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
|
@ -402,7 +402,7 @@ msgstr "Lade die Apps zur Synchronisierung Deiner Daten herunter"
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr "Passwort"
|
||||
|
||||
|
@ -426,7 +426,7 @@ msgstr "Neues Passwort"
|
|||
msgid "Change password"
|
||||
msgstr "Passwort ändern"
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
|
@ -458,7 +458,7 @@ msgstr "WebDAV"
|
|||
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"
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr "Loginname"
|
||||
|
||||
|
@ -466,34 +466,40 @@ msgstr "Loginname"
|
|||
msgid "Create"
|
||||
msgstr "Anlegen"
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
msgid "Admin Recovery Password"
|
||||
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"
|
||||
msgstr "Standard-Speicher"
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr "Unbegrenzt"
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr "Andere"
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr "Speicher"
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr "Anzeigenamen ändern"
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr "Neues Passwort setzen"
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: German <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -11,8 +11,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n"
|
||||
"Language-Team: German (Germany) <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -10,8 +10,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: a.tangemann <a.tangemann@web.de>\n"
|
||||
"Language-Team: German (Germany) <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German (Germany) <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German (Germany) <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German (Germany) <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n"
|
||||
"Language-Team: German (Germany) <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -11,9 +11,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: German (Germany) <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -140,16 +140,16 @@ msgstr "rückgängig machen"
|
|||
msgid "Unable to remove user"
|
||||
msgstr "Der Benutzer konnte nicht entfernt werden."
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr "Gruppenadministrator"
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
|
@ -403,7 +403,7 @@ msgstr "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren"
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr "Passwort"
|
||||
|
||||
|
@ -427,7 +427,7 @@ msgstr "Neues Passwort"
|
|||
msgid "Change password"
|
||||
msgstr "Passwort ändern"
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
|
@ -459,7 +459,7 @@ msgstr "WebDAV"
|
|||
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"
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr "Loginname"
|
||||
|
||||
|
@ -467,34 +467,40 @@ msgstr "Loginname"
|
|||
msgid "Create"
|
||||
msgstr "Erstellen"
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
msgid "Admin Recovery Password"
|
||||
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"
|
||||
msgstr "Standard-Speicher"
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr "Unbegrenzt"
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr "Andere"
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr "Speicher"
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr "Anzeigenamen ändern"
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr "Neues Passwort setzen"
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
|
|
@ -10,8 +10,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n"
|
||||
"Language-Team: German (Germany) <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -3,15 +3,16 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Teogramm <theodorewii121@hotmail.com>, 2013
|
||||
# Wasilis <inactive+Wasilis@transifex.com>, 2013
|
||||
# KAT.RAT12 <spanish.katerina@gmail.com>, 2013
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: Teogramm <theodorewii121@hotmail.com>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -569,7 +570,7 @@ msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας"
|
|||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr ""
|
||||
msgstr "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε."
|
||||
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\n"
|
||||
"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -3,13 +3,14 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Teogramm <theodorewii121@hotmail.com>, 2013
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-30 02:27+0200\n"
|
||||
"PO-Revision-Date: 2013-05-30 00:27+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 15:00+0000\n"
|
||||
"Last-Translator: Teogramm <theodorewii121@hotmail.com>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -37,11 +38,11 @@ msgstr ""
|
|||
|
||||
#: ajax/changeRecoveryPassword.php:49
|
||||
msgid "Password successfully changed."
|
||||
msgstr ""
|
||||
msgstr "Ο κωδικός αλλάχτηκε επιτυχώς."
|
||||
|
||||
#: ajax/changeRecoveryPassword.php:51
|
||||
msgid "Could not change the password. Maybe the old password was not correct."
|
||||
msgstr ""
|
||||
msgstr "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός."
|
||||
|
||||
#: js/settings-admin.js:11
|
||||
msgid "Saving..."
|
||||
|
@ -58,15 +59,15 @@ msgstr ""
|
|||
|
||||
#: templates/settings-admin.php:13
|
||||
msgid "Recovery account password"
|
||||
msgstr ""
|
||||
msgstr "Επαναφορά κωδικού πρόσβασης λογαριασμού"
|
||||
|
||||
#: templates/settings-admin.php:20 templates/settings-personal.php:18
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
msgstr "Ενεργοποιημένο"
|
||||
|
||||
#: templates/settings-admin.php:28 templates/settings-personal.php:26
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
msgstr "Απενεργοποιημένο"
|
||||
|
||||
#: templates/settings-admin.php:32
|
||||
msgid "Change encryption passwords recovery key:"
|
||||
|
@ -82,11 +83,11 @@ msgstr ""
|
|||
|
||||
#: templates/settings-admin.php:51
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
msgstr "Αλλαγή Κωδικού Πρόσβασης"
|
||||
|
||||
#: templates/settings-personal.php:9
|
||||
msgid "Enable password recovery by sharing all files with your administrator:"
|
||||
msgstr ""
|
||||
msgstr "Ενεργοποιήστε την επαναφορά κωδικού πρόσβασης με το να μοιραστείτε όλα τα αρχεία με τον διαχειριστή σας:"
|
||||
|
||||
#: templates/settings-personal.php:11
|
||||
msgid ""
|
||||
|
@ -96,7 +97,7 @@ msgstr ""
|
|||
|
||||
#: templates/settings-personal.php:27
|
||||
msgid "File recovery settings updated"
|
||||
msgstr ""
|
||||
msgstr "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν"
|
||||
|
||||
#: templates/settings-personal.php:28
|
||||
msgid "Could not update file recovery"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: KAT.RAT12 <spanish.katerina@gmail.com>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -3,13 +3,14 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Teogramm <theodorewii121@hotmail.com>, 2013
|
||||
# KAT.RAT12 <spanish.katerina@gmail.com>, 2013
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:59+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:57+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:57+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -137,16 +138,16 @@ msgstr "αναίρεση"
|
|||
msgid "Unable to remove user"
|
||||
msgstr "Αδυναμία αφαίρεση χρήστη"
|
||||
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:83
|
||||
#: templates/users.php:108
|
||||
#: js/users.js:92 templates/users.php:26 templates/users.php:87
|
||||
#: templates/users.php:112
|
||||
msgid "Groups"
|
||||
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"
|
||||
msgstr "Ομάδα Διαχειριστών"
|
||||
|
||||
#: js/users.js:115 templates/users.php:160
|
||||
#: js/users.js:115 templates/users.php:164
|
||||
msgid "Delete"
|
||||
msgstr "Διαγραφή"
|
||||
|
||||
|
@ -400,7 +401,7 @@ msgstr "Λήψη της εφαρμογής για συγχρονισμό των
|
|||
msgid "Show First Run Wizard again"
|
||||
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"
|
||||
msgstr "Συνθηματικό"
|
||||
|
||||
|
@ -424,7 +425,7 @@ msgstr "Νέο συνθηματικό"
|
|||
msgid "Change password"
|
||||
msgstr "Αλλαγή συνθηματικού"
|
||||
|
||||
#: templates/personal.php:56 templates/users.php:81
|
||||
#: templates/personal.php:56 templates/users.php:85
|
||||
msgid "Display Name"
|
||||
msgstr "Όνομα εμφάνισης"
|
||||
|
||||
|
@ -456,7 +457,7 @@ msgstr "WebDAV"
|
|||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας"
|
||||
|
||||
#: templates/users.php:21 templates/users.php:80
|
||||
#: templates/users.php:21 templates/users.php:84
|
||||
msgid "Login Name"
|
||||
msgstr "Όνομα Σύνδεσης"
|
||||
|
||||
|
@ -464,34 +465,40 @@ msgstr "Όνομα Σύνδεσης"
|
|||
msgid "Create"
|
||||
msgstr "Δημιουργία"
|
||||
|
||||
#: templates/users.php:34
|
||||
#: templates/users.php:36
|
||||
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 ""
|
||||
|
||||
#: templates/users.php:38
|
||||
#: templates/users.php:42
|
||||
msgid "Default Storage"
|
||||
msgstr "Προκαθορισμένη Αποθήκευση "
|
||||
|
||||
#: templates/users.php:44 templates/users.php:138
|
||||
#: templates/users.php:48 templates/users.php:142
|
||||
msgid "Unlimited"
|
||||
msgstr "Απεριόριστο"
|
||||
|
||||
#: templates/users.php:62 templates/users.php:153
|
||||
#: templates/users.php:66 templates/users.php:157
|
||||
msgid "Other"
|
||||
msgstr "Άλλο"
|
||||
|
||||
#: templates/users.php:87
|
||||
#: templates/users.php:91
|
||||
msgid "Storage"
|
||||
msgstr "Αποθήκευση"
|
||||
|
||||
#: templates/users.php:98
|
||||
#: templates/users.php:102
|
||||
msgid "change display name"
|
||||
msgstr "αλλαγή ονόματος εμφάνισης"
|
||||
|
||||
#: templates/users.php:102
|
||||
#: templates/users.php:106
|
||||
msgid "set new password"
|
||||
msgstr "επιλογή νέου κωδικού"
|
||||
|
||||
#: templates/users.php:133
|
||||
#: templates/users.php:137
|
||||
msgid "Default"
|
||||
msgstr "Προκαθορισμένο"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:19+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:18+0000\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-10 01:58+0200\n"
|
||||
"PO-Revision-Date: 2013-06-09 23:18+0000\n"
|
||||
"POT-Creation-Date: 2013-06-11 01:56+0200\n"
|
||||
"PO-Revision-Date: 2013-06-10 23:19+0000\n"
|
||||
"Last-Translator: lhpalacio <luizhenrique_gomespalacio@hotmail.com>\n"
|
||||
"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue