Merge branch 'master' into encryption_initial_enc_indicator

This commit is contained in:
Bjoern Schiessle 2013-11-26 19:15:53 +01:00
commit 7240d349da
289 changed files with 3227 additions and 1893 deletions

View File

@ -43,6 +43,7 @@ $TRANSLATIONS = array(
"Could not rename file" => "Nepodařilo se přejmenovat soubor",
"replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}",
"undo" => "vrátit zpět",
"Error deleting file." => "Chyba při mazání souboru.",
"_%n folder_::_%n folders_" => array("%n složka","%n složky","%n složek"),
"_%n file_::_%n files_" => array("%n soubor","%n soubory","%n souborů"),
"{dirs} and {files}" => "{dirs} a {files}",

View File

@ -43,6 +43,7 @@ $TRANSLATIONS = array(
"Could not rename file" => "Impossible de renommer le fichier",
"replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}",
"undo" => "annuler",
"Error deleting file." => "Erreur pendant la suppression du fichier.",
"_%n folder_::_%n folders_" => array("%n dossier","%n dossiers"),
"_%n file_::_%n files_" => array("%n fichier","%n fichiers"),
"{dirs} and {files}" => "{dirs} et {files}",

View File

@ -43,6 +43,7 @@ $TRANSLATIONS = array(
"Could not rename file" => "Kan ej byta filnamn",
"replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}",
"undo" => "ångra",
"Error deleting file." => "Kunde inte ta bort filen.",
"_%n folder_::_%n folders_" => array("%n mapp","%n mappar"),
"_%n file_::_%n files_" => array("%n fil","%n filer"),
"{dirs} and {files}" => "{dirs} och {files}",
@ -60,6 +61,7 @@ $TRANSLATIONS = array(
"Name" => "Namn",
"Size" => "Storlek",
"Modified" => "Ändrad",
"Invalid folder name. Usage of 'Shared' is reserved." => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud",
"%s could not be renamed" => "%s kunde inte namnändras",
"Upload" => "Ladda upp",
"File handling" => "Filhantering",

View File

@ -9,6 +9,7 @@ $TRANSLATIONS = array(
"Private key password successfully updated." => "Heslo soukromého klíče úspěšně aktualizováno.",
"Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Aplikace pro šifrování není inicializována! Je možné, že aplikace byla znovu aktivována během vašeho přihlášení. Zkuste se prosím odhlásit a znovu přihlásit pro provedení inicializace šifrovací aplikace.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému %s (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.",
"Unknown error please check your system settings or contact your administrator" => "Neznámá chyba, zkontrolujte vaše systémová nastavení nebo kontaktujte vašeho správce",
"Missing requirements." => "Nesplněné závislosti.",

View File

@ -9,6 +9,7 @@ $TRANSLATIONS = array(
"Private key password successfully updated." => "Den privata nyckelns lösenord uppdaterades utan problem.",
"Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera lösenordet för den privata nyckeln. Kanske var det gamla lösenordet fel.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Krypteringsprogrammet kunde inte initieras! Möjligen blev krypteringsprogrammet återaktiverad under din session. Försök med att logga ut och in igen för att initiera krypteringsprogrammet.",
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför %s (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Kan ej dekryptera denna fil, förmodligen är det en delad fil. Be ägaren av filen att dela den med dig.",
"Unknown error please check your system settings or contact your administrator" => "Oväntat fel, kolla dina system inställningar eller kontakta din administratör",
"Missing requirements." => "Krav som saknas",

View File

@ -302,6 +302,7 @@ class smb {
}
function rename ($url_from, $url_to) {
$replace = false;
list ($from, $to) = array (smb::parse_url($url_from), smb::parse_url($url_to));
if ($from['host'] <> $to['host'] ||
$from['share'] <> $to['share'] ||
@ -314,7 +315,20 @@ class smb {
trigger_error('rename(): error in URL', E_USER_ERROR);
}
smb::clearstatcache ($url_from);
$result = smb::execute ('rename "'.$from['path'].'" "'.$to['path'].'"', $to);
$cmd = '';
// check if target file exists
if (smb::url_stat($url_to)) {
// delete target file first
$cmd = 'del "' . $to['path'] . '"; ';
$replace = true;
}
$cmd .= 'rename "' . $from['path'] . '" "' . $to['path'] . '"';
$result = smb::execute($cmd, $to);
if ($replace) {
// clear again, else the cache will return the info
// from the old file
smb::clearstatcache ($url_to);
}
return $result !== false;
}

View File

@ -50,6 +50,22 @@ class Dropbox extends \OC\Files\Storage\Common {
}
}
private function deleteMetaData($path) {
$path = $this->root.$path;
if (isset($this->metaData[$path])) {
unset($this->metaData[$path]);
return true;
}
return false;
}
/**
* @brief Returns the path's metadata
* @param $path path for which to return the metadata
* @param $list if true, also return the directory's contents
* @return directory contents if $list is true, file metadata if $list is
* false, null if the file doesn't exist or "false" if the operation failed
*/
private function getMetaData($path, $list = false) {
$path = $this->root.$path;
if ( ! $list && isset($this->metaData[$path])) {
@ -62,24 +78,35 @@ class Dropbox extends \OC\Files\Storage\Common {
\OCP\Util::writeLog('files_external', $exception->getMessage(), \OCP\Util::ERROR);
return false;
}
$contents = array();
if ($response && isset($response['contents'])) {
$contents = $response['contents'];
// Cache folder's contents
foreach ($contents as $file) {
$this->metaData[$path.'/'.basename($file['path'])] = $file;
foreach ($response['contents'] as $file) {
if (!isset($file['is_deleted']) || !$file['is_deleted']) {
$this->metaData[$path.'/'.basename($file['path'])] = $file;
$contents[] = $file;
}
}
unset($response['contents']);
}
if (!isset($response['is_deleted']) || !$response['is_deleted']) {
$this->metaData[$path] = $response;
}
$this->metaData[$path] = $response;
// Return contents of folder only
return $contents;
} else {
try {
$response = $this->dropbox->getMetaData($path, 'false');
$this->metaData[$path] = $response;
return $response;
if (!isset($response['is_deleted']) || !$response['is_deleted']) {
$this->metaData[$path] = $response;
return $response;
}
return null;
} catch (\Exception $exception) {
if ($exception instanceof \Dropbox_Exception_NotFound) {
// don't log, might be a file_exist check
return false;
}
\OCP\Util::writeLog('files_external', $exception->getMessage(), \OCP\Util::ERROR);
return false;
}
@ -108,7 +135,7 @@ class Dropbox extends \OC\Files\Storage\Common {
public function opendir($path) {
$contents = $this->getMetaData($path, true);
if ($contents) {
if ($contents !== false) {
$files = array();
foreach ($contents as $file) {
$files[] = basename($file['path']);
@ -157,9 +184,9 @@ class Dropbox extends \OC\Files\Storage\Common {
}
public function unlink($path) {
$path = $this->root.$path;
try {
$this->dropbox->delete($path);
$this->dropbox->delete($this->root.$path);
$this->deleteMetaData($path);
return true;
} catch (\Exception $exception) {
\OCP\Util::writeLog('files_external', $exception->getMessage(), \OCP\Util::ERROR);
@ -168,10 +195,14 @@ class Dropbox extends \OC\Files\Storage\Common {
}
public function rename($path1, $path2) {
$path1 = $this->root.$path1;
$path2 = $this->root.$path2;
try {
$this->dropbox->move($path1, $path2);
// overwrite if target file exists and is not a directory
$destMetaData = $this->getMetaData($path2);
if (isset($destMetaData) && $destMetaData !== false && !$destMetaData['is_dir']) {
$this->unlink($path2);
}
$this->dropbox->move($this->root.$path1, $this->root.$path2);
$this->deleteMetaData($path1);
return true;
} catch (\Exception $exception) {
\OCP\Util::writeLog('files_external', $exception->getMessage(), \OCP\Util::ERROR);
@ -274,6 +305,7 @@ class Dropbox extends \OC\Files\Storage\Common {
} else {
$this->file_put_contents($path, '');
}
return true;
}
}

View File

@ -285,6 +285,9 @@ class SFTP extends \OC\Files\Storage\Common {
public function rename($source, $target) {
try {
if (!$this->is_dir($target) && $this->file_exists($target)) {
$this->unlink($target);
}
return $this->client->rename(
$this->absPath($source),
$this->absPath($target)

View File

@ -38,7 +38,7 @@ abstract class StreamWrapper extends Common {
}
public function filetype($path) {
return filetype($this->constructUrl($path));
return @filetype($this->constructUrl($path));
}
public function file_exists($path) {
@ -68,6 +68,7 @@ abstract class StreamWrapper extends Common {
}
} else {
$this->file_put_contents($path, '');
return true;
}
}

View File

@ -21,6 +21,22 @@ class Dropbox extends Storage {
$this->instance = new \OC\Files\Storage\Dropbox($this->config['dropbox']);
}
public function directoryProvider() {
// doesn't support leading/trailing spaces
return array(array('folder'));
}
public function testDropboxTouchReturnValue() {
$this->assertFalse($this->instance->file_exists('foo'));
// true because succeeded
$this->assertTrue($this->instance->touch('foo'));
$this->assertTrue($this->instance->file_exists('foo'));
// false because not supported
$this->assertFalse($this->instance->touch('foo'));
}
public function tearDown() {
if ($this->instance) {
$this->instance->unlink('/');

View File

@ -29,6 +29,11 @@ class SMB extends Storage {
}
}
public function directoryProvider() {
// doesn't support leading/trailing spaces
return array(array('folder'));
}
public function testRenameWithSpaces() {
$this->instance->mkdir('with spaces');
$result = $this->instance->rename('with spaces', 'foo bar');

View File

@ -14,6 +14,7 @@ $TRANSLATIONS = array(
"Download" => "Stáhnout",
"Upload" => "Odeslat",
"Cancel upload" => "Zrušit odesílání",
"No preview available for" => "Náhled není dostupný pro"
"No preview available for" => "Náhled není dostupný pro",
"Direct link" => "Přímý odkaz"
);
$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";

View File

@ -318,22 +318,21 @@ class Storage {
* @return size of vesions
*/
private static function calculateSize($uid) {
if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) {
$versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions');
$versionsRoot = $versions_fileview->getLocalFolder('');
$iterator = new \RecursiveIteratorIterator(
new \RecursiveDirectoryIterator($versionsRoot),
\RecursiveIteratorIterator::CHILD_FIRST
);
if (\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED) == 'true') {
$view = new \OC\Files\View('/' . $uid . '/files_versions');
$size = 0;
foreach ($iterator as $path) {
if ( preg_match('/^.+\.v(\d+)$/', $path, $match) ) {
$relpath = substr($path, strlen($versionsRoot)-1);
$size += $versions_fileview->filesize($relpath);
$dirContent = $view->getDirectoryContent('/');
while (!empty($dirContent)) {
$path = reset($dirContent);
if ($path['type'] === 'dir') {
$dirContent = array_merge($dirContent, $view->getDirectoryContent(substr($path['path'], strlen('files_versions'))));
} else {
$size += $view->filesize(substr($path['path'], strlen('files_versions')));
}
unset($dirContent[key($dirContent)]);
}
return $size;

View File

@ -16,6 +16,9 @@ $TRANSLATIONS = array(
"mappings cleared" => "mapování zrušeno",
"Success" => "Úspěch",
"Error" => "Chyba",
"Configuration OK" => "Konfigurace v pořádku",
"Configuration incorrect" => "Nesprávná konfigurace",
"Configuration incomplete" => "Nekompletní konfigurace",
"Select groups" => "Vyberte skupiny",
"Select object classes" => "Výběr objektových tříd",
"Select attributes" => "Výběr atributů",
@ -26,12 +29,18 @@ $TRANSLATIONS = array(
"_%s group found_::_%s groups found_" => array("nalezena %s skupina","nalezeny %s skupiny","nalezeno %s skupin"),
"_%s user found_::_%s users found_" => array("nalezen %s uživatel","nalezeni %s uživatelé","nalezeno %s uživatelů"),
"Invalid Host" => "Neplatný hostitel",
"Could not find the desired feature" => "Nelze nalézt požadovanou vlastnost",
"Save" => "Uložit",
"Test Configuration" => "Vyzkoušet nastavení",
"Help" => "Nápověda",
"Limit the access to %s to groups meeting this criteria:" => "Omezit přístup k %s uživatelům splňujícím tyto podmínky:",
"only those object classes:" => "pouze tyto objektové třídy:",
"only from those groups:" => "pouze z těchto skupin:",
"Edit raw filter instead" => "Edituj filtr přímo",
"Raw LDAP filter" => "Původní filtr LDAP",
"The filter specifies which LDAP groups shall have access to the %s instance." => "Filtr určuje, kteří uživatelé LDAP mají mít přístup k %s instanci.",
"groups found" => "nalezené skupiny",
"What attribute shall be used as login name:" => "Který atribut má být použit jako přihlašovací jméno:",
"LDAP Username:" => "LDAP uživatelské jméno",
"LDAP Email Address:" => "LDAP e-mailová adresa:",
"Other Attributes:" => "Další atributy",
@ -46,6 +55,7 @@ $TRANSLATIONS = array(
"One Base DN per line" => "Jedna základní DN na řádku",
"You can specify Base DN for users and groups in the Advanced tab" => "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny",
"Limit the access to %s to users meeting this criteria:" => "Omezit přístup k %s uživatelům splňujícím tyto podmínky:",
"The filter specifies which LDAP users shall have access to the %s instance." => "Filtr určuje, kteří uživatelé LDAP mají mít přístup k %s instanci.",
"users found" => "nalezení uživatelé",
"Back" => "Zpět",
"Continue" => "Pokračovat",

View File

@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Failed to delete the server configuration" => "Misslyckades med att radera serverinställningen",
"The configuration is valid and the connection could be established!" => "Inställningen är giltig och anslutningen kunde upprättas!",
"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Konfigurationen är riktig, men Bind felade. Var vänlig och kontrollera serverinställningar och logininformation.",
"The configuration is invalid. Please have a look at the logs for further details." => "Inställningen är ogiltig. Vänligen se ownCloud-loggen för fler detaljer.",
"No action specified" => "Ingen åtgärd har angetts",
"No configuration specified" => "Ingen konfiguration har angetts",
"No data specified" => "Ingen data har angetts",
@ -15,6 +16,9 @@ $TRANSLATIONS = array(
"mappings cleared" => "mappningar rensade",
"Success" => "Lyckat",
"Error" => "Fel",
"Configuration OK" => "Konfigurationen är OK",
"Configuration incorrect" => "Felaktig konfiguration",
"Configuration incomplete" => "Konfigurationen är ej komplett",
"Select groups" => "Välj grupper",
"Select object classes" => "Välj Objekt-klasser",
"Select attributes" => "Välj attribut",

View File

@ -0,0 +1,41 @@
<?php
/**
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OC\Core\Command\Maintenance;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Repair extends Command {
/**
* @var \OC\Repair $repair
*/
protected $repair;
/**
* @param \OC\Repair $repair
*/
public function __construct($repair) {
$this->repair = $repair;
parent::__construct();
}
protected function configure() {
$this
->setName('maintenance:repair')
->setDescription('set single user mode');
}
protected function execute(InputInterface $input, OutputInterface $output) {
$this->repair->listen('\OC\Repair', 'step', function ($description) use ($output) {
$output->writeln(' - ' . $description);
});
$this->repair->run();
}
}

View File

@ -5,7 +5,7 @@ $(document).ready(function () {
});
updateEventSource.listen('error', function(message) {
$('<span>').addClass('error').append(message).append('<br />').appendTo($('.update'));
message = 'Please reload the page.';
message = t('core', 'Please reload the page.');
$('<span>').addClass('error').append(message).append('<br />').appendTo($('.update'));
updateEventSource.close();
});

View File

@ -164,10 +164,10 @@ $TRANSLATIONS = array(
"Log in" => "Inici de sessió",
"Alternative Logins" => "Acreditacions alternatives",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Ei,<br><br>només fer-te saber que %s ha compartit »%s« amb tu.<br><a href=\"%s\">Mira-ho!</a><br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacteu amb l'administrador del sistema si aquest missatge persisteix o apareix inesperadament.",
"Thank you for your patience." => "Gràcies per la paciència.",
"Updating ownCloud to version %s, this may take a while." => "S'està actualitzant ownCloud a la versió %s, pot trigar una estona.",
"This ownCloud instance is currently being updated, which may take a while." => "Aquesta instància d'ownCloud s'està actualitzant i podria trigar una estona.",
"Please reload this page after a short time to continue using ownCloud." => "Carregueu de nou aquesta pàgina d'aquí a poc temps per continuar usant ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacteu amb l'administrador del sistema si aquest missatge persisteix o apareix inesperadament.",
"Thank you for your patience." => "Gràcies per la paciència."
"Please reload this page after a short time to continue using ownCloud." => "Carregueu de nou aquesta pàgina d'aquí a poc temps per continuar usant ownCloud."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -67,6 +67,8 @@ $TRANSLATIONS = array(
"Error while changing permissions" => "Chyba při změně oprávnění",
"Shared with you and the group {group} by {owner}" => "S Vámi a skupinou {group} sdílí {owner}",
"Shared with you by {owner}" => "S Vámi sdílí {owner}",
"Share with user or group …" => "Sdílej s uživatelem nebo skupinou",
"Share link" => "Sdílet odkaz",
"Password protect" => "Chránit heslem",
"Password" => "Heslo",
"Allow Public Upload" => "Povolit veřejné nahrávání",
@ -80,6 +82,7 @@ $TRANSLATIONS = array(
"Resharing is not allowed" => "Sdílení již sdílené položky není povoleno",
"Shared in {item} with {user}" => "Sdíleno v {item} s {user}",
"Unshare" => "Zrušit sdílení",
"notify by email" => "upozornit e-mailem",
"can edit" => "lze upravovat",
"access control" => "řízení přístupu",
"create" => "vytvořit",
@ -129,6 +132,7 @@ $TRANSLATIONS = array(
"Access forbidden" => "Přístup zakázán",
"Cloud not found" => "Cloud nebyl nalezen",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej ty tam,\n\njen ti chci dát vědět, že %s sdílel %s s tebou.\nZobraz si to: %s\n\n",
"The share will expire on %s." => "Sdílení vyprší %s.",
"Cheers!" => "Ať slouží!",
"Security Warning" => "Bezpečnostní upozornění",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verze vašeho PHP je napadnutelná pomocí techniky \"NULL Byte\" (CVE-2006-7243)",
@ -161,6 +165,12 @@ $TRANSLATIONS = array(
"Log in" => "Přihlásit",
"Alternative Logins" => "Alternativní přihlášení",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hej ty tam,<br><br>jen ti chci dát vědět, že %s sdílel »%s« s tebou.<br><a href=\"%s\">Zobrazit!</a><br><br>",
"Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat."
"This ownCloud instance is currently in single user mode." => "Tato instalace ownCloudu je momentálně v jednouživatelském módu.",
"This means only administrators can use the instance." => "To znamená, že pouze správci systému mohou aplikaci používat.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktujte, prosím, správce systému, pokud se tato zpráva objevuje opakovaně nebo nečekaně.",
"Thank you for your patience." => "Děkuji za trpělivost.",
"Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat.",
"This ownCloud instance is currently being updated, which may take a while." => "Tato instalace ownCloud je právě aktualizována, může to trvat chvíli.",
"Please reload this page after a short time to continue using ownCloud." => "Pro pokračování načtěte, prosím, stránku znovu po chvíli."
);
$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";

View File

@ -164,10 +164,10 @@ $TRANSLATIONS = array(
"Log in" => "Log ind",
"Alternative Logins" => "Alternative logins",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hej med dig,<br><br>Dette blot for at lade dig vide, at %s har delt \"%s\" med dig.<br><a href=\"%s\">Se det her!</a><br><br>Hej",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontakt systemadministratoren, hvis denne meddelelse fortsætter eller optrådte uventet.",
"Thank you for your patience." => "Tak for din tålmodighed.",
"Updating ownCloud to version %s, this may take a while." => "Opdatere Owncloud til version %s, dette kan tage et stykke tid.",
"This ownCloud instance is currently being updated, which may take a while." => "Opdatere Owncloud, dette kan tage et stykke tid.",
"Please reload this page after a short time to continue using ownCloud." => "Genindlæs denne side efter kort tid til at fortsætte med at bruge ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontakt systemadministratoren, hvis denne meddelelse fortsætter eller optrådte uventet.",
"Thank you for your patience." => "Tak for din tålmodighed."
"Please reload this page after a short time to continue using ownCloud." => "Genindlæs denne side efter kort tid til at fortsætte med at bruge ownCloud."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -165,10 +165,12 @@ $TRANSLATIONS = array(
"Log in" => "Einloggen",
"Alternative Logins" => "Alternative Logins",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hallo,<br/><br/>wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.<br/><a href=\"%s\">Schau es dir an.</a><br/><br/>",
"This ownCloud instance is currently in single user mode." => "Diese ownClound Instanz befindet sich derzeit im Einzelbenutzermodus.",
"This means only administrators can use the instance." => "Dies bedeutet, dass diese Instanz nur von Administratoren genutzt werden kann.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktiere Deinen Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint.",
"Thank you for your patience." => "Vielen Dank für Deine Geduld.",
"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.",
"This ownCloud instance is currently being updated, which may take a while." => "Diese OwnCloud-Instanz wird gerade aktualisiert, was eine Weile dauert.",
"Please reload this page after a short time to continue using ownCloud." => "Bitte lade diese Seite nach kurzer Zeit neu, um mit der Nutzung von OwnCloud fortzufahren.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktiere Deinen Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint.",
"Thank you for your patience." => "Vielen Dank für Deine Geduld."
"Please reload this page after a short time to continue using ownCloud." => "Bitte lade diese Seite nach kurzer Zeit neu, um mit der Nutzung von OwnCloud fortzufahren."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -165,10 +165,12 @@ $TRANSLATIONS = array(
"Log in" => "Einloggen",
"Alternative Logins" => "Alternative Logins",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hallo,<br><br>%s hat %s mit Ihnen geteilt.<br><a href=\"%s\">Schauen Sie es sich an!</a><br><br>",
"This ownCloud instance is currently in single user mode." => "Diese ownClound Instanz befindet sich derzeit im Einzelbenutzermodus.",
"This means only administrators can use the instance." => "Dies bedeutet, das nur Administratoren diese Instanz nutzen können.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktieren Sie Ihren Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint.",
"Thank you for your patience." => "Vielen Dank für Ihre Geduld.",
"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.",
"This ownCloud instance is currently being updated, which may take a while." => "Diese ownCloud-Instanz wird gerade aktualisiert, was eine Weile dauert.",
"Please reload this page after a short time to continue using ownCloud." => "Bitte laden Sie diese Seite nach kurzer Zeit neu, um mit der Nutzung von ownCloud fortzufahren.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktieren Sie Ihren Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint.",
"Thank you for your patience." => "Vielen Dank für Ihre Geduld."
"Please reload this page after a short time to continue using ownCloud." => "Bitte laden Sie diese Seite nach kurzer Zeit neu, um mit der Nutzung von ownCloud fortzufahren."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -143,9 +143,9 @@ $TRANSLATIONS = array(
"remember" => "απομνημόνευση",
"Log in" => "Είσοδος",
"Alternative Logins" => "Εναλλακτικές Συνδέσεις",
"Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο.",
"Please reload this page after a short time to continue using ownCloud." => "Παρακαλώ ανανεώστε αυτή τη σελίδα μετά από ένα σύντομο χρονικό διάστημα ώστε να συνεχίσετε να χρησιμοποιείτε το ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Επικοινωνήστε με το διαχειριστή του συστήματος αν αυτό το μήνυμα συνεχίζει να εμφανίζεται ή εμφανίστηκε απρόσμενα.",
"Thank you for your patience." => "Σας ευχαριστούμε για την υπομονή σας."
"Thank you for your patience." => "Σας ευχαριστούμε για την υπομονή σας.",
"Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο.",
"Please reload this page after a short time to continue using ownCloud." => "Παρακαλώ ανανεώστε αυτή τη σελίδα μετά από ένα σύντομο χρονικό διάστημα ώστε να συνεχίσετε να χρησιμοποιείτε το ownCloud."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -165,10 +165,10 @@ $TRANSLATIONS = array(
"Log in" => "Log in",
"Alternative Logins" => "Alternative Logins",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contact your system administrator if this message persists or appeared unexpectedly.",
"Thank you for your patience." => "Thank you for your patience.",
"Updating ownCloud to version %s, this may take a while." => "Updating ownCloud to version %s, this may take a while.",
"This ownCloud instance is currently being updated, which may take a while." => "This ownCloud instance is currently being updated, which may take a while.",
"Please reload this page after a short time to continue using ownCloud." => "Please reload this page after a short time to continue using ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contact your system administrator if this message persists or appeared unexpectedly.",
"Thank you for your patience." => "Thank you for your patience."
"Please reload this page after a short time to continue using ownCloud." => "Please reload this page after a short time to continue using ownCloud."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -164,10 +164,10 @@ $TRANSLATIONS = array(
"Log in" => "Entrar",
"Alternative Logins" => "Inicios de sesión alternativos",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hola:<br><br>tan solo queremos informarte que %s compartió «%s» contigo.<br><a href=\"%s\">¡Míralo acá!</a><br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada.",
"Thank you for your patience." => "Gracias por su paciencia.",
"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo.",
"This ownCloud instance is currently being updated, which may take a while." => "Esta versión de owncloud se está actualizando, esto puede demorar un tiempo.",
"Please reload this page after a short time to continue using ownCloud." => "Por favor , recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada.",
"Thank you for your patience." => "Gracias por su paciencia."
"Please reload this page after a short time to continue using ownCloud." => "Por favor , recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -165,10 +165,10 @@ $TRANSLATIONS = array(
"Log in" => "Logi sisse",
"Alternative Logins" => "Alternatiivsed sisselogimisviisid",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hei,<br><br>lihtsalt annan sulle teada, et %s jagas sulle välja »%s«.<br><a href=\"%s\">Vaata seda!</a><br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontakteeru oma süsteemihalduriga, kui see teade püsib või on tekkinud ootamatult.",
"Thank you for your patience." => "Täname kannatlikkuse eest.",
"Updating ownCloud to version %s, this may take a while." => "ownCloudi uuendamine versioonile %s. See võib veidi aega võtta.",
"This ownCloud instance is currently being updated, which may take a while." => "Seda ownCloud instantsi hetkel uuendatakse, võib võtta veidi aega.",
"Please reload this page after a short time to continue using ownCloud." => "Palun laadi see leht uuesti veidi aja pärast jätkamaks ownCloud kasutamist.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontakteeru oma süsteemihalduriga, kui see teade püsib või on tekkinud ootamatult.",
"Thank you for your patience." => "Täname kannatlikkuse eest."
"Please reload this page after a short time to continue using ownCloud." => "Palun laadi see leht uuesti veidi aja pärast jätkamaks ownCloud kasutamist."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -152,9 +152,11 @@ $TRANSLATIONS = array(
"Log in" => "Kirjaudu sisään",
"Alternative Logins" => "Vaihtoehtoiset kirjautumiset",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hei sinä!<br><br>%s jakoi kohteen »%s« kanssasi.<br><a href=\"%s\">Tutustu siihen!</a><br><br>",
"This ownCloud instance is currently in single user mode." => "Tämä ownCloud-asennus on parhaillaan single user -tilassa.",
"This means only administrators can use the instance." => "Se tarkoittaa, että vain ylläpitäjät voivat nyt käyttää tätä ownCloudia.",
"Thank you for your patience." => "Kiitos kärsivällisyydestäsi.",
"Updating ownCloud to version %s, this may take a while." => "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken.",
"This ownCloud instance is currently being updated, which may take a while." => "Tätä ownCloud-asennusta päivitetään parhaillaan, siinä saattaa kestää hetki.",
"Please reload this page after a short time to continue using ownCloud." => "Päivitä tämä sivu hetken kuluttua jatkaaksesi ownCloudin käyttämistä.",
"Thank you for your patience." => "Kiitos kärsivällisyydestäsi."
"Please reload this page after a short time to continue using ownCloud." => "Päivitä tämä sivu hetken kuluttua jatkaaksesi ownCloudin käyttämistä."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -132,6 +132,7 @@ $TRANSLATIONS = array(
"Access forbidden" => "Accès interdit",
"Cloud not found" => "Introuvable",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Bonjour,\n\nJuste pour vous signaler que %s a partagé %s avec vous.\nConsultez-le : %s\n",
"The share will expire on %s." => "Le partage expirera le %s.",
"Cheers!" => "Salutations!",
"Security Warning" => "Avertissement de sécurité",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Votre version de PHP est vulnérable à l'attaque par caractère NULL (CVE-2006-7243)",
@ -164,10 +165,10 @@ $TRANSLATIONS = array(
"Log in" => "Connexion",
"Alternative Logins" => "Logins alternatifs",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Bonjour,<br><br>Juste pour vous informer que %s a partagé »%s« avec vous.<br><a href=\"%s\">Consultez-le !</a><br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contactez votre administrateur système si ce message persiste ou apparaît de façon innatendue.",
"Thank you for your patience." => "Merci de votre patience.",
"Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps.",
"This ownCloud instance is currently being updated, which may take a while." => "Cette instance d'ownCloud est en cours de mise à jour, cela peut prendre du temps.",
"Please reload this page after a short time to continue using ownCloud." => "Merci de recharger cette page après un moment pour continuer à utiliser ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contactez votre administrateur système si ce message persiste ou apparaît de façon innatendue.",
"Thank you for your patience." => "Merci de votre patience."
"Please reload this page after a short time to continue using ownCloud." => "Merci de recharger cette page après un moment pour continuer à utiliser ownCloud."
);
$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";

View File

@ -13,13 +13,13 @@ $TRANSLATIONS = array(
"Invalid image" => "Imaxe incorrecta",
"No temporary profile picture available, try again" => "Non hai unha imaxe temporal de perfil dispoñíbel, volva tentalo",
"No crop data provided" => "Non indicou como recortar",
"Sunday" => "Domingo",
"Monday" => "Luns",
"Tuesday" => "Martes",
"Wednesday" => "Mércores",
"Thursday" => "Xoves",
"Friday" => "Venres",
"Saturday" => "Sábado",
"Sunday" => "domingo",
"Monday" => "luns",
"Tuesday" => "martes",
"Wednesday" => "mércores",
"Thursday" => "xoves",
"Friday" => "venres",
"Saturday" => "sábado",
"January" => "xaneiro",
"February" => "febreiro",
"March" => "marzo",
@ -165,10 +165,12 @@ $TRANSLATIONS = array(
"Log in" => "Conectar",
"Alternative Logins" => "Accesos alternativos",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Ola,<br><br>Só facerlle saber que %s compartiu «%s» con vostede.<br><a href=\"%s\">Véxao!</a><br><br>",
"This ownCloud instance is currently in single user mode." => "Esta instancia do ownCloud está actualmente en modo de usuario único.",
"This means only administrators can use the instance." => "Isto significa que só os administradores poden utilizar a instancia.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Póñase en contacto co administrador do sistema se persiste esta mensaxe ou se aparece de forma inesperada.",
"Thank you for your patience." => "Grazas pola súa paciencia.",
"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a versión %s, esto pode levar un anaco.",
"This ownCloud instance is currently being updated, which may take a while." => "Esta instancia do ownCloud está actualizandose neste momento, pode levarlle un chisco.",
"Please reload this page after a short time to continue using ownCloud." => "Volva cargar a páxina de aquí a pouco para para continuar co ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Póñase en contacto co administrador do sistema se persiste esta mensaxe ou se aparece de forma inesperada.",
"Thank you for your patience." => "Grazas pola súa paciencia."
"Please reload this page after a short time to continue using ownCloud." => "Volva cargar a páxina de aquí a pouco para para continuar co ownCloud."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -164,10 +164,10 @@ $TRANSLATIONS = array(
"Log in" => "Bejelentkezés",
"Alternative Logins" => "Alternatív bejelentkezés",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Szia!<br><br>Értesítünk, hogy %s megosztotta veled a következőt: »%s«.<br><a href=\"%s\">Ide kattintva tudod megnézni</a><br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Ha ezt az üzenetet már többször látod akkor keresd meg a rendszer adminját.",
"Thank you for your patience." => "Köszönjük a türelmét.",
"Updating ownCloud to version %s, this may take a while." => "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet.",
"This ownCloud instance is currently being updated, which may take a while." => "Az Owncloud frissítés elezdődött, eltarthat egy ideig.",
"Please reload this page after a short time to continue using ownCloud." => "Frissitsd az oldalt ha \"Please reload this page after a short time to continue using ownCloud. \"",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Ha ezt az üzenetet már többször látod akkor keresd meg a rendszer adminját.",
"Thank you for your patience." => "Köszönjük a türelmét."
"Please reload this page after a short time to continue using ownCloud." => "Frissitsd az oldalt ha \"Please reload this page after a short time to continue using ownCloud. \""
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -132,6 +132,7 @@ $TRANSLATIONS = array(
"Access forbidden" => "Accesso negato",
"Cloud not found" => "Nuvola non trovata",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ciao,\n\nvolevo informarti che %s ha condiviso %s con te.\nVedi: %s\n\n",
"The share will expire on %s." => "La condivisione scadrà il %s.",
"Cheers!" => "Saluti!",
"Security Warning" => "Avviso di sicurezza",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La tua versione di PHP è vulnerabile all'attacco NULL Byte (CVE-2006-7243)",
@ -164,10 +165,12 @@ $TRANSLATIONS = array(
"Log in" => "Accedi",
"Alternative Logins" => "Accessi alternativi",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Ciao,<br><br>volevo informarti che %s ha condiviso %s con te.<br><a href=\"%s\">Vedi!</a><br><br>",
"This ownCloud instance is currently in single user mode." => "Questa istanza di ownCloud è in modalità utente singolo.",
"This means only administrators can use the instance." => "Questo significa che solo gli amministratori possono utilizzare l'istanza.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contatta il tuo amministratore di sistema se questo messaggio persiste o appare inaspettatamente.",
"Thank you for your patience." => "Grazie per la pazienza.",
"Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo.",
"This ownCloud instance is currently being updated, which may take a while." => "Questa istanza di ownCloud è in fase di aggiornamento, potrebbe richiedere del tempo.",
"Please reload this page after a short time to continue using ownCloud." => "Ricarica questa pagina per poter continuare ad usare ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contatta il tuo amministratore di sistema se questo messaggio persiste o appare inaspettatamente.",
"Thank you for your patience." => "Grazie per la pazienza."
"Please reload this page after a short time to continue using ownCloud." => "Ricarica questa pagina per poter continuare ad usare ownCloud."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -164,10 +164,10 @@ $TRANSLATIONS = array(
"Log in" => "ログイン",
"Alternative Logins" => "代替ログイン",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "このメッセージが引き続きもしくは予期せず現れる場合は、システム管理者に連絡してください。",
"Thank you for your patience." => "しばらくお待ちください。",
"Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。",
"This ownCloud instance is currently being updated, which may take a while." => "この ownCloud インスタンスは現在更新中であり、しばらく時間がかかります。",
"Please reload this page after a short time to continue using ownCloud." => "ownCloud を続けて利用するには、しばらくした後でページをリロードしてください。",
"Contact your system administrator if this message persists or appeared unexpectedly." => "このメッセージが引き続きもしくは予期せず現れる場合は、システム管理者に連絡してください。",
"Thank you for your patience." => "しばらくお待ちください。"
"Please reload this page after a short time to continue using ownCloud." => "ownCloud を続けて利用するには、しばらくした後でページをリロードしてください。"
);
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -143,7 +143,7 @@ $TRANSLATIONS = array(
"remember" => "verhalen",
"Log in" => "Umellen",
"Alternative Logins" => "Alternativ Umeldungen",
"Updating ownCloud to version %s, this may take a while." => "ownCloud gëtt op d'Versioun %s aktualiséiert, dat kéint e Moment daueren.",
"Thank you for your patience." => "Merci fir deng Gedold."
"Thank you for your patience." => "Merci fir deng Gedold.",
"Updating ownCloud to version %s, this may take a while." => "ownCloud gëtt op d'Versioun %s aktualiséiert, dat kéint e Moment daueren."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -161,10 +161,10 @@ $TRANSLATIONS = array(
"Log in" => "Prisijungti",
"Alternative Logins" => "Alternatyvūs prisijungimai",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Labas,<br><br>tik informuojame, kad %s pasidalino su Jumis »%s«.<br><a href=\"%s\">Peržiūrėk!</a><br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Susisiekite su savo sistemos administratoriumi jei šis pranešimas nedingsta arba jei jis pasirodė netikėtai.",
"Thank you for your patience." => "Dėkojame už jūsų kantrumą.",
"Updating ownCloud to version %s, this may take a while." => "Atnaujinama ownCloud į %s versiją. tai gali šiek tiek užtrukti.",
"This ownCloud instance is currently being updated, which may take a while." => "Šiuo metu vyksta ownCloud atnaujinamas, tai gali šiek tiek užtrukti.",
"Please reload this page after a short time to continue using ownCloud." => "Po trupučio laiko atnaujinkite šį puslapį kad galėtumėte toliau naudoti ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Susisiekite su savo sistemos administratoriumi jei šis pranešimas nedingsta arba jei jis pasirodė netikėtai.",
"Thank you for your patience." => "Dėkojame už jūsų kantrumą."
"Please reload this page after a short time to continue using ownCloud." => "Po trupučio laiko atnaujinkite šį puslapį kad galėtumėte toliau naudoti ownCloud."
);
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);";

View File

@ -143,10 +143,10 @@ $TRANSLATIONS = array(
"remember" => "запамти",
"Log in" => "Најава",
"Alternative Logins" => "Алтернативни најавувања",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Контактирајте го вашиот систем администратор до колку оваа порака продолжи да се појавува или пак се појавува ненадејно.",
"Thank you for your patience." => "Благодариме на вашето трпение.",
"Updating ownCloud to version %s, this may take a while." => "Надградбата на ownCloud на верзијата %s, може да потрае.",
"This ownCloud instance is currently being updated, which may take a while." => "Оваа инстанца на ownCloud во моментов се надградува, што може малку да потрае.",
"Please reload this page after a short time to continue using ownCloud." => "Повторно вчитајте ја оваа страница по кратко време за да продолжите да го користите ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Контактирајте го вашиот систем администратор до колку оваа порака продолжи да се појавува или пак се појавува ненадејно.",
"Thank you for your patience." => "Благодариме на вашето трпение."
"Please reload this page after a short time to continue using ownCloud." => "Повторно вчитајте ја оваа страница по кратко време за да продолжите да го користите ownCloud."
);
$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;";

View File

@ -164,10 +164,10 @@ $TRANSLATIONS = array(
"Log in" => "Meld je aan",
"Alternative Logins" => "Alternatieve inlogs",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hallo daar,<br><br>even een berichtje dat %s »%s« met u deelde.<br><a href=\"%s\">Bekijk hier!</a><br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Beem contact op met uw systeembeheerder als deze melding aanhoudt of plotseling verscheen.",
"Thank you for your patience." => "Bedankt voor uw geduld.",
"Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren...",
"This ownCloud instance is currently being updated, which may take a while." => "Deze ownCloud dienst wordt nu bijgewerkt, dat kan even duren.",
"Please reload this page after a short time to continue using ownCloud." => "Laad deze pagina straks opnieuw om verder te gaan met ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Beem contact op met uw systeembeheerder als deze melding aanhoudt of plotseling verscheen.",
"Thank you for your patience." => "Bedankt voor uw geduld."
"Please reload this page after a short time to continue using ownCloud." => "Laad deze pagina straks opnieuw om verder te gaan met ownCloud."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -153,7 +153,7 @@ $TRANSLATIONS = array(
"Log in" => "Zaloguj",
"Alternative Logins" => "Alternatywne loginy",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Cześć,<br><br>Informuję cię że %s udostępnia ci »%s«.\n<br><a href=\"%s\">Zobacz!</a><br><br>",
"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać.",
"Thank you for your patience." => "Dziękuję za cierpliwość."
"Thank you for your patience." => "Dziękuję za cierpliwość.",
"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać."
);
$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";

View File

@ -165,10 +165,10 @@ $TRANSLATIONS = array(
"Log in" => "Fazer login",
"Alternative Logins" => "Logins alternativos",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Olá,<br><br>só gostaria que você soubesse que %s compartilhou »%s« com você.<br><a href=\"%s\">Veja isto!</a><br><br",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte o seu administrador do sistema se esta mensagem persistir ou aparecer inesperadamente.",
"Thank you for your patience." => "Obrigado pela sua paciência.",
"Updating ownCloud to version %s, this may take a while." => "Atualizando ownCloud para a versão %s, isto pode levar algum tempo.",
"This ownCloud instance is currently being updated, which may take a while." => "Esta instância do ownCloud está sendo atualizada, o que pode demorar um pouco.",
"Please reload this page after a short time to continue using ownCloud." => "Por favor, atualize esta página depois de um curto período de tempo para continuar usando ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte o seu administrador do sistema se esta mensagem persistir ou aparecer inesperadamente.",
"Thank you for your patience." => "Obrigado pela sua paciência."
"Please reload this page after a short time to continue using ownCloud." => "Por favor, atualize esta página depois de um curto período de tempo para continuar usando ownCloud."
);
$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";

View File

@ -164,10 +164,10 @@ $TRANSLATIONS = array(
"Log in" => "Войти",
"Alternative Logins" => "Альтернативные имена пользователя",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Здравствуйте,<br><br>просто даём вам знать, что %s расшарил %s для вас.<br><a href=\"%s\">Посмотреть!</a><br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Обратитесь к вашему системному администратору если это сообщение не исчезает или появляется неожиданно.",
"Thank you for your patience." => "Спасибо за терпение.",
"Updating ownCloud to version %s, this may take a while." => "Идёт обновление ownCloud до версии %s. Это может занять некоторое время.",
"This ownCloud instance is currently being updated, which may take a while." => "Производится обновление ownCloud, это может занять некоторое время.",
"Please reload this page after a short time to continue using ownCloud." => "Перезагрузите эту страницу через некоторое время чтобы продолжить использовать ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Обратитесь к вашему системному администратору если это сообщение не исчезает или появляется неожиданно.",
"Thank you for your patience." => "Спасибо за терпение."
"Please reload this page after a short time to continue using ownCloud." => "Перезагрузите эту страницу через некоторое время чтобы продолжить использовать ownCloud."
);
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";

View File

@ -163,9 +163,9 @@ $TRANSLATIONS = array(
"Log in" => "Prihlásiť sa",
"Alternative Logins" => "Alternatívne prihlásenie",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Ahoj,<br><br>chcem ti dať navedomie, že %s zdieľa »%s« s tebou.<br><a href=\"%s\">Zobrazenie tu!</a><br><br>",
"Thank you for your patience." => "Ďakujeme za Vašu trpezlivosť.",
"Updating ownCloud to version %s, this may take a while." => "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať.",
"This ownCloud instance is currently being updated, which may take a while." => "Táto inštancia ownCloud sa práve aktualizuje, čo môže nejaký čas trvať.",
"Please reload this page after a short time to continue using ownCloud." => "Prosím obnovte túto stránku a po krátkej dobe môžete pokračovať v používaní.",
"Thank you for your patience." => "Ďakujeme za Vašu trpezlivosť."
"Please reload this page after a short time to continue using ownCloud." => "Prosím obnovte túto stránku a po krátkej dobe môžete pokračovať v používaní."
);
$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";

View File

@ -165,10 +165,10 @@ $TRANSLATIONS = array(
"Log in" => "Prijava",
"Alternative Logins" => "Druge prijavne možnosti",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Pozdravljeni,<br><br>oseba %s vam je omogočila souporabo %s.<br>Vir si lahko ogledate na <a href=\"%s\">tem naslovu</a>.<br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Stopite v stik s skrbnikom sistema, če se bo sporočilo še naprej nepričakovano prikazovalo.",
"Thank you for your patience." => "Hvala za potrpežljivost!",
"Updating ownCloud to version %s, this may take a while." => "Posodabljanje sistema ownCloud na različico %s je lahko dolgotrajno.",
"This ownCloud instance is currently being updated, which may take a while." => "Nastavitev oblaka ownCloud se trenutno posodablja. Opravilo je lahko dolgotrajno ...",
"Please reload this page after a short time to continue using ownCloud." => "Ponovno naložite to stran po krajšem preteku časa in nadaljujte z uporabo oblaka ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Stopite v stik s skrbnikom sistema, če se bo sporočilo še naprej nepričakovano prikazovalo.",
"Thank you for your patience." => "Hvala za potrpežljivost!"
"Please reload this page after a short time to continue using ownCloud." => "Ponovno naložite to stran po krajšem preteku časa in nadaljujte z uporabo oblaka ownCloud."
);
$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);";

View File

@ -132,6 +132,7 @@ $TRANSLATIONS = array(
"Access forbidden" => "Åtkomst förbjuden",
"Cloud not found" => "Hittade inget moln",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej där,⏎\n\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n\n",
"The share will expire on %s." => "Utdelningen kommer att upphöra %s.",
"Cheers!" => "Vi höres!",
"Security Warning" => "Säkerhetsvarning",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)",
@ -164,10 +165,10 @@ $TRANSLATIONS = array(
"Log in" => "Logga in",
"Alternative Logins" => "Alternativa inloggningar",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hej där,<br><br>ville bara informera dig om att %s delade »%s« med dig.<br><a href=\"%s\">Titta på den!</a><br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Hör av dig till din system administratör ifall detta meddelande fortsätter eller visas oväntat.",
"Thank you for your patience." => "Tack för ditt tålamod.",
"Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund.",
"This ownCloud instance is currently being updated, which may take a while." => "Denna ownCloud instans håller på att uppdatera, vilket kan ta ett tag.",
"Please reload this page after a short time to continue using ownCloud." => "Var god och ladda om denna sida efter en kort stund för att fortsätta använda ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Hör av dig till din system administratör ifall detta meddelande fortsätter eller visas oväntat.",
"Thank you for your patience." => "Tack för ditt tålamod."
"Please reload this page after a short time to continue using ownCloud." => "Var god och ladda om denna sida efter en kort stund för att fortsätta använda ownCloud."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -165,10 +165,12 @@ $TRANSLATIONS = array(
"Log in" => "Giriş yap",
"Alternative Logins" => "Alternatif Girişler",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Merhaba, <br><br> %s sizinle »%s« paylaşımında bulundu.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>İyi günler!",
"This ownCloud instance is currently in single user mode." => "Bu ownCloud örneği şu anda tek kullanıcı kipinde.",
"This means only administrators can use the instance." => "Bu, örneği sadece yöneticiler kullanabilir demektir.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Eğer bu ileti görünmeye devam ederse veya beklenmedik şekilde ortaya çıkmışsa sistem yöneticinizle iletişime geçin.",
"Thank you for your patience." => "Sabrınız için teşekkür ederiz.",
"Updating ownCloud to version %s, this may take a while." => "Owncloud %s versiyonuna güncelleniyor. Biraz zaman alabilir.",
"This ownCloud instance is currently being updated, which may take a while." => "Bu ownCloud örneği şu anda güncelleniyor, bu biraz zaman alabilir.",
"Please reload this page after a short time to continue using ownCloud." => "ownCloud kullanmaya devam etmek için kısa bir süre sonra lütfen sayfayı yenileyin.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Eğer bu ileti görünmeye devam ederse veya beklenmedik şekilde ortaya çıkmışsa sistem yöneticinizle iletişime geçin.",
"Thank you for your patience." => "Sabrınız için teşekkür ederiz."
"Please reload this page after a short time to continue using ownCloud." => "ownCloud kullanmaya devam etmek için kısa bir süre sonra lütfen sayfayı yenileyin."
);
$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";

View File

@ -163,10 +163,10 @@ $TRANSLATIONS = array(
"Log in" => "登入",
"Alternative Logins" => "其他登入方法",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "嗨,<br><br>%s 和你分享了 %s ,到<a href=\"%s\">這裡</a>看它<br><br>",
"Contact your system administrator if this message persists or appeared unexpectedly." => "若這個訊息持續出現,請聯絡系統管理員",
"Thank you for your patience." => "感謝您的耐心",
"Updating ownCloud to version %s, this may take a while." => "正在將 ownCloud 升級至版本 %s ,這可能需要一點時間。",
"This ownCloud instance is currently being updated, which may take a while." => "ownCloud 正在升級,請稍待一會。",
"Please reload this page after a short time to continue using ownCloud." => "請稍後重新載入這個頁面就可以繼續使用 ownCloud",
"Contact your system administrator if this message persists or appeared unexpectedly." => "若這個訊息持續出現,請聯絡系統管理員",
"Thank you for your patience." => "感謝您的耐心"
"Please reload this page after a short time to continue using ownCloud." => "請稍後重新載入這個頁面就可以繼續使用 ownCloud"
);
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -14,3 +14,4 @@ $application->add(new OC\Core\Command\Maintenance\SingleUser());
$application->add(new OC\Core\Command\App\Disable());
$application->add(new OC\Core\Command\App\Enable());
$application->add(new OC\Core\Command\App\ListApps());
$application->add(new OC\Core\Command\Maintenance\Repair(new \OC\Repair()));

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n"
"MIME-Version: 1.0\n"
@ -441,6 +441,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -682,7 +686,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr ""
@ -731,6 +735,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -744,13 +766,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n"
"MIME-Version: 1.0\n"
@ -161,7 +161,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr ""
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n"
"MIME-Version: 1.0\n"
@ -441,6 +441,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -682,7 +686,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr ""
@ -731,6 +735,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -744,13 +766,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n"
"MIME-Version: 1.0\n"
@ -161,7 +161,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr ""
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n"
"MIME-Version: 1.0\n"
@ -441,6 +441,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -682,7 +686,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr ""
@ -731,6 +735,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -744,13 +766,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n"
"MIME-Version: 1.0\n"
@ -161,7 +161,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr ""
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
@ -441,6 +441,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -682,7 +686,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Teken uit"
@ -731,6 +735,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -744,13 +766,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09: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"
@ -161,7 +161,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr ""
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 02:20+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
@ -462,6 +462,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -703,7 +707,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "الخروج"
@ -752,6 +756,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -765,13 +787,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09: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"
@ -161,7 +161,7 @@ msgstr "تم التحديث بنجاح"
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr "التشفير"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
@ -451,6 +451,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -692,7 +696,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr ""
@ -741,6 +745,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -754,13 +776,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+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"
@ -161,7 +161,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr ""
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
@ -441,6 +441,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -682,7 +686,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Изход"
@ -731,6 +735,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -744,13 +766,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09: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"
@ -161,7 +161,7 @@ msgstr "Обновено"
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr "Криптиране"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 02:20+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
@ -441,6 +441,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -682,7 +686,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "প্রস্থান"
@ -731,6 +735,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -744,13 +766,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09: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"
@ -161,7 +161,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr "সংকেতায়ন"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
"MIME-Version: 1.0\n"
@ -446,6 +446,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -687,7 +691,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr ""
@ -736,6 +740,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -749,13 +771,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
"MIME-Version: 1.0\n"
@ -161,7 +161,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr ""
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 02:20+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
@ -443,6 +443,10 @@ msgstr "Error en carregar la plantilla de diàleg: {error}"
msgid "No tags selected for deletion."
msgstr "No heu seleccionat les etiquetes a eliminar."
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -684,7 +688,7 @@ msgstr "Acabant..."
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:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Surt"
@ -733,6 +737,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr "Ei,<br><br>només fer-te saber que %s ha compartit »%s« amb tu.<br><a href=\"%s\">Mira-ho!</a><br><br>"
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Contacteu amb l'administrador del sistema si aquest missatge persisteix o apareix inesperadament."
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Gràcies per la paciència."
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -746,13 +768,3 @@ msgstr "Aquesta instància d'ownCloud s'està actualitzant i podria trigar una e
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr "Carregueu de nou aquesta pàgina d'aquí a poc temps per continuar usant ownCloud."
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Contacteu amb l'administrador del sistema si aquest missatge persisteix o apareix inesperadament."
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Gràcies per la paciència."

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+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"
@ -163,7 +163,7 @@ msgstr "Actualitzada"
msgid "Select a profile picture"
msgstr "Seleccioneu una imatge de perfil"
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr "Desencriptant fitxers... Espereu, això pot trigar una estona."
@ -582,8 +582,8 @@ msgid "Encryption"
msgstr "Xifrat"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers."
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154
msgid "Log-in password"

View File

@ -6,6 +6,7 @@
# janinko <janinko.g@gmail.com>, 2013
# dibalaj <dibalaj@dibalaj.cz>, 2013
# Honza K. <honza889@gmail.com>, 2013
# liska_, 2013
# Martin <fireball@atlas.cz>, 2013
# pstast <petr@stastny.eu>, 2013
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013
@ -13,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 02:20+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
@ -314,11 +315,11 @@ msgstr "S Vámi sdílí {owner}"
#: js/share.js:213
msgid "Share with user or group …"
msgstr ""
msgstr "Sdílej s uživatelem nebo skupinou"
#: js/share.js:219
msgid "Share link"
msgstr ""
msgstr "Sdílet odkaz"
#: js/share.js:222
msgid "Password protect"
@ -374,7 +375,7 @@ msgstr "Zrušit sdílení"
#: js/share.js:405
msgid "notify by email"
msgstr ""
msgstr "upozornit e-mailem"
#: js/share.js:408
msgid "can edit"
@ -452,6 +453,10 @@ msgstr "Chyba při načítání šablony dialogu: {error}"
msgid "No tags selected for deletion."
msgstr "Žádné štítky nebyly vybrány ke smazání."
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -593,7 +598,7 @@ msgstr "Hej ty tam,\n\njen ti chci dát vědět, že %s sdílel %s s tebou.\nZob
#: templates/altmail.php:4 templates/mail.php:17
#, php-format
msgid "The share will expire on %s."
msgstr ""
msgstr "Sdílení vyprší %s."
#: templates/altmail.php:7 templates/mail.php:20
msgid "Cheers!"
@ -693,7 +698,7 @@ msgstr "Dokončuji..."
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:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Odhlásit se"
@ -742,6 +747,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr "Hej ty tam,<br><br>jen ti chci dát vědět, že %s sdílel »%s« s tebou.<br><a href=\"%s\">Zobrazit!</a><br><br>"
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr "Tato instalace ownCloudu je momentálně v jednouživatelském módu."
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr "To znamená, že pouze správci systému mohou aplikaci používat."
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Kontaktujte, prosím, správce systému, pokud se tato zpráva objevuje opakovaně nebo nečekaně."
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Děkuji za trpělivost."
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -750,18 +773,8 @@ msgstr "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat."
#: templates/update.user.php:3
msgid ""
"This ownCloud instance is currently being updated, which may take a while."
msgstr ""
msgstr "Tato instalace ownCloud je právě aktualizována, může to trvat chvíli."
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
msgstr "Pro pokračování načtěte, prosím, stránku znovu po chvíli."

View File

@ -6,6 +6,7 @@
# Twiguard, 2013
# dibalaj <dibalaj@dibalaj.cz>, 2013
# Honza K. <honza889@gmail.com>, 2013
# liska_, 2013
# cvanca <mrs.jenkins.oh.yeah@gmail.com>, 2013
# pstast <petr@stastny.eu>, 2013
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013
@ -13,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 14:23+0000\n"
"Last-Translator: liska_\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"
@ -189,7 +190,7 @@ msgstr "Trvale odstranit"
msgid "Rename"
msgstr "Přejmenovat"
#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873
#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:874
msgid "Pending"
msgstr "Nevyřízené"
@ -207,7 +208,7 @@ msgstr "vrátit zpět"
#: js/filelist.js:576
msgid "Error deleting file."
msgstr ""
msgstr "Chyba při mazání souboru."
#: js/filelist.js:594 js/filelist.js:668 js/files.js:631
msgid "%n folder"
@ -227,7 +228,7 @@ msgstr[2] "%n souborů"
msgid "{dirs} and {files}"
msgstr "{dirs} a {files}"
#: js/filelist.js:812 js/filelist.js:850
#: js/filelist.js:813 js/filelist.js:851
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "Nahrávám %n soubor"

View File

@ -5,6 +5,7 @@
# Translators:
# janinko <janinko.g@gmail.com>, 2013
# Honza K. <honza889@gmail.com>, 2013
# liska_, 2013
# Martin <fireball@atlas.cz>, 2013
# pstast <petr@stastny.eu>, 2013
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013
@ -12,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-03 12:38-0500\n"
"PO-Revision-Date: 2013-11-03 17:38+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 14:23+0000\n"
"Last-Translator: liska_\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"
@ -71,7 +72,7 @@ msgid ""
"Your private key is not valid! Likely your password was changed outside of "
"%s (e.g. your corporate directory). You can update your private key password"
" in your personal settings to recover access to your encrypted files."
msgstr ""
msgstr "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému %s (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům."
#: files/error.php:19
msgid ""

View File

@ -3,14 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# liska_, 2013
# pstast <petr@stastny.eu>, 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-15 22:54-0500\n"
"PO-Revision-Date: 2013-11-13 16:11+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 14:23+0000\n"
"Last-Translator: liska_\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"
@ -82,4 +83,4 @@ msgstr "Náhled není dostupný pro"
#: templates/public.php:99
msgid "Direct link"
msgstr ""
msgstr "Přímý odkaz"

View File

@ -4,15 +4,16 @@
#
# Translators:
# Honza K. <honza889@gmail.com>, 2013
# liska_, 2013
# pstast <petr@stastny.eu>, 2013
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 14:23+0000\n"
"Last-Translator: liska_\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"
@ -56,15 +57,15 @@ msgstr "Administrace"
msgid "Failed to upgrade \"%s\"."
msgstr "Selhala aktualizace verze \"%s\"."
#: private/avatar.php:60
#: private/avatar.php:62
msgid "Unknown filetype"
msgstr "Neznámý typ souboru"
#: private/avatar.php:65
#: private/avatar.php:67
msgid "Invalid image"
msgstr "Chybný obrázek"
#: private/defaults.php:36
#: private/defaults.php:34
msgid "web services under your control"
msgstr "webové služby pod Vaší kontrolou"
@ -93,7 +94,7 @@ msgstr "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru."
msgid ""
"Please download the files separately in smaller chunks or kindly ask your "
"administrator."
msgstr ""
msgstr "Prosím stáhněte soubory odděleně v menších množstvích nebo požádejte vašeho správce."
#: private/installer.php:63
msgid "No source specified when installing app"

View File

@ -5,6 +5,7 @@
# Translators:
# Twiguard, 2013
# Honza K. <honza889@gmail.com>, 2013
# liska_, 2013
# cvanca <mrs.jenkins.oh.yeah@gmail.com>, 2013
# pstast <petr@stastny.eu>, 2013
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013
@ -12,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 14:23+0000\n"
"Last-Translator: liska_\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"
@ -166,7 +167,7 @@ msgstr "Aktualizováno"
msgid "Select a profile picture"
msgstr "Vyberte profilový obrázek"
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr "Probíhá dešifrování souborů... Čekejte prosím, tato operace může trvat nějakou dobu."
@ -225,23 +226,23 @@ msgstr "Česky"
#: templates/admin.php:8
msgid "Everything (fatal issues, errors, warnings, info, debug)"
msgstr ""
msgstr "Vše (fatální problémy, chyby, varování, informační, ladící)"
#: templates/admin.php:9
msgid "Info, warnings, errors and fatal issues"
msgstr ""
msgstr "informační, varování, chyby a fatální problémy"
#: templates/admin.php:10
msgid "Warnings, errors and fatal issues"
msgstr ""
msgstr "Varování, chyby a fatální problémy"
#: templates/admin.php:11
msgid "Errors and fatal issues"
msgstr ""
msgstr "Chyby a fatální problémy"
#: templates/admin.php:12
msgid "Fatal issues only"
msgstr ""
msgstr "Pouze fatální problémy"
#: templates/admin.php:22
msgid "Security Warning"
@ -287,20 +288,20 @@ msgstr "Lokalizace nefunguje"
#: templates/admin.php:70
msgid "System locale can not be set to a one which supports UTF-8."
msgstr ""
msgstr "Není možné nastavit znakovou sadu, která podporuje UTF-8."
#: templates/admin.php:74
msgid ""
"This means that there might be problems with certain characters in file "
"names."
msgstr ""
msgstr "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů."
#: templates/admin.php:78
#, php-format
msgid ""
"We strongly suggest to install the required packages on your system to "
"support one of the following locales: %s."
msgstr ""
msgstr "Velmi doporučujeme nainstalovat na váš systém požadované balíčky podporující jednu z následujících znakových sad: %s."
#: templates/admin.php:90
msgid "Internet connection not working"
@ -578,15 +579,15 @@ msgstr "WebDAV"
msgid ""
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via "
"WebDAV</a>"
msgstr ""
msgstr "Použijte <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">tuto adresu pro přístup k vašim souborům přes WebDAV</a>"
#: templates/personal.php:146
msgid "Encryption"
msgstr "Šifrování"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr "Šifrovací aplikace již není zapnuta, odšifrujte všechny své soubory"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory"
#: templates/personal.php:154
msgid "Log-in password"

View File

@ -5,6 +5,7 @@
# Translators:
# Twiguard, 2013
# Honza K. <honza889@gmail.com>, 2013
# liska_, 2013
# cvanca <mrs.jenkins.oh.yeah@gmail.com>, 2013
# pstast <petr@stastny.eu>, 2013
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013
@ -12,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-16 07:44+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 14:23+0000\n"
"Last-Translator: liska_\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"
@ -93,15 +94,15 @@ msgstr "Chyba"
#: js/settings.js:674
msgid "Configuration OK"
msgstr ""
msgstr "Konfigurace v pořádku"
#: js/settings.js:683
msgid "Configuration incorrect"
msgstr ""
msgstr "Nesprávná konfigurace"
#: js/settings.js:692
msgid "Configuration incomplete"
msgstr ""
msgstr "Nekompletní konfigurace"
#: js/settings.js:709 js/settings.js:718
msgid "Select groups"
@ -153,7 +154,7 @@ msgstr "Neplatný hostitel"
#: lib/wizard.php:913
msgid "Could not find the desired feature"
msgstr ""
msgstr "Nelze nalézt požadovanou vlastnost"
#: templates/part.settingcontrols.php:2
msgid "Save"
@ -170,7 +171,7 @@ msgstr "Nápověda"
#: templates/part.wizard-groupfilter.php:4
#, php-format
msgid "Limit the access to %s to groups meeting this criteria:"
msgstr ""
msgstr "Omezit přístup k %s uživatelům splňujícím tyto podmínky:"
#: templates/part.wizard-groupfilter.php:8
#: templates/part.wizard-userfilter.php:8
@ -185,18 +186,18 @@ msgstr "pouze z těchto skupin:"
#: templates/part.wizard-groupfilter.php:25
#: templates/part.wizard-userfilter.php:25
msgid "Edit raw filter instead"
msgstr ""
msgstr "Edituj filtr přímo"
#: templates/part.wizard-groupfilter.php:30
#: templates/part.wizard-userfilter.php:30
msgid "Raw LDAP filter"
msgstr ""
msgstr "Původní filtr LDAP"
#: templates/part.wizard-groupfilter.php:31
#, php-format
msgid ""
"The filter specifies which LDAP groups shall have access to the %s instance."
msgstr ""
msgstr "Filtr určuje, kteří uživatelé LDAP mají mít přístup k %s instanci."
#: templates/part.wizard-groupfilter.php:38
msgid "groups found"
@ -204,7 +205,7 @@ msgstr "nalezené skupiny"
#: templates/part.wizard-loginfilter.php:4
msgid "What attribute shall be used as login name:"
msgstr ""
msgstr "Který atribut má být použit jako přihlašovací jméno:"
#: templates/part.wizard-loginfilter.php:8
msgid "LDAP Username:"
@ -271,7 +272,7 @@ msgstr "Omezit přístup k %s uživatelům splňujícím tyto podmínky:"
#, php-format
msgid ""
"The filter specifies which LDAP users shall have access to the %s instance."
msgstr ""
msgstr "Filtr určuje, kteří uživatelé LDAP mají mít přístup k %s instanci."
#: templates/part.wizard-userfilter.php:38
msgid "users found"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 02:20+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
@ -452,6 +452,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -693,7 +697,7 @@ msgstr ""
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:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Allgofnodi"
@ -742,6 +746,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -755,13 +777,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+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"
@ -161,7 +161,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr "Amgryptiad"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 02:20+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
@ -446,6 +446,10 @@ msgstr "Fejl ved indlæsning dialog skabelon: {error}"
msgid "No tags selected for deletion."
msgstr "Ingen tags markeret til sletning."
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -687,7 +691,7 @@ msgstr "Færdigbehandling ..."
msgid "%s is available. Get more information on how to update."
msgstr "%s er tilgængelig. Få mere information om, hvordan du opdaterer."
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Log ud"
@ -736,6 +740,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr "Hej med dig,<br><br>Dette blot for at lade dig vide, at %s har delt \"%s\" med dig.<br><a href=\"%s\">Se det her!</a><br><br>Hej"
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Kontakt systemadministratoren, hvis denne meddelelse fortsætter eller optrådte uventet."
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Tak for din tålmodighed."
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -749,13 +771,3 @@ msgstr "Opdatere Owncloud, dette kan tage et stykke tid."
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr "Genindlæs denne side efter kort tid til at fortsætte med at bruge ownCloud."
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Kontakt systemadministratoren, hvis denne meddelelse fortsætter eller optrådte uventet."
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Tak for din tålmodighed."

View File

@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09: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"
@ -164,7 +164,7 @@ msgstr "Opdateret"
msgid "Select a profile picture"
msgstr "Vælg et profilbillede"
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr "Dekryptere filer... Vent venligst, dette kan tage lang tid. "
@ -583,8 +583,8 @@ msgid "Encryption"
msgstr "Kryptering"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr "Krypterings app'en er ikke længere aktiv. Dekrypter alle dine filer. "
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154
msgid "Log-in password"

View File

@ -10,14 +10,15 @@
# JamFX <niko@nik-o-mat.de>, 2013
# ninov <ninovdl@ymail.com>, 2013
# Pwnicorn <pwnicorndev@gmail.com>, 2013
# noxin <transifex.com@davidmainzer.com>, 2013
# Mirodin <blobbyjj@ymail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 08:20+0000\n"
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -449,6 +450,10 @@ msgstr "Fehler beim Laden der Dialogvorlage: {error}"
msgid "No tags selected for deletion."
msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt."
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -690,7 +695,7 @@ msgstr "Abschließen ..."
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:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Abmelden"
@ -739,6 +744,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr "Hallo,<br/><br/>wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.<br/><a href=\"%s\">Schau es dir an.</a><br/><br/>"
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr "Diese ownClound Instanz befindet sich derzeit im Einzelbenutzermodus."
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr "Dies bedeutet, dass diese Instanz nur von Administratoren genutzt werden kann."
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Kontaktiere Deinen Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint."
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Vielen Dank für Deine Geduld."
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -752,13 +775,3 @@ msgstr "Diese OwnCloud-Instanz wird gerade aktualisiert, was eine Weile dauert."
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr "Bitte lade diese Seite nach kurzer Zeit neu, um mit der Nutzung von OwnCloud fortzufahren."
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Kontaktiere Deinen Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint."
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Vielen Dank für Deine Geduld."

View File

@ -7,15 +7,16 @@
# Mario Siegmann <mario_siegmann@web.de>, 2013
# ninov <ninovdl@ymail.com>, 2013
# Pwnicorn <pwnicorndev@gmail.com>, 2013
# noxin <transifex.com@davidmainzer.com>, 2013
# Mirodin <blobbyjj@ymail.com>, 2013
# kabum <uu.kabum@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-23 16:12+0000\n"
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 14:23+0000\n"
"Last-Translator: noxin <transifex.com@davidmainzer.com>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -167,7 +168,7 @@ msgstr "Aktualisiert"
msgid "Select a profile picture"
msgstr "Wähle ein Profilbild"
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen."
@ -586,8 +587,8 @@ msgid "Encryption"
msgstr "Verschlüsselung"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt."
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiviert, bitte entschlüsseln Sie alle ihre Daten."
#: templates/personal.php:154
msgid "Log-in password"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n"
"MIME-Version: 1.0\n"
@ -442,6 +442,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -683,7 +687,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr ""
@ -732,6 +736,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -745,13 +767,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n"
"MIME-Version: 1.0\n"
@ -162,7 +162,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -581,7 +581,7 @@ msgid "Encryption"
msgstr ""
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -17,8 +17,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 02:20+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
"MIME-Version: 1.0\n"
@ -451,6 +451,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -692,7 +696,7 @@ msgstr ""
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:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Abmelden"
@ -741,6 +745,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -754,13 +776,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
"MIME-Version: 1.0\n"
@ -170,7 +170,7 @@ msgstr "Aktualisiert"
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr "Entschlüssel Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen."
@ -589,8 +589,8 @@ msgid "Encryption"
msgstr "Verschlüsselung"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. "
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154
msgid "Log-in password"

View File

@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 08:20+0000\n"
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -449,6 +449,10 @@ msgstr "Fehler beim Laden der Dialogvorlage: {error}"
msgid "No tags selected for deletion."
msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt."
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -690,7 +694,7 @@ msgstr "Abschließen ..."
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:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Abmelden"
@ -739,6 +743,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr "Hallo,<br><br>%s hat %s mit Ihnen geteilt.<br><a href=\"%s\">Schauen Sie es sich an!</a><br><br>"
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr "Diese ownClound Instanz befindet sich derzeit im Einzelbenutzermodus."
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr "Dies bedeutet, das nur Administratoren diese Instanz nutzen können."
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Kontaktieren Sie Ihren Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint."
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Vielen Dank für Ihre Geduld."
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -752,13 +774,3 @@ msgstr "Diese ownCloud-Instanz wird gerade aktualisiert, was eine Weile dauert."
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr "Bitte laden Sie diese Seite nach kurzer Zeit neu, um mit der Nutzung von ownCloud fortzufahren."
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Kontaktieren Sie Ihren Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint."
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Vielen Dank für Ihre Geduld."

View File

@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-23 16:12+0000\n"
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 14:23+0000\n"
"Last-Translator: noxin <transifex.com@davidmainzer.com>\n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -168,7 +168,7 @@ msgstr "Aktualisiert"
msgid "Select a profile picture"
msgstr "Wählen Sie ein Profilbild"
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen."
@ -587,8 +587,8 @@ msgid "Encryption"
msgstr "Verschlüsselung"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. "
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiv, bitte entschlüsseln Sie alle ihre Daten"
#: templates/personal.php:154
msgid "Log-in password"

View File

@ -16,9 +16,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-23 01:50+0000\n"
"Last-Translator: vkehayas <vkehayas@gmail.com>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -450,6 +450,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -691,7 +695,7 @@ msgstr "Ολοκλήρωση..."
msgid "%s is available. Get more information on how to update."
msgstr "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε."
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Αποσύνδεση"
@ -740,6 +744,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Επικοινωνήστε με το διαχειριστή του συστήματος αν αυτό το μήνυμα συνεχίζει να εμφανίζεται ή εμφανίστηκε απρόσμενα."
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Σας ευχαριστούμε για την υπομονή σας."
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -753,13 +775,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr "Παρακαλώ ανανεώστε αυτή τη σελίδα μετά από ένα σύντομο χρονικό διάστημα ώστε να συνεχίσετε να χρησιμοποιείτε το ownCloud."
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Επικοινωνήστε με το διαχειριστή του συστήματος αν αυτό το μήνυμα συνεχίζει να εμφανίζεται ή εμφανίστηκε απρόσμενα."
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Σας ευχαριστούμε για την υπομονή σας."

View File

@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-23 18:10+0000\n"
"Last-Translator: vkehayas <vkehayas@gmail.com>\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09: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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -97,24 +97,24 @@ msgstr "Εσφαλμένο συνθηματικό"
#: changepassword/controller.php:42
msgid "No user supplied"
msgstr ""
msgstr "Δεν εισήχθη χρήστης"
#: changepassword/controller.php:74
msgid ""
"Please provide an admin recovery password, otherwise all user data will be "
"lost"
msgstr ""
msgstr "Παρακαλώ παρέχετε έναν κωδικό ανάκτησης διαχειριστή, διαφορετικά όλα τα δεδομένα χρήστη θα χαθούν"
#: changepassword/controller.php:79
msgid ""
"Wrong admin recovery password. Please check the password and try again."
msgstr ""
msgstr "Λάθος κωδικός ανάκτησης διαχειριστή. Παρακαλώ ελέγξτε τον κωδικό και δοκιμάστε ξανά."
#: changepassword/controller.php:87
msgid ""
"Back-end doesn't support password change, but the users encryption key was "
"successfully updated."
msgstr ""
msgstr "Το βασικό πλαίσιο δεν υποστηρίζει αλλαγή κωδικού, αλλά το κλειδί κρυπτογράφησης των χρηστών ενημερώθηκε επιτυχώς."
#: changepassword/controller.php:92 changepassword/controller.php:103
msgid "Unable to change password"
@ -168,9 +168,9 @@ msgstr "Ενημερώθηκε"
msgid "Select a profile picture"
msgstr "Επιλογή εικόνας προφίλ"
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
msgstr "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο."
#: js/personal.js:287
msgid "Saving..."
@ -219,7 +219,7 @@ msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό"
#: js/users.js:481
msgid "Warning: Home directory for user \"{user}\" already exists"
msgstr ""
msgstr "Προειδοποίηση: Ο μητρικός κατάλογος του χρήστη \"{user}\" υπάρχει ήδη"
#: personal.php:45 personal.php:46
msgid "__language_name__"
@ -227,19 +227,19 @@ msgstr "__όνομα_γλώσσας__"
#: templates/admin.php:8
msgid "Everything (fatal issues, errors, warnings, info, debug)"
msgstr ""
msgstr "Όλα (καίρια ζητήματα, σφάλματα, προειδοποιήσεις, πληροφορίες, αποσφαλμάτωση)"
#: templates/admin.php:9
msgid "Info, warnings, errors and fatal issues"
msgstr ""
msgstr "Πληροφορίες, προειδοποιήσεις, σφάλματα και καίρια ζητήματα"
#: templates/admin.php:10
msgid "Warnings, errors and fatal issues"
msgstr ""
msgstr "Προειδοποιήσεις, σφάλματα και καίρια ζητήματα"
#: templates/admin.php:11
msgid "Errors and fatal issues"
msgstr ""
msgstr "Σφάλματα και καίρια ζητήματα"
#: templates/admin.php:12
msgid "Fatal issues only"
@ -289,7 +289,7 @@ msgstr "Η μετάφραση δεν δουλεύει"
#: templates/admin.php:70
msgid "System locale can not be set to a one which supports UTF-8."
msgstr ""
msgstr "Οι ρυθμίσεις τοποθεσίας συστήματος δεν μπορούν να οριστούν σε κάποιες που δεν υποστηρίζουν UTF-8."
#: templates/admin.php:74
msgid ""
@ -315,7 +315,7 @@ msgid ""
"installation of 3rd party apps don´t work. Accessing files from remote and "
"sending of notification emails might also not work. We suggest to enable "
"internet connection for this server if you want to have all features."
msgstr ""
msgstr "Αυτός ο διακομιστής δεν έχει ενεργή σύνδεση στο διαδίκτυο. Αυτό σημαίνει ότι κάποιες υπηρεσίες όπως η σύνδεση με εξωτερικούς αποθηκευτικούς χώρους, ειδοποιήσεις περί ενημερώσεων ή η εγκατάσταση 3ων εφαρμογών δεν θα είναι διαθέσιμες. Η πρόσβαση απομακρυσμένων αρχείων και η αποστολή ειδοποιήσεων μέσω ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην είναι διαθέσιμες. Προτείνουμε να ενεργοποιήσετε την πρόσβαση στο διαδίκτυο για αυτόν το διακομιστή εάν θέλετε να χρησιμοποιήσετε όλες τις υπηρεσίες."
#: templates/admin.php:107
msgid "Cron"
@ -329,11 +329,11 @@ msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδ
msgid ""
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
msgstr "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http."
#: templates/admin.php:130
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
msgstr "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά."
#: templates/admin.php:135
msgid "Sharing"
@ -382,7 +382,7 @@ msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρ
#: templates/admin.php:185
msgid "Allow mail notification"
msgstr ""
msgstr "Επιτρέψτε ειδοποιήσεις ηλεκτρονικού ταχυδρομείου"
#: templates/admin.php:186
msgid "Allow user to send mail notification for shared files"
@ -399,14 +399,14 @@ msgstr "Επιβολή χρήσης HTTPS"
#: templates/admin.php:208
#, php-format
msgid "Forces the clients to connect to %s via an encrypted connection."
msgstr ""
msgstr "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης."
#: templates/admin.php:214
#, php-format
msgid ""
"Please connect to your %s via HTTPS to enable or disable the SSL "
"enforcement."
msgstr ""
msgstr "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL."
#: templates/admin.php:226
msgid "Log"
@ -541,7 +541,7 @@ msgstr "Φωτογραφία προφίλ"
#: templates/personal.php:90
msgid "Upload new"
msgstr ""
msgstr "Μεταφόρτωση νέου"
#: templates/personal.php:92
msgid "Select new from Files"
@ -553,7 +553,7 @@ msgstr "Αφαίρεση εικόνας"
#: templates/personal.php:94
msgid "Either png or jpg. Ideally square but you will be able to crop it."
msgstr ""
msgstr "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα είστε σε θέση να την περικόψετε."
#: templates/personal.php:97
msgid "Abort"
@ -580,14 +580,14 @@ msgstr "WebDAV"
msgid ""
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via "
"WebDAV</a>"
msgstr ""
msgstr "Χρήση αυτής της διεύθυνσης <a href=\"%s\" target=\"_blank\">πρόσβαση των Αρχείων σας μέσω WebDAV</a>"
#: templates/personal.php:146
msgid "Encryption"
msgstr "Κρυπτογράφηση"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
@ -442,6 +442,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -683,7 +687,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr ""
@ -732,6 +736,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -745,13 +767,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+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"
@ -161,7 +161,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr ""
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 02:20+0000\n"
"Last-Translator: mnestis <transifex@mnestis.net>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -442,6 +442,10 @@ msgstr "Error loading dialog template: {error}"
msgid "No tags selected for deletion."
msgstr "No tags selected for deletion."
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -683,7 +687,7 @@ msgstr "Finishing …"
msgid "%s is available. Get more information on how to update."
msgstr "%s is available. Get more information on how to update."
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Log out"
@ -732,6 +736,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>"
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Contact your system administrator if this message persists or appeared unexpectedly."
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Thank you for your patience."
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -745,13 +767,3 @@ msgstr "This ownCloud instance is currently being updated, which may take a whil
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr "Please reload this page after a short time to continue using ownCloud."
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Contact your system administrator if this message persists or appeared unexpectedly."
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Thank you for your patience."

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n"
"MIME-Version: 1.0\n"
@ -162,7 +162,7 @@ msgstr "Updated"
msgid "Select a profile picture"
msgstr "Select a profile picture"
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr "Decrypting files... Please wait, this can take some time."
@ -283,20 +283,20 @@ msgstr "Locale not working"
#: templates/admin.php:70
msgid "System locale can not be set to a one which supports UTF-8."
msgstr ""
msgstr "System locale can not be set to a one which supports UTF-8."
#: templates/admin.php:74
msgid ""
"This means that there might be problems with certain characters in file "
"names."
msgstr ""
msgstr "This means that there might be problems with certain characters in file names."
#: templates/admin.php:78
#, php-format
msgid ""
"We strongly suggest to install the required packages on your system to "
"support one of the following locales: %s."
msgstr ""
msgstr "We strongly suggest installing the required packages on your system to support one of the following locales: %s."
#: templates/admin.php:90
msgid "Internet connection not working"
@ -581,8 +581,8 @@ msgid "Encryption"
msgstr "Encryption"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr "The encryption app is no longer enabled, decrypt all your files"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154
msgid "Log-in password"

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 02:20+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+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"
@ -443,6 +443,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -684,7 +688,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi."
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Elsaluti"
@ -733,6 +737,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -746,13 +768,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09: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"
@ -161,7 +161,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr "Ĉifrado"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -19,8 +19,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 02:20+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
@ -453,6 +453,10 @@ msgstr "Error cargando plantilla de diálogo: {error}"
msgid "No tags selected for deletion."
msgstr "No hay etiquetas seleccionadas para borrar."
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -694,7 +698,7 @@ msgstr "Finalizando..."
msgid "%s is available. Get more information on how to update."
msgstr "%s esta disponible. Obtener mas información de como actualizar."
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Salir"
@ -743,6 +747,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr "Hola:<br><br>tan solo queremos informarte que %s compartió «%s» contigo.<br><a href=\"%s\">¡Míralo acá!</a><br><br>"
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada."
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Gracias por su paciencia."
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -756,13 +778,3 @@ msgstr "Esta versión de owncloud se está actualizando, esto puede demorar un t
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr "Por favor , recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo."
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada."
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Gracias por su paciencia."

View File

@ -19,8 +19,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
@ -173,7 +173,7 @@ msgstr "Actualizado"
msgid "Select a profile picture"
msgstr "Seleccionar una imagen de perfil"
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo."
@ -592,8 +592,8 @@ msgid "Encryption"
msgstr "Cifrado"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr "La aplicación de cifrado no está activada, descifre sus archivos"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154
msgid "Log-in password"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 02:20+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
@ -442,6 +442,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -683,7 +687,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr "%s está disponible. Obtené más información sobre cómo actualizar."
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Cerrar la sesión"
@ -732,6 +736,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -745,13 +767,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
@ -164,7 +164,7 @@ msgstr "Actualizado"
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr "Desencriptando archivos... Por favor espere, esto puede tardar."
@ -583,8 +583,8 @@ msgid "Encryption"
msgstr "Encriptación"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr "La aplicación de encriptación ya no está habilitada, desencriptando todos los archivos"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154
msgid "Log-in password"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n"
"MIME-Version: 1.0\n"
@ -441,6 +441,10 @@ msgstr ""
msgid "No tags selected for deletion."
msgstr ""
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -682,7 +686,7 @@ msgstr ""
msgid "%s is available. Get more information on how to update."
msgstr ""
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr ""
@ -731,6 +735,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr ""
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -744,13 +766,3 @@ msgstr ""
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr ""
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr ""
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
"PO-Revision-Date: 2013-11-22 02:06+0000\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n"
"MIME-Version: 1.0\n"
@ -161,7 +161,7 @@ msgstr ""
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
@ -580,7 +580,7 @@ msgid "Encryption"
msgstr ""
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 09:40+0000\n"
"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n"
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
"PO-Revision-Date: 2013-11-26 15:45+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -443,6 +443,10 @@ msgstr "Viga dialoogi malli laadimisel: {error}"
msgid "No tags selected for deletion."
msgstr "Kustutamiseks pole ühtegi silti valitud."
#: js/update.js:8
msgid "Please reload the page."
msgstr ""
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
@ -684,7 +688,7 @@ msgstr "Lõpetamine ..."
msgid "%s is available. Get more information on how to update."
msgstr "%s on saadaval. Vaata lähemalt kuidas uuendada."
#: templates/layout.user.php:71
#: templates/layout.user.php:71 templates/singleuser.user.php:8
msgid "Log out"
msgstr "Logi välja"
@ -733,6 +737,24 @@ msgid ""
"href=\"%s\">View it!</a><br><br>"
msgstr "Hei,<br><br>lihtsalt annan sulle teada, et %s jagas sulle välja »%s«.<br><a href=\"%s\">Vaata seda!</a><br><br>"
#: templates/singleuser.user.php:3
msgid "This ownCloud instance is currently in single user mode."
msgstr ""
#: templates/singleuser.user.php:4
msgid "This means only administrators can use the instance."
msgstr ""
#: templates/singleuser.user.php:5 templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Kontakteeru oma süsteemihalduriga, kui see teade püsib või on tekkinud ootamatult."
#: templates/singleuser.user.php:7 templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Täname kannatlikkuse eest."
#: templates/update.admin.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
@ -746,13 +768,3 @@ msgstr "Seda ownCloud instantsi hetkel uuendatakse, võib võtta veidi aega."
#: templates/update.user.php:4
msgid "Please reload this page after a short time to continue using ownCloud."
msgstr "Palun laadi see leht uuesti veidi aja pärast jätkamaks ownCloud kasutamist."
#: templates/update.user.php:5
msgid ""
"Contact your system administrator if this message persists or appeared "
"unexpectedly."
msgstr "Kontakteeru oma süsteemihalduriga, kui see teade püsib või on tekkinud ootamatult."
#: templates/update.user.php:6
msgid "Thank you for your patience."
msgstr "Täname kannatlikkuse eest."

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
"PO-Revision-Date: 2013-11-22 10:00+0000\n"
"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n"
"POT-Creation-Date: 2013-11-26 04:02-0500\n"
"PO-Revision-Date: 2013-11-26 09:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -163,7 +163,7 @@ msgstr "Uuendatud"
msgid "Select a profile picture"
msgstr "Vali profiili pilt"
#: js/personal.js:265
#: js/personal.js:266
msgid "Decrypting files... Please wait, this can take some time."
msgstr "Dekrüpteerin faile... Palun oota, see võib võtta veidi aega."
@ -582,8 +582,8 @@ msgid "Encryption"
msgstr "Krüpteerimine"
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid"
msgid "The encryption app is no longer enabled, please decrypt all your files"
msgstr ""
#: templates/personal.php:154
msgid "Log-in password"

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