Merge branch 'master' into file_encryption_external_storage_fixes
This commit is contained in:
commit
1202ab9995
573 changed files with 2248 additions and 2123 deletions
|
@ -46,6 +46,7 @@
|
|||
"{count} folders" => "{count} pastas",
|
||||
"1 file" => "1 ficheiro",
|
||||
"{count} files" => "{count} ficheiros",
|
||||
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nome da pasta inválido. Palavra 'Shared' é reservado pela ownCloud",
|
||||
"Unable to rename file" => "Não foi possível renomear o ficheiro",
|
||||
"Upload" => "Carregar",
|
||||
"File handling" => "Manuseamento de ficheiros",
|
||||
|
|
|
@ -57,7 +57,7 @@ class Hooks {
|
|||
|
||||
$privateKey = Crypt::symmetricDecryptFileContent( $encryptedKey, $params['password'] );
|
||||
|
||||
$session = new Session( $view );
|
||||
$session = new \OCA\Encryption\Session( $view );
|
||||
|
||||
$session->setPrivateKey( $privateKey, $params['uid'] );
|
||||
|
||||
|
@ -151,7 +151,7 @@ class Hooks {
|
|||
|
||||
$view = new \OC_FilesystemView('/');
|
||||
|
||||
$session = new Session($view);
|
||||
$session = new \OCA\Encryption\Session($view);
|
||||
|
||||
// Get existing decrypted private key
|
||||
$privateKey = $session->getPrivateKey();
|
||||
|
@ -266,7 +266,7 @@ class Hooks {
|
|||
if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') {
|
||||
|
||||
$view = new \OC_FilesystemView('/');
|
||||
$session = new Session($view);
|
||||
$session = new \OCA\Encryption\Session($view);
|
||||
$userId = \OCP\User::getUser();
|
||||
$util = new Util($view, $userId);
|
||||
$path = $util->fileIdToPath($params['itemSource']);
|
||||
|
@ -451,7 +451,7 @@ class Hooks {
|
|||
\OC_FileProxy::$enabled = false;
|
||||
|
||||
$view = new \OC_FilesystemView('/');
|
||||
$session = new Session($view);
|
||||
$session = new \OCA\Encryption\Session($view);
|
||||
$userId = \OCP\User::getUser();
|
||||
$util = new Util( $view, $userId );
|
||||
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Saving..." => "Salvestamine...",
|
||||
"Encryption" => "Krüpteerimine"
|
||||
"Encryption" => "Krüpteerimine",
|
||||
"Enabled" => "Sisse lülitatud",
|
||||
"Disabled" => "Väljalülitatud",
|
||||
"Change Password" => "Muuda parooli"
|
||||
);
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Could not " => "Não foi possivel",
|
||||
"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"
|
||||
"Encryption" => "Encriptação",
|
||||
"Enabled" => "Activado",
|
||||
"Disabled" => "Desactivado",
|
||||
"Change Password" => "Mudar a Password"
|
||||
);
|
||||
|
|
|
@ -111,7 +111,7 @@ class Proxy extends \OC_FileProxy
|
|||
$userId = \OCP\USER::getUser();
|
||||
$view = new \OC_FilesystemView( '/' );
|
||||
$util = new Util( $view, $userId );
|
||||
$session = new Session( $view );
|
||||
$session = new \OCA\Encryption\Session( $view );
|
||||
$privateKey = $session->getPrivateKey();
|
||||
$filePath = $util->stripUserFilesPath( $path );
|
||||
// Set the filesize for userland, before encrypting
|
||||
|
@ -197,7 +197,7 @@ class Proxy extends \OC_FileProxy
|
|||
\OC_FileProxy::$enabled = false;
|
||||
|
||||
// init session
|
||||
$session = new Session( $view );
|
||||
$session = new \OCA\Encryption\Session( $view );
|
||||
|
||||
// If data is a catfile
|
||||
if (
|
||||
|
@ -220,7 +220,7 @@ class Proxy extends \OC_FileProxy
|
|||
|
||||
} elseif (
|
||||
Crypt::mode() == 'server'
|
||||
&& isset( $_SESSION['legacyenckey'] )
|
||||
&&\OC::$session->exists('legacyenckey')
|
||||
&& Crypt::isEncryptedMeta( $path )
|
||||
) {
|
||||
$plainData = Crypt::legacyBlockDecrypt( $data, $session->getLegacyKey() );
|
||||
|
@ -439,7 +439,7 @@ class Proxy extends \OC_FileProxy
|
|||
\OC_FileProxy::$enabled = false;
|
||||
|
||||
$view = new \OC_FilesystemView( '/' );
|
||||
$session = new Session( $view );
|
||||
$session = new \OCA\Encryption\Session( $view );
|
||||
$userId = \OCP\User::getUser();
|
||||
$util = new Util( $view, $userId );
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@ class Session
|
|||
*/
|
||||
public function setPrivateKey( $privateKey ) {
|
||||
|
||||
$_SESSION['privateKey'] = $privateKey;
|
||||
\OC::$session->set('privateKey', $privateKey);
|
||||
|
||||
return true;
|
||||
|
||||
|
@ -122,8 +122,8 @@ class Session
|
|||
if (\OCA\Encryption\Helper::isPublicAccess()) {
|
||||
return $this->getPublicSharePrivateKey();
|
||||
} else {
|
||||
if (isset($_SESSION['privateKey']) && !empty($_SESSION['privateKey'])) {
|
||||
return $_SESSION['privateKey'];
|
||||
if (!is_null( \OC::$session->get('privateKey') )) {
|
||||
return \OC::$session->get('privateKey');
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
|
@ -137,7 +137,7 @@ class Session
|
|||
*/
|
||||
public function setPublicSharePrivateKey($privateKey) {
|
||||
|
||||
$_SESSION['publicSharePrivateKey'] = $privateKey;
|
||||
\OC::$session->set('publicSharePrivateKey', $privateKey);
|
||||
|
||||
return true;
|
||||
|
||||
|
@ -150,12 +150,11 @@ class Session
|
|||
*/
|
||||
public function getPublicSharePrivateKey() {
|
||||
|
||||
if (isset($_SESSION['publicSharePrivateKey']) && !empty($_SESSION['publicSharePrivateKey'])) {
|
||||
return $_SESSION['publicSharePrivateKey'];
|
||||
if (!is_null( \OC::$session->get('publicSharePrivateKey') )) {
|
||||
return \OC::$session->get('publicSharePrivateKey');
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -166,7 +165,7 @@ class Session
|
|||
*/
|
||||
public function setLegacyKey( $legacyKey ) {
|
||||
|
||||
$_SESSION['legacyKey'] = $legacyKey;
|
||||
\OC::$session->set('legacyKey', $legacyKey);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -178,12 +177,9 @@ class Session
|
|||
*/
|
||||
public function getLegacyKey() {
|
||||
|
||||
if (
|
||||
isset( $_SESSION['legacyKey'] )
|
||||
&& !empty( $_SESSION['legacyKey'] )
|
||||
) {
|
||||
if ( !is_null( \OC::$session->get('legacyKey') ) ) {
|
||||
|
||||
return $_SESSION['legacyKey'];
|
||||
return \OC::$session->get('legacyKey');
|
||||
|
||||
} else {
|
||||
|
||||
|
@ -193,4 +189,4 @@ class Session
|
|||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -228,7 +228,7 @@ class Stream
|
|||
// If a keyfile already exists
|
||||
if ( $this->encKeyfile ) {
|
||||
|
||||
$session = new Session( $this->rootView );
|
||||
$session = new \OCA\Encryption\Session( $this->rootView );
|
||||
|
||||
$privateKey = $session->getPrivateKey( $this->userId );
|
||||
|
||||
|
|
|
@ -1420,7 +1420,7 @@ class Util {
|
|||
if ($item['type'] == 'dir') {
|
||||
$this->addRecoveryKeys($filePath . '/');
|
||||
} else {
|
||||
$session = new Session(new \OC_FilesystemView('/'));
|
||||
$session = new \OCA\Encryption\Session(new \OC_FilesystemView('/'));
|
||||
$sharingEnabled = \OCP\Share::isEnabled();
|
||||
$file = substr($filePath, 0, -4);
|
||||
$usersSharing = $this->getSharingUsersArray($sharingEnabled, $file);
|
||||
|
|
|
@ -270,7 +270,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
$shareKey = Encryption\Keymanager::getShareKey($this->view, $this->userId, $filename);
|
||||
|
||||
// get session
|
||||
$session = new Encryption\Session($this->view);
|
||||
$session = new \OCA\Encryption\Session($this->view);
|
||||
|
||||
// get private key
|
||||
$privateKey = $session->getPrivateKey($this->userId);
|
||||
|
@ -345,7 +345,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
$shareKey = Encryption\Keymanager::getShareKey($this->view, $this->userId, $filename);
|
||||
|
||||
// get session
|
||||
$session = new Encryption\Session($this->view);
|
||||
$session = new \OCA\Encryption\Session($this->view);
|
||||
|
||||
// get private key
|
||||
$privateKey = $session->getPrivateKey($this->userId);
|
||||
|
|
|
@ -183,7 +183,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
|
|||
|
||||
$this->assertTrue(OCA\Encryption\Hooks::login($params));
|
||||
|
||||
$this->assertEquals($this->legacyKey, $_SESSION['legacyKey']);
|
||||
$this->assertEquals($this->legacyKey, \OC::$session->get('legacyKey'));
|
||||
}
|
||||
|
||||
function testRecoveryEnabledForUser() {
|
||||
|
@ -273,7 +273,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
|
|||
|
||||
$this->assertTrue(OCA\Encryption\Hooks::login($params));
|
||||
|
||||
$this->assertEquals($this->legacyKey, $_SESSION['legacyKey']);
|
||||
$this->assertEquals($this->legacyKey, \OC::$session->get('legacyKey'));
|
||||
|
||||
$files = $util->findEncFiles('/' . \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER . '/files/');
|
||||
|
||||
|
@ -314,4 +314,4 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
|
|||
$params['password'] = $password;
|
||||
OCA\Encryption\Hooks::login($params);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -84,7 +84,7 @@ if (isset($path)) {
|
|||
exit();
|
||||
} else {
|
||||
// Save item id in session for future requests
|
||||
$_SESSION['public_link_authenticated'] = $linkItem['id'];
|
||||
\OC::$session->set('public_link_authenticated', $linkItem['id']);
|
||||
}
|
||||
} else {
|
||||
OCP\Util::writeLog('share', 'Unknown share type '.$linkItem['share_type']
|
||||
|
@ -97,8 +97,8 @@ if (isset($path)) {
|
|||
|
||||
} else {
|
||||
// Check if item id is set in session
|
||||
if (!isset($_SESSION['public_link_authenticated'])
|
||||
|| $_SESSION['public_link_authenticated'] !== $linkItem['id']
|
||||
if ( ! \OC::$session->exists('public_link_authenticated')
|
||||
|| \OC::$session->get('public_link_authenticated') !== $linkItem['id']
|
||||
) {
|
||||
// Prompt for password
|
||||
$tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest');
|
||||
|
|
|
@ -67,8 +67,8 @@
|
|||
"Password" => "Contrasenya",
|
||||
"Email link to person" => "Enllaç per correu electrónic amb la persona",
|
||||
"Send" => "Envia",
|
||||
"Set expiration date" => "Estableix la data d'expiració",
|
||||
"Expiration date" => "Data d'expiració",
|
||||
"Set expiration date" => "Estableix la data de venciment",
|
||||
"Expiration date" => "Data de venciment",
|
||||
"Share via email:" => "Comparteix per correu electrònic",
|
||||
"No people found" => "No s'ha trobat ningú",
|
||||
"Resharing is not allowed" => "No es permet compartir de nou",
|
||||
|
@ -81,8 +81,8 @@
|
|||
"delete" => "elimina",
|
||||
"share" => "comparteix",
|
||||
"Password protected" => "Protegeix amb contrasenya",
|
||||
"Error unsetting expiration date" => "Error en eliminar la data d'expiració",
|
||||
"Error setting expiration date" => "Error en establir la data d'expiració",
|
||||
"Error unsetting expiration date" => "Error en eliminar la data de venciment",
|
||||
"Error setting expiration date" => "Error en establir la data de venciment",
|
||||
"Sending ..." => "Enviant...",
|
||||
"Email sent" => "El correu electrónic s'ha enviat",
|
||||
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "L'actualització ha estat incorrecte. Comuniqueu aquest error a <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">la comunitat ownCloud</a>.",
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"User %s shared a file with you" => "Kasutaja %s jagas Sinuga faili",
|
||||
"User %s shared a file with you" => "Kasutaja %s jagas sinuga faili",
|
||||
"User %s shared a folder with you" => "Kasutaja %s jagas Sinuga kausta.",
|
||||
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas Sinuga faili \"%s\". See on allalaadimiseks saadaval siin: %s",
|
||||
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas Sinuga kataloogi \"%s\". See on allalaadimiseks saadaval siin: %s",
|
||||
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas sinuga faili \"%s\". See on allalaadimiseks saadaval siin: %s",
|
||||
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas sinuga kausta \"%s\". See on allalaadimiseks saadaval siin: %s",
|
||||
"Category type not provided." => "Kategooria tüüp puudub.",
|
||||
"No category to add?" => "Pole kategooriat, mida lisada?",
|
||||
"This category already exists: %s" => "See kategooria on juba olemas: %s",
|
||||
|
@ -10,7 +10,7 @@
|
|||
"%s ID not provided." => "%s ID puudub.",
|
||||
"Error adding %s to favorites." => "Viga %s lisamisel lemmikutesse.",
|
||||
"No categories selected for deletion." => "Kustutamiseks pole kategooriat valitud.",
|
||||
"Error removing %s from favorites." => "Viga %s eemaldamisel lemmikutest",
|
||||
"Error removing %s from favorites." => "Viga %s eemaldamisel lemmikutest.",
|
||||
"Sunday" => "Pühapäev",
|
||||
"Monday" => "Esmaspäev",
|
||||
"Tuesday" => "Teisipäev",
|
||||
|
@ -52,7 +52,7 @@
|
|||
"Ok" => "Ok",
|
||||
"The object type is not specified." => "Objekti tüüp pole määratletud.",
|
||||
"Error" => "Viga",
|
||||
"The app name is not specified." => "Rakenduse nimi ole määratletud",
|
||||
"The app name is not specified." => "Rakenduse nimi ole määratletud.",
|
||||
"The required file {file} is not installed!" => "Vajalikku faili {file} pole paigaldatud!",
|
||||
"Shared" => "Jagatud",
|
||||
"Share" => "Jaga",
|
||||
|
@ -83,13 +83,13 @@
|
|||
"Password protected" => "Parooliga kaitstud",
|
||||
"Error unsetting expiration date" => "Viga aegumise kuupäeva eemaldamisel",
|
||||
"Error setting expiration date" => "Viga aegumise kuupäeva määramisel",
|
||||
"Sending ..." => "Saadan ...",
|
||||
"Email sent" => "Email saadetud",
|
||||
"Sending ..." => "Saatmine ...",
|
||||
"Email sent" => "E-kiri on saadetud",
|
||||
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Uuendus ebaõnnestus. Palun teavita probleemidest <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud kogukonda</a>.",
|
||||
"The update was successful. Redirecting you to ownCloud now." => "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi.",
|
||||
"ownCloud password reset" => "ownCloud parooli taastamine",
|
||||
"Use the following link to reset your password: {link}" => "Kasuta järgnevat linki oma parooli taastamiseks: {link}",
|
||||
"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Link parooli vahetuseks on saadetud Sinu e-posti aadressil.<br>Kui kiri pole saabunud mõistliku aja jooksul, siis kontrolli oma spam-/rämpskirjade katalooge.<br>Kui kirja pole ka seal, siis küsi abi süsteemihaldurilt.",
|
||||
"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Link parooli vahetuseks on saadetud Sinu e-posti aadressile.<br>Kui kiri pole saabunud mõistliku aja jooksul, siis kontrolli oma spam-/rämpskirjade katalooge.<br>Kui kirja pole ka seal, siis küsi abi süsteemihaldurilt.",
|
||||
"Request failed!<br>Did you make sure your email/username was right?" => "Päring ebaõnnestus!<br>Oled sa veendunud, et e-post/kasutajanimi on õiged?",
|
||||
"You will receive a link to reset your password via Email." => "Sinu parooli taastamise link saadetakse sulle e-postile.",
|
||||
"Username" => "Kasutajanimi",
|
||||
|
@ -113,7 +113,7 @@
|
|||
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Turvalist juhuslike numbrite generaatorit pole saadaval. Palun luba PHP-s OpenSSL laiendus.",
|
||||
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ilma turvalise juhuslike numbrite generaatorita võib ründaja ennustada paroolivahetuse võtme ning hõivata su konto.",
|
||||
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Su andmete kataloog ja failid on tõenäoliselt internetist vabalt saadaval kuna .htaccess fail ei toimi.",
|
||||
"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Serveri korrektseks seadistuseks palun tutvu <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentatsiooniga</a>.",
|
||||
"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Serveri korrektseks seadistuseks tutvu palun <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentatsiooniga</a>.",
|
||||
"Create an <strong>admin account</strong>" => "Loo <strong>admini konto</strong>",
|
||||
"Advanced" => "Täpsem",
|
||||
"Data folder" => "Andmete kaust",
|
||||
|
@ -125,17 +125,17 @@
|
|||
"Database tablespace" => "Andmebaasi tabeliruum",
|
||||
"Database host" => "Andmebaasi host",
|
||||
"Finish setup" => "Lõpeta seadistamine",
|
||||
"web services under your control" => "veebitenused sinu kontrolli all",
|
||||
"web services under your control" => "veebiteenused sinu kontrolli all",
|
||||
"%s is available. Get more information on how to update." => "%s on saadaval. Vaata lähemalt kuidas uuendada.",
|
||||
"Log out" => "Logi välja",
|
||||
"Automatic logon rejected!" => "Automaatne sisselogimine lükati tagasi!",
|
||||
"If you did not change your password recently, your account may be compromised!" => "Kui sa ei muutnud oma parooli hiljut, siis võib su kasutajakonto olla ohustatud!",
|
||||
"If you did not change your password recently, your account may be compromised!" => "Kui sa ei muutnud oma parooli hiljuti, siis võib su kasutajakonto olla ohustatud!",
|
||||
"Please change your password to secure your account again." => "Palun muuda parooli, et oma kasutajakonto uuesti turvata.",
|
||||
"Lost your password?" => "Kaotasid oma parooli?",
|
||||
"remember" => "pea meeles",
|
||||
"Log in" => "Logi sisse",
|
||||
"Alternative Logins" => "Alternatiivsed meldimised",
|
||||
"Alternative Logins" => "Alternatiivsed sisselogimisviisid",
|
||||
"prev" => "eelm",
|
||||
"next" => "järgm",
|
||||
"Updating ownCloud to version %s, this may take a while." => "Uuendan ownCloudi versioonile %s. Läheb pisut aega."
|
||||
"Updating ownCloud to version %s, this may take a while." => "ownCloudi uuendamine versioonile %s. See võib veidi aega võtta."
|
||||
);
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
"years ago" => "anos atrás",
|
||||
"Choose" => "Escolha",
|
||||
"Cancel" => "Cancelar",
|
||||
"Error loading file picker template" => "Erro ao carregar arquivo do separador modelo",
|
||||
"Yes" => "Sim",
|
||||
"No" => "Não",
|
||||
"Ok" => "Ok",
|
||||
|
|
|
@ -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-27 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-26 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 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"
|
||||
|
@ -564,12 +564,12 @@ msgstr "Maak opstelling klaar"
|
|||
msgid "web services under your control"
|
||||
msgstr "webdienste onder jou beheer"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr ""
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
msgstr "Teken uit"
|
||||
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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"
|
||||
|
@ -564,12 +564,12 @@ msgstr "انهاء التعديلات"
|
|||
msgid "web services under your control"
|
||||
msgstr "خدمات الشبكة تحت سيطرتك"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr ""
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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"
|
||||
|
@ -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 "
|
||||
|
@ -427,31 +427,31 @@ msgstr "عدل كلمة السر"
|
|||
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 "WebDAV"
|
||||
|
||||
#: templates/personal.php:96
|
||||
#: templates/personal.php:102
|
||||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات"
|
||||
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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"
|
||||
|
@ -564,12 +564,12 @@ msgstr "Завършване на настройките"
|
|||
msgid "web services under your control"
|
||||
msgstr "уеб услуги под Ваш контрол"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr ""
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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"
|
||||
|
@ -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 "
|
||||
|
@ -427,31 +427,31 @@ msgstr "Промяна на паролата"
|
|||
msgid "Display Name"
|
||||
msgstr "Екранно име"
|
||||
|
||||
#: templates/personal.php:68
|
||||
#: templates/personal.php:71
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: templates/personal.php:70
|
||||
#: templates/personal.php:73
|
||||
msgid "Your email address"
|
||||
msgstr "Вашия email адрес"
|
||||
|
||||
#: 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 "WebDAV"
|
||||
|
||||
#: templates/personal.php:96
|
||||
#: templates/personal.php:102
|
||||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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"
|
||||
|
@ -564,12 +564,12 @@ msgstr "সেটআপ সুসম্পন্ন কর"
|
|||
msgid "web services under your control"
|
||||
msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr ""
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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"
|
||||
|
@ -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 "
|
||||
|
@ -427,31 +427,31 @@ msgstr "কূটশব্দ পরিবর্তন করুন"
|
|||
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 "WebDAV"
|
||||
|
||||
#: templates/personal.php:96
|
||||
#: templates/personal.php:102
|
||||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন"
|
||||
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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"
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+0000\n"
|
||||
"Last-Translator: rogerc\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -313,11 +313,11 @@ msgstr "Envia"
|
|||
|
||||
#: js/share.js:178
|
||||
msgid "Set expiration date"
|
||||
msgstr "Estableix la data d'expiració"
|
||||
msgstr "Estableix la data de venciment"
|
||||
|
||||
#: js/share.js:179
|
||||
msgid "Expiration date"
|
||||
msgstr "Data d'expiració"
|
||||
msgstr "Data de venciment"
|
||||
|
||||
#: js/share.js:211
|
||||
msgid "Share via email:"
|
||||
|
@ -369,11 +369,11 @@ msgstr "Protegeix amb contrasenya"
|
|||
|
||||
#: js/share.js:577
|
||||
msgid "Error unsetting expiration date"
|
||||
msgstr "Error en eliminar la data d'expiració"
|
||||
msgstr "Error en eliminar la data de venciment"
|
||||
|
||||
#: js/share.js:589
|
||||
msgid "Error setting expiration date"
|
||||
msgstr "Error en establir la data d'expiració"
|
||||
msgstr "Error en establir la data de venciment"
|
||||
|
||||
#: js/share.js:604
|
||||
msgid "Sending ..."
|
||||
|
@ -566,12 +566,12 @@ msgstr "Acaba la configuració"
|
|||
msgid "web services under your control"
|
||||
msgstr "controleu els vostres serveis web"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr "%s està disponible. Obtingueu més informació de com actualitzar."
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
msgstr "Surt"
|
||||
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+0000\n"
|
||||
"Last-Translator: rogerc\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -326,11 +326,11 @@ msgstr "Més"
|
|||
msgid "Less"
|
||||
msgstr "Menys"
|
||||
|
||||
#: templates/admin.php:235 templates/personal.php:105
|
||||
#: templates/admin.php:235 templates/personal.php:111
|
||||
msgid "Version"
|
||||
msgstr "Versió"
|
||||
|
||||
#: 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 "
|
||||
|
@ -429,31 +429,31 @@ msgstr "Canvia la contrasenya"
|
|||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
|
||||
#: templates/personal.php:68
|
||||
#: templates/personal.php:71
|
||||
msgid "Email"
|
||||
msgstr "Correu electrònic"
|
||||
|
||||
#: templates/personal.php:70
|
||||
#: templates/personal.php:73
|
||||
msgid "Your email address"
|
||||
msgstr "Correu electrònic"
|
||||
|
||||
#: templates/personal.php:71
|
||||
#: templates/personal.php:74
|
||||
msgid "Fill in an email address to enable password recovery"
|
||||
msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya"
|
||||
|
||||
#: templates/personal.php:77 templates/personal.php:78
|
||||
#: templates/personal.php:83 templates/personal.php:84
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#: templates/personal.php:89
|
||||
#: templates/personal.php:95
|
||||
msgid "Help translate"
|
||||
msgstr "Ajudeu-nos amb la traducció"
|
||||
|
||||
#: templates/personal.php:94
|
||||
#: templates/personal.php:100
|
||||
msgid "WebDAV"
|
||||
msgstr "WebDAV"
|
||||
|
||||
#: templates/personal.php:96
|
||||
#: templates/personal.php:102
|
||||
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"
|
||||
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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"
|
||||
|
@ -565,12 +565,12 @@ msgstr "Dokončit nastavení"
|
|||
msgid "web services under your control"
|
||||
msgstr "služby webu pod Vaší kontrolou"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr "%s je dostupná. Získejte více informací k postupu aktualizace."
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
msgstr "Odhlásit se"
|
||||
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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"
|
||||
|
@ -324,11 +324,11 @@ msgstr "Více"
|
|||
msgid "Less"
|
||||
msgstr "Méně"
|
||||
|
||||
#: templates/admin.php:235 templates/personal.php:105
|
||||
#: templates/admin.php:235 templates/personal.php:111
|
||||
msgid "Version"
|
||||
msgstr "Verze"
|
||||
|
||||
#: 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 "
|
||||
|
@ -427,31 +427,31 @@ msgstr "Změnit heslo"
|
|||
msgid "Display Name"
|
||||
msgstr "Zobrazované jméno"
|
||||
|
||||
#: templates/personal.php:68
|
||||
#: templates/personal.php:71
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: templates/personal.php:70
|
||||
#: templates/personal.php:73
|
||||
msgid "Your email address"
|
||||
msgstr "Vaše e-mailová adresa"
|
||||
|
||||
#: templates/personal.php:71
|
||||
#: templates/personal.php:74
|
||||
msgid "Fill in an email address to enable password recovery"
|
||||
msgstr "Pro povolení změny hesla vyplňte adresu e-mailu"
|
||||
|
||||
#: templates/personal.php:77 templates/personal.php:78
|
||||
#: templates/personal.php:83 templates/personal.php:84
|
||||
msgid "Language"
|
||||
msgstr "Jazyk"
|
||||
|
||||
#: templates/personal.php:89
|
||||
#: templates/personal.php:95
|
||||
msgid "Help translate"
|
||||
msgstr "Pomoci s překladem"
|
||||
|
||||
#: templates/personal.php:94
|
||||
#: templates/personal.php:100
|
||||
msgid "WebDAV"
|
||||
msgstr "WebDAV"
|
||||
|
||||
#: templates/personal.php:96
|
||||
#: templates/personal.php:102
|
||||
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ů"
|
||||
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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"
|
||||
|
@ -565,12 +565,12 @@ msgstr "Gorffen sefydlu"
|
|||
msgid "web services under your control"
|
||||
msgstr "gwasanaethau gwe a reolir gennych"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr "%s ar gael. Mwy o wybodaeth am sut i ddiweddaru."
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
msgstr "Allgofnodi"
|
||||
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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"
|
||||
|
@ -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 "
|
||||
|
@ -427,31 +427,31 @@ msgstr ""
|
|||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:68
|
||||
#: templates/personal.php:71
|
||||
msgid "Email"
|
||||
msgstr "E-bost"
|
||||
|
||||
#: 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 ""
|
||||
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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"
|
||||
|
@ -564,12 +564,12 @@ msgstr "Afslut opsætning"
|
|||
msgid "web services under your control"
|
||||
msgstr "Webtjenester under din kontrol"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr ""
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
msgstr "Log ud"
|
||||
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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"
|
||||
|
@ -325,11 +325,11 @@ msgstr "Mere"
|
|||
msgid "Less"
|
||||
msgstr "Mindre"
|
||||
|
||||
#: templates/admin.php:235 templates/personal.php:105
|
||||
#: templates/admin.php:235 templates/personal.php:111
|
||||
msgid "Version"
|
||||
msgstr "Version"
|
||||
|
||||
#: 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 "
|
||||
|
@ -428,31 +428,31 @@ msgstr "Skift kodeord"
|
|||
msgid "Display Name"
|
||||
msgstr "Skærmnavn"
|
||||
|
||||
#: templates/personal.php:68
|
||||
#: templates/personal.php:71
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: templates/personal.php:70
|
||||
#: templates/personal.php:73
|
||||
msgid "Your email address"
|
||||
msgstr "Din emailadresse"
|
||||
|
||||
#: templates/personal.php:71
|
||||
#: templates/personal.php:74
|
||||
msgid "Fill in an email address to enable password recovery"
|
||||
msgstr "Indtast en emailadresse for at kunne få påmindelse om adgangskode"
|
||||
|
||||
#: templates/personal.php:77 templates/personal.php:78
|
||||
#: templates/personal.php:83 templates/personal.php:84
|
||||
msgid "Language"
|
||||
msgstr "Sprog"
|
||||
|
||||
#: templates/personal.php:89
|
||||
#: templates/personal.php:95
|
||||
msgid "Help translate"
|
||||
msgstr "Hjælp med oversættelsen"
|
||||
|
||||
#: templates/personal.php:94
|
||||
#: templates/personal.php:100
|
||||
msgid "WebDAV"
|
||||
msgstr "WebDAV"
|
||||
|
||||
#: templates/personal.php:96
|
||||
#: templates/personal.php:102
|
||||
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"
|
||||
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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"
|
||||
|
|
|
@ -10,8 +10,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+0000\n"
|
||||
"Last-Translator: Marcel Kühlhorn <susefan93@gmx.de>\n"
|
||||
"Language-Team: German <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -567,12 +567,12 @@ msgstr "Installation abschließen"
|
|||
msgid "web services under your control"
|
||||
msgstr "Web-Services unter Deiner Kontrolle"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein."
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
msgstr "Abmelden"
|
||||
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: German <translations@owncloud.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -326,11 +326,11 @@ msgstr "Mehr"
|
|||
msgid "Less"
|
||||
msgstr "Weniger"
|
||||
|
||||
#: templates/admin.php:235 templates/personal.php:105
|
||||
#: templates/admin.php:235 templates/personal.php:111
|
||||
msgid "Version"
|
||||
msgstr "Version"
|
||||
|
||||
#: 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 "
|
||||
|
@ -429,31 +429,31 @@ msgstr "Passwort ändern"
|
|||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#: templates/personal.php:68
|
||||
#: templates/personal.php:71
|
||||
msgid "Email"
|
||||
msgstr "E-Mail"
|
||||
|
||||
#: templates/personal.php:70
|
||||
#: templates/personal.php:73
|
||||
msgid "Your email address"
|
||||
msgstr "Deine E-Mail-Adresse"
|
||||
|
||||
#: templates/personal.php:71
|
||||
#: templates/personal.php:74
|
||||
msgid "Fill in an email address to enable password recovery"
|
||||
msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren."
|
||||
|
||||
#: templates/personal.php:77 templates/personal.php:78
|
||||
#: templates/personal.php:83 templates/personal.php:84
|
||||
msgid "Language"
|
||||
msgstr "Sprache"
|
||||
|
||||
#: templates/personal.php:89
|
||||
#: templates/personal.php:95
|
||||
msgid "Help translate"
|
||||
msgstr "Hilf bei der Übersetzung"
|
||||
|
||||
#: templates/personal.php:94
|
||||
#: templates/personal.php:100
|
||||
msgid "WebDAV"
|
||||
msgstr "WebDAV"
|
||||
|
||||
#: templates/personal.php:96
|
||||
#: templates/personal.php:102
|
||||
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"
|
||||
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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"
|
||||
|
@ -568,12 +568,12 @@ msgstr "Installation abschließen"
|
|||
msgid "web services under your control"
|
||||
msgstr "Web-Services unter Ihrer Kontrolle"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein."
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
msgstr "Abmelden"
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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,8 +11,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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"
|
||||
|
@ -328,11 +328,11 @@ msgstr "Mehr"
|
|||
msgid "Less"
|
||||
msgstr "Weniger"
|
||||
|
||||
#: templates/admin.php:235 templates/personal.php:105
|
||||
#: templates/admin.php:235 templates/personal.php:111
|
||||
msgid "Version"
|
||||
msgstr "Version"
|
||||
|
||||
#: 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 "
|
||||
|
@ -431,31 +431,31 @@ msgstr "Passwort ändern"
|
|||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#: templates/personal.php:68
|
||||
#: templates/personal.php:71
|
||||
msgid "Email"
|
||||
msgstr "E-Mail"
|
||||
|
||||
#: templates/personal.php:70
|
||||
#: templates/personal.php:73
|
||||
msgid "Your email address"
|
||||
msgstr "Ihre E-Mail-Adresse"
|
||||
|
||||
#: templates/personal.php:71
|
||||
#: templates/personal.php:74
|
||||
msgid "Fill in an email address to enable password recovery"
|
||||
msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren."
|
||||
|
||||
#: templates/personal.php:77 templates/personal.php:78
|
||||
#: templates/personal.php:83 templates/personal.php:84
|
||||
msgid "Language"
|
||||
msgstr "Sprache"
|
||||
|
||||
#: templates/personal.php:89
|
||||
#: templates/personal.php:95
|
||||
msgid "Help translate"
|
||||
msgstr "Helfen Sie bei der Übersetzung"
|
||||
|
||||
#: templates/personal.php:94
|
||||
#: templates/personal.php:100
|
||||
msgid "WebDAV"
|
||||
msgstr "WebDAV"
|
||||
|
||||
#: templates/personal.php:96
|
||||
#: templates/personal.php:102
|
||||
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"
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 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"
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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"
|
||||
|
@ -566,12 +566,12 @@ msgstr "Ολοκλήρωση εγκατάστασης"
|
|||
msgid "web services under your control"
|
||||
msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr ""
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
msgstr "Αποσύνδεση"
|
||||
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+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"
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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"
|
||||
|
@ -325,11 +325,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 "
|
||||
|
@ -428,31 +428,31 @@ msgstr "Αλλαγή συνθηματικού"
|
|||
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 "WebDAV"
|
||||
|
||||
#: templates/personal.php:96
|
||||
#: templates/personal.php:102
|
||||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας"
|
||||
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+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-05-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:18+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"
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2013-05-29 00:02+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -564,12 +564,12 @@ msgstr "Fini la instalon"
|
|||
msgid "web services under your control"
|
||||
msgstr "TTT-servoj regataj de vi"
|
||||
|
||||
#: templates/layout.user.php:36
|
||||
#: templates/layout.user.php:37
|
||||
#, php-format
|
||||
msgid "%s is available. Get more information on how to update."
|
||||
msgstr ""
|
||||
|
||||
#: templates/layout.user.php:61
|
||||
#: templates/layout.user.php:62
|
||||
msgid "Log out"
|
||||
msgstr "Elsaluti"
|
||||
|
||||
|
|
|
@ -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-28 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
|
||||
"POT-Creation-Date: 2013-05-29 02:01+0200\n"
|
||||
"PO-Revision-Date: 2013-05-28 23:17+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\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 a new issue