Merge remote-tracking branch 'owncloud/master' into fixing-3417-master
* owncloud/master: (30 commits) Added entry with ext storage info [tx-robot] updated from transifex [tx-robot] updated from transifex clarifying license remove unused method tail() reliable detect encrypted files [tx-robot] updated from transifex remove duplicated code add missing quotes + field declarations Do not use xcache variable cache if cache size is 0. always show home breadcrumb in files view Use DEBUG instead of ERROR when favourites not found. Fix #6419 update file cache for target file only remove encryption keys if a real file gets deleted, skip this method if a file outside of /data/user/files was deleted Fixed JS plural function to be per app call set password hook because it doesn't get triggered during test execution and fix paths Do not use L10n when logging exceptions Also add default to the \OCP\IConfig interface add default parameter for AllConfig->get*Value() always show 'Deleted Files' breadcrumb ... Conflicts: lib/private/memcache/xcache.php
This commit is contained in:
commit
38f4ecaeac
|
@ -53,13 +53,13 @@ $result = array(
|
||||||
);
|
);
|
||||||
|
|
||||||
if(trim($filename) === '') {
|
if(trim($filename) === '') {
|
||||||
$result['data'] = array('message' => $l10n->t('File name cannot be empty.'));
|
$result['data'] = array('message' => (string)$l10n->t('File name cannot be empty.'));
|
||||||
OCP\JSON::error($result);
|
OCP\JSON::error($result);
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(strpos($filename, '/') !== false) {
|
if(strpos($filename, '/') !== false) {
|
||||||
$result['data'] = array('message' => $l10n->t('File name must not contain "/". Please choose a different name.'));
|
$result['data'] = array('message' => (string)$l10n->t('File name must not contain "/". Please choose a different name.'));
|
||||||
OCP\JSON::error($result);
|
OCP\JSON::error($result);
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
@ -68,7 +68,7 @@ if(strpos($filename, '/') !== false) {
|
||||||
$target = $dir.'/'.$filename;
|
$target = $dir.'/'.$filename;
|
||||||
|
|
||||||
if (\OC\Files\Filesystem::file_exists($target)) {
|
if (\OC\Files\Filesystem::file_exists($target)) {
|
||||||
$result['data'] = array('message' => $l10n->t(
|
$result['data'] = array('message' => (string)$l10n->t(
|
||||||
'The name %s is already used in the folder %s. Please choose a different name.',
|
'The name %s is already used in the folder %s. Please choose a different name.',
|
||||||
array($filename, $dir))
|
array($filename, $dir))
|
||||||
);
|
);
|
||||||
|
@ -78,20 +78,32 @@ if (\OC\Files\Filesystem::file_exists($target)) {
|
||||||
|
|
||||||
if($source) {
|
if($source) {
|
||||||
if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') {
|
if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') {
|
||||||
OCP\JSON::error(array('data' => array( 'message' => $l10n->t('Not a valid source') )));
|
OCP\JSON::error(array('data' => array('message' => $l10n->t('Not a valid source'))));
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!ini_get('allow_url_fopen')) {
|
||||||
|
$eventSource->send('error', array('message' => $l10n->t('Server is not allowed to open URLs, please check the server configuration')));
|
||||||
|
$eventSource->close();
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
$ctx = stream_context_create(null, array('notification' =>'progress'));
|
$ctx = stream_context_create(null, array('notification' =>'progress'));
|
||||||
$sourceStream=fopen($source, 'rb', false, $ctx);
|
$sourceStream=@fopen($source, 'rb', false, $ctx);
|
||||||
|
$result = 0;
|
||||||
|
if (is_resource($sourceStream)) {
|
||||||
$result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream);
|
$result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream);
|
||||||
|
}
|
||||||
if($result) {
|
if($result) {
|
||||||
$meta = \OC\Files\Filesystem::getFileInfo($target);
|
$meta = \OC\Files\Filesystem::getFileInfo($target);
|
||||||
$mime=$meta['mimetype'];
|
$mime=$meta['mimetype'];
|
||||||
$id = $meta['fileid'];
|
$id = $meta['fileid'];
|
||||||
$eventSource->send('success', array('mime'=>$mime, 'size'=>\OC\Files\Filesystem::filesize($target), 'id' => $id, 'etag' => $meta['etag']));
|
$eventSource->send('success', array('mime' => $mime, 'size' => \OC\Files\Filesystem::filesize($target), 'id' => $id, 'etag' => $meta['etag']));
|
||||||
} else {
|
} else {
|
||||||
$eventSource->send('error', $l10n->t('Error while downloading %s to %s', array($source, $target)));
|
$eventSource->send('error', array('message' => $l10n->t('Error while downloading %s to %s', array($source, $target))));
|
||||||
|
}
|
||||||
|
if (is_resource($sourceStream)) {
|
||||||
|
fclose($sourceStream);
|
||||||
}
|
}
|
||||||
$eventSource->close();
|
$eventSource->close();
|
||||||
exit();
|
exit();
|
||||||
|
|
|
@ -658,7 +658,12 @@ $(document).ready(function() {
|
||||||
});
|
});
|
||||||
eventSource.listen('error',function(error) {
|
eventSource.listen('error',function(error) {
|
||||||
$('#uploadprogressbar').fadeOut();
|
$('#uploadprogressbar').fadeOut();
|
||||||
alert(error);
|
var message = (error && error.message) || t('core', 'Error fetching URL');
|
||||||
|
OC.Notification.show(message);
|
||||||
|
//hide notification after 10 sec
|
||||||
|
setTimeout(function() {
|
||||||
|
OC.Notification.hide();
|
||||||
|
}, 10000);
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
<?php
|
||||||
|
$TRANSLATIONS = array(
|
||||||
|
"Files" => "Archivos",
|
||||||
|
"_%n folder_::_%n folders_" => array("",""),
|
||||||
|
"_%n file_::_%n files_" => array("",""),
|
||||||
|
"_Uploading %n file_::_Uploading %n files_" => array("",""),
|
||||||
|
"Upload" => "Subir"
|
||||||
|
);
|
||||||
|
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
|
@ -43,6 +43,7 @@ $TRANSLATIONS = array(
|
||||||
"Could not rename file" => "Az állomány nem nevezhető át",
|
"Could not rename file" => "Az állomány nem nevezhető át",
|
||||||
"replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}",
|
"replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}",
|
||||||
"undo" => "visszavonás",
|
"undo" => "visszavonás",
|
||||||
|
"Error deleting file." => "Hiba a file törlése közben.",
|
||||||
"_%n folder_::_%n folders_" => array("%n mappa","%n mappa"),
|
"_%n folder_::_%n folders_" => array("%n mappa","%n mappa"),
|
||||||
"_%n file_::_%n files_" => array("%n állomány","%n állomány"),
|
"_%n file_::_%n files_" => array("%n állomány","%n állomány"),
|
||||||
"{dirs} and {files}" => "{dirs} és {files}",
|
"{dirs} and {files}" => "{dirs} és {files}",
|
||||||
|
@ -72,6 +73,7 @@ $TRANSLATIONS = array(
|
||||||
"Maximum input size for ZIP files" => "ZIP-fájlok maximális kiindulási mérete",
|
"Maximum input size for ZIP files" => "ZIP-fájlok maximális kiindulási mérete",
|
||||||
"Save" => "Mentés",
|
"Save" => "Mentés",
|
||||||
"New" => "Új",
|
"New" => "Új",
|
||||||
|
"New text file" => "Új szöveges file",
|
||||||
"Text file" => "Szövegfájl",
|
"Text file" => "Szövegfájl",
|
||||||
"New folder" => "Új mappa",
|
"New folder" => "Új mappa",
|
||||||
"Folder" => "Mappa",
|
"Folder" => "Mappa",
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
<?php if(count($_["breadcrumb"])):?>
|
<div class="crumb <?php if(!count($_["breadcrumb"])) p('last');?>" data-dir=''>
|
||||||
<div class="crumb" data-dir=''>
|
|
||||||
<a href="<?php print_unescaped($_['baseURL']); ?>">
|
<a href="<?php print_unescaped($_['baseURL']); ?>">
|
||||||
<img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" />
|
<img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<?php endif;?>
|
|
||||||
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
|
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
|
||||||
$crumb = $_["breadcrumb"][$i];
|
$crumb = $_["breadcrumb"][$i];
|
||||||
$dir = \OCP\Util::encodePath($crumb["dir"]); ?>
|
$dir = \OCP\Util::encodePath($crumb["dir"]); ?>
|
||||||
|
|
|
@ -33,6 +33,7 @@ $TRANSLATIONS = array(
|
||||||
"Current log-in password" => "Jelenlegi bejelentkezési jelszó",
|
"Current log-in password" => "Jelenlegi bejelentkezési jelszó",
|
||||||
"Update Private Key Password" => "Privát kulcs jelszó frissítése",
|
"Update Private Key Password" => "Privát kulcs jelszó frissítése",
|
||||||
"Enable password recovery:" => "Jelszó-visszaállítás bekapcsolása",
|
"Enable password recovery:" => "Jelszó-visszaállítás bekapcsolása",
|
||||||
"File recovery settings updated" => "File helyreállítási beállításai frissültek"
|
"File recovery settings updated" => "File helyreállítási beállításai frissültek",
|
||||||
|
"Could not update file recovery" => "A file helyreállítás nem frissíthető"
|
||||||
);
|
);
|
||||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||||
|
|
|
@ -114,6 +114,15 @@ class Proxy extends \OC_FileProxy {
|
||||||
// get encrypted content
|
// get encrypted content
|
||||||
$data = $view->file_get_contents($tmpPath);
|
$data = $view->file_get_contents($tmpPath);
|
||||||
|
|
||||||
|
// update file cache for target file
|
||||||
|
$tmpFileInfo = $view->getFileInfo($tmpPath);
|
||||||
|
$fileInfo = $view->getFileInfo($path);
|
||||||
|
if (is_array($fileInfo) && is_array($tmpFileInfo)) {
|
||||||
|
$fileInfo['encrypted'] = true;
|
||||||
|
$fileInfo['unencrypted_size'] = $tmpFileInfo['size'];
|
||||||
|
$view->putFileInfo($path, $fileInfo);
|
||||||
|
}
|
||||||
|
|
||||||
// remove our temp file
|
// remove our temp file
|
||||||
$view->deleteAll('/' . \OCP\User::getUser() . '/cache/' . $cacheFolder);
|
$view->deleteAll('/' . \OCP\User::getUser() . '/cache/' . $cacheFolder);
|
||||||
|
|
||||||
|
@ -182,8 +191,11 @@ class Proxy extends \OC_FileProxy {
|
||||||
*/
|
*/
|
||||||
public function preUnlink($path) {
|
public function preUnlink($path) {
|
||||||
|
|
||||||
// let the trashbin handle this
|
$relPath = Helper::stripUserFilesPath($path);
|
||||||
if (\OCP\App::isEnabled('files_trashbin')) {
|
|
||||||
|
// skip this method if the trash bin is enabled or if we delete a file
|
||||||
|
// outside of /data/user/files
|
||||||
|
if (\OCP\App::isEnabled('files_trashbin') || $relPath === false) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -197,10 +209,7 @@ class Proxy extends \OC_FileProxy {
|
||||||
|
|
||||||
$util = new Util($view, $userId);
|
$util = new Util($view, $userId);
|
||||||
|
|
||||||
// get relative path
|
list($owner, $ownerPath) = $util->getUidAndFilename($relPath);
|
||||||
$relativePath = \OCA\Encryption\Helper::stripUserFilesPath($path);
|
|
||||||
|
|
||||||
list($owner, $ownerPath) = $util->getUidAndFilename($relativePath);
|
|
||||||
|
|
||||||
// Delete keyfile & shareKey so it isn't orphaned
|
// Delete keyfile & shareKey so it isn't orphaned
|
||||||
if (!Keymanager::deleteFileKey($view, $ownerPath)) {
|
if (!Keymanager::deleteFileKey($view, $ownerPath)) {
|
||||||
|
|
|
@ -414,49 +414,6 @@ class Util {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Fetch the last lines of a file efficiently
|
|
||||||
* @note Safe to use on large files; does not read entire file to memory
|
|
||||||
* @note Derivative of http://tekkie.flashbit.net/php/tail-functionality-in-php
|
|
||||||
*/
|
|
||||||
public function tail($filename, $numLines) {
|
|
||||||
|
|
||||||
\OC_FileProxy::$enabled = false;
|
|
||||||
|
|
||||||
$text = '';
|
|
||||||
$pos = -1;
|
|
||||||
$handle = $this->view->fopen($filename, 'r');
|
|
||||||
|
|
||||||
while ($numLines > 0) {
|
|
||||||
|
|
||||||
--$pos;
|
|
||||||
|
|
||||||
if (fseek($handle, $pos, SEEK_END) !== 0) {
|
|
||||||
|
|
||||||
rewind($handle);
|
|
||||||
$numLines = 0;
|
|
||||||
|
|
||||||
} elseif (fgetc($handle) === "\n") {
|
|
||||||
|
|
||||||
--$numLines;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
$block_size = (-$pos) % 8192;
|
|
||||||
if ($block_size === 0 || $numLines === 0) {
|
|
||||||
|
|
||||||
$text = fread($handle, ($block_size === 0 ? 8192 : $block_size)) . $text;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fclose($handle);
|
|
||||||
|
|
||||||
\OC_FileProxy::$enabled = true;
|
|
||||||
|
|
||||||
return $text;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Check if a given path identifies an encrypted file
|
* @brief Check if a given path identifies an encrypted file
|
||||||
* @param string $path
|
* @param string $path
|
||||||
|
@ -464,20 +421,22 @@ class Util {
|
||||||
*/
|
*/
|
||||||
public function isEncryptedPath($path) {
|
public function isEncryptedPath($path) {
|
||||||
|
|
||||||
$relPath = Helper::getPathToRealFile($path);
|
// Disable encryption proxy so data retrieved is in its
|
||||||
|
// original form
|
||||||
|
$proxyStatus = \OC_FileProxy::$enabled;
|
||||||
|
\OC_FileProxy::$enabled = false;
|
||||||
|
|
||||||
if ($relPath === false) {
|
// we only need 24 byte from the last chunk
|
||||||
$relPath = Helper::stripUserFilesPath($path);
|
$data = '';
|
||||||
|
$handle = $this->view->fopen($path, 'r');
|
||||||
|
if (is_resource($handle) && !fseek($handle, -24, SEEK_END)) {
|
||||||
|
$data = fgets($handle);
|
||||||
}
|
}
|
||||||
|
|
||||||
$fileKey = Keymanager::getFileKey($this->view, $this, $relPath);
|
// re-enable proxy
|
||||||
|
\OC_FileProxy::$enabled = $proxyStatus;
|
||||||
if ($fileKey === false) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
|
|
||||||
|
return Crypt::isCatfileContent($data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -44,8 +44,10 @@ class Test_Encryption_Proxy extends \PHPUnit_Framework_TestCase {
|
||||||
/**
|
/**
|
||||||
* @var \OC_FilesystemView
|
* @var \OC_FilesystemView
|
||||||
*/
|
*/
|
||||||
public $view;
|
public $view; // view in /data/user/files
|
||||||
|
public $rootView; // view on /data/user
|
||||||
public $data;
|
public $data;
|
||||||
|
public $filename;
|
||||||
|
|
||||||
public static function setUpBeforeClass() {
|
public static function setUpBeforeClass() {
|
||||||
// reset backend
|
// reset backend
|
||||||
|
@ -74,9 +76,12 @@ class Test_Encryption_Proxy extends \PHPUnit_Framework_TestCase {
|
||||||
|
|
||||||
// init filesystem view
|
// init filesystem view
|
||||||
$this->view = new \OC_FilesystemView('/'. \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 . '/files');
|
$this->view = new \OC_FilesystemView('/'. \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 . '/files');
|
||||||
|
$this->rootView = new \OC_FilesystemView('/'. \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 );
|
||||||
|
|
||||||
// init short data
|
// init short data
|
||||||
$this->data = 'hats';
|
$this->data = 'hats';
|
||||||
|
$this->filename = 'enc_proxy_tests-' . time() . '.txt';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function tearDownAfterClass() {
|
public static function tearDownAfterClass() {
|
||||||
|
@ -90,21 +95,71 @@ class Test_Encryption_Proxy extends \PHPUnit_Framework_TestCase {
|
||||||
*/
|
*/
|
||||||
function testPostFileSize() {
|
function testPostFileSize() {
|
||||||
|
|
||||||
// generate filename
|
$this->view->file_put_contents($this->filename, $this->data);
|
||||||
$filename = 'tmp-' . time() . '.txt';
|
|
||||||
|
|
||||||
$this->view->file_put_contents($filename, $this->data);
|
|
||||||
|
|
||||||
\OC_FileProxy::$enabled = false;
|
\OC_FileProxy::$enabled = false;
|
||||||
|
|
||||||
$unencryptedSize = $this->view->filesize($filename);
|
$unencryptedSize = $this->view->filesize($this->filename);
|
||||||
|
|
||||||
\OC_FileProxy::$enabled = true;
|
\OC_FileProxy::$enabled = true;
|
||||||
|
|
||||||
$encryptedSize = $this->view->filesize($filename);
|
$encryptedSize = $this->view->filesize($this->filename);
|
||||||
|
|
||||||
$this->assertTrue($encryptedSize !== $unencryptedSize);
|
$this->assertTrue($encryptedSize !== $unencryptedSize);
|
||||||
|
|
||||||
|
// cleanup
|
||||||
|
$this->view->unlink($this->filename);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function testPreUnlinkWithoutTrash() {
|
||||||
|
|
||||||
|
// remember files_trashbin state
|
||||||
|
$stateFilesTrashbin = OC_App::isEnabled('files_trashbin');
|
||||||
|
|
||||||
|
// we want to tests with app files_trashbin enabled
|
||||||
|
\OC_App::disable('files_trashbin');
|
||||||
|
|
||||||
|
$this->view->file_put_contents($this->filename, $this->data);
|
||||||
|
|
||||||
|
// create a dummy file that we can delete something outside of data/user/files
|
||||||
|
$this->rootView->file_put_contents("dummy.txt", $this->data);
|
||||||
|
|
||||||
|
// check if all keys are generated
|
||||||
|
$this->assertTrue($this->rootView->file_exists(
|
||||||
|
'/files_encryption/share-keys/'
|
||||||
|
. $this->filename . '.' . \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 . '.shareKey'));
|
||||||
|
$this->assertTrue($this->rootView->file_exists(
|
||||||
|
'/files_encryption/keyfiles/' . $this->filename . '.key'));
|
||||||
|
|
||||||
|
|
||||||
|
// delete dummy file outside of data/user/files
|
||||||
|
$this->rootView->unlink("dummy.txt");
|
||||||
|
|
||||||
|
// all keys should still exist
|
||||||
|
$this->assertTrue($this->rootView->file_exists(
|
||||||
|
'/files_encryption/share-keys/'
|
||||||
|
. $this->filename . '.' . \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 . '.shareKey'));
|
||||||
|
$this->assertTrue($this->rootView->file_exists(
|
||||||
|
'/files_encryption/keyfiles/' . $this->filename . '.key'));
|
||||||
|
|
||||||
|
|
||||||
|
// delete the file in data/user/files
|
||||||
|
$this->view->unlink($this->filename);
|
||||||
|
|
||||||
|
// now also the keys should be gone
|
||||||
|
$this->assertFalse($this->rootView->file_exists(
|
||||||
|
'/files_encryption/share-keys/'
|
||||||
|
. $this->filename . '.' . \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 . '.shareKey'));
|
||||||
|
$this->assertFalse($this->rootView->file_exists(
|
||||||
|
'/files_encryption/keyfiles/' . $this->filename . '.key'));
|
||||||
|
|
||||||
|
if ($stateFilesTrashbin) {
|
||||||
|
OC_App::enable('files_trashbin');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
OC_App::disable('files_trashbin');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -649,9 +649,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
|
||||||
* @large
|
* @large
|
||||||
*/
|
*/
|
||||||
function testRecoveryFile() {
|
function testRecoveryFile() {
|
||||||
$this->markTestIncomplete(
|
|
||||||
'No idea what\'s wrong here, this works perfectly in real-world. removeRecoveryKeys(\'/\') L709 removes correctly the keys, but for some reasons afterwards also the top-level folder "share-keys" is gone...'
|
|
||||||
);
|
|
||||||
// login as admin
|
// login as admin
|
||||||
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1);
|
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1);
|
||||||
|
|
||||||
|
@ -754,13 +752,13 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
|
||||||
* @large
|
* @large
|
||||||
*/
|
*/
|
||||||
function testRecoveryForUser() {
|
function testRecoveryForUser() {
|
||||||
$this->markTestIncomplete(
|
|
||||||
'This test drives Jenkins crazy - "Cannot modify header information - headers already sent" - line 811'
|
|
||||||
);
|
|
||||||
// login as admin
|
// login as admin
|
||||||
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1);
|
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1);
|
||||||
|
|
||||||
\OCA\Encryption\Helper::adminEnableRecovery(null, 'test123');
|
$result = \OCA\Encryption\Helper::adminEnableRecovery(null, 'test123');
|
||||||
|
$this->assertTrue($result);
|
||||||
|
|
||||||
$recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId');
|
$recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId');
|
||||||
|
|
||||||
// login as user2
|
// login as user2
|
||||||
|
@ -771,6 +769,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
|
||||||
// enable recovery for admin
|
// enable recovery for admin
|
||||||
$this->assertTrue($util->setRecoveryForUser(1));
|
$this->assertTrue($util->setRecoveryForUser(1));
|
||||||
|
|
||||||
|
// add recovery keys for existing files (e.g. the auto-generated welcome.txt)
|
||||||
|
$util->addRecoveryKeys();
|
||||||
|
|
||||||
// create folder structure
|
// create folder structure
|
||||||
$this->view->mkdir('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files' . $this->folder1);
|
$this->view->mkdir('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files' . $this->folder1);
|
||||||
$this->view->mkdir(
|
$this->view->mkdir(
|
||||||
|
@ -809,6 +810,10 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
|
||||||
|
|
||||||
// change password
|
// change password
|
||||||
\OC_User::setPassword(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2, 'test', 'test123');
|
\OC_User::setPassword(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2, 'test', 'test123');
|
||||||
|
$params = array('uid' => \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2,
|
||||||
|
'password' => 'test',
|
||||||
|
'recoveryPassword' => 'test123');
|
||||||
|
\OCA\Encryption\Hooks::setPassphrase($params);
|
||||||
|
|
||||||
// login as user2
|
// login as user2
|
||||||
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2, false, 'test');
|
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2, false, 'test');
|
||||||
|
@ -823,8 +828,8 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
|
||||||
$this->assertEquals($this->dataShort, $retrievedCryptedFile2);
|
$this->assertEquals($this->dataShort, $retrievedCryptedFile2);
|
||||||
|
|
||||||
// cleanup
|
// cleanup
|
||||||
$this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files' . $this->folder1);
|
$this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->folder1);
|
||||||
$this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files' . $this->filename);
|
$this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename);
|
||||||
|
|
||||||
// check if share key for user and recovery exists
|
// check if share key for user and recovery exists
|
||||||
$this->assertFalse($this->view->file_exists(
|
$this->assertFalse($this->view->file_exists(
|
||||||
|
|
|
@ -19,6 +19,10 @@
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
|
# Addition 17/12/2012 Frank Karlitschek (frank@owncloud.org)
|
||||||
|
# On the official website http://www.phpclasses.org/smb4php the
|
||||||
|
# license is listed as LGPL so we assume that this is
|
||||||
|
# dual-licensed GPL/LGPL
|
||||||
###################################################################
|
###################################################################
|
||||||
|
|
||||||
define ('SMB4PHP_VERSION', '0.8');
|
define ('SMB4PHP_VERSION', '0.8');
|
||||||
|
|
|
@ -65,7 +65,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
margin-top: 45px;
|
margin-top: 65px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p.info {
|
p.info {
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?php
|
||||||
|
$TRANSLATIONS = array(
|
||||||
|
"Password" => "Clave",
|
||||||
|
"Upload" => "Subir"
|
||||||
|
);
|
||||||
|
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
|
@ -3,11 +3,11 @@
|
||||||
<img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" />
|
<img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<?php if(count($_["breadcrumb"])):?>
|
<div class="crumb svg"
|
||||||
<div class="crumb svg"
|
|
||||||
data-dir='/'>
|
data-dir='/'>
|
||||||
<a href="<?php p($_['baseURL']); ?>"><?php p($l->t("Deleted Files")); ?></a>
|
<a href="<?php p($_['baseURL']); ?>"><?php p($l->t("Deleted Files")); ?></a>
|
||||||
</div>
|
</div>
|
||||||
|
<?php if(count($_["breadcrumb"])):?>
|
||||||
<?php endif;?>
|
<?php endif;?>
|
||||||
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
|
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
|
||||||
$crumb = $_["breadcrumb"][$i];
|
$crumb = $_["breadcrumb"][$i];
|
||||||
|
|
|
@ -12,6 +12,7 @@ $TRANSLATIONS = array(
|
||||||
"Success" => "Επιτυχία",
|
"Success" => "Επιτυχία",
|
||||||
"Error" => "Σφάλμα",
|
"Error" => "Σφάλμα",
|
||||||
"Select groups" => "Επιλέξτε ομάδες",
|
"Select groups" => "Επιλέξτε ομάδες",
|
||||||
|
"Select attributes" => "Επιλογή χαρακτηριστικών",
|
||||||
"Connection test succeeded" => "Επιτυχημένη δοκιμαστική σύνδεση",
|
"Connection test succeeded" => "Επιτυχημένη δοκιμαστική σύνδεση",
|
||||||
"Connection test failed" => "Αποτυχημένη δοκιμαστική σύνδεσης.",
|
"Connection test failed" => "Αποτυχημένη δοκιμαστική σύνδεσης.",
|
||||||
"Do you really want to delete the current Server Configuration?" => "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;",
|
"Do you really want to delete the current Server Configuration?" => "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;",
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?php
|
||||||
|
$TRANSLATIONS = array(
|
||||||
|
"_%s group found_::_%s groups found_" => array("",""),
|
||||||
|
"_%s user found_::_%s users found_" => array("",""),
|
||||||
|
"Password" => "Clave"
|
||||||
|
);
|
||||||
|
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
|
@ -48,8 +48,8 @@ function initL10N(app) {
|
||||||
t.cache[app] = [];
|
t.cache[app] = [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (typeof t.plural_function == 'undefined') {
|
if (typeof t.plural_function[app] == 'undefined') {
|
||||||
t.plural_function = function (n) {
|
t.plural_function[app] = function (n) {
|
||||||
var p = (n != 1) ? 1 : 0;
|
var p = (n != 1) ? 1 : 0;
|
||||||
return { 'nplural' : 2, 'plural' : p };
|
return { 'nplural' : 2, 'plural' : p };
|
||||||
};
|
};
|
||||||
|
@ -74,7 +74,7 @@ function initL10N(app) {
|
||||||
Gettext._locale_data[domain].head.plural_func = eval("("+code+")");
|
Gettext._locale_data[domain].head.plural_func = eval("("+code+")");
|
||||||
*/
|
*/
|
||||||
var code = 'var plural; var nplurals; '+pf+' return { "nplural" : nplurals, "plural" : (plural === true ? 1 : plural ? plural : 0) };';
|
var code = 'var plural; var nplurals; '+pf+' return { "nplural" : nplurals, "plural" : (plural === true ? 1 : plural ? plural : 0) };';
|
||||||
t.plural_function = new Function("n", code);
|
t.plural_function[app] = new Function("n", code);
|
||||||
} else {
|
} else {
|
||||||
console.log("Syntax error in language file. Plural-Forms header is invalid ["+t.plural_forms+"]");
|
console.log("Syntax error in language file. Plural-Forms header is invalid ["+t.plural_forms+"]");
|
||||||
}
|
}
|
||||||
|
@ -110,6 +110,10 @@ function t(app, text, vars, count){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
t.cache = {};
|
t.cache = {};
|
||||||
|
// different apps might or might not redefine the nplurals function correctly
|
||||||
|
// this is to make sure that a "broken" app doesn't mess up with the
|
||||||
|
// other app's plural function
|
||||||
|
t.plural_function = {};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* translate a string
|
* translate a string
|
||||||
|
@ -126,7 +130,7 @@ function n(app, text_singular, text_plural, count, vars) {
|
||||||
if( typeof( t.cache[app][identifier] ) !== 'undefined' ){
|
if( typeof( t.cache[app][identifier] ) !== 'undefined' ){
|
||||||
var translation = t.cache[app][identifier];
|
var translation = t.cache[app][identifier];
|
||||||
if ($.isArray(translation)) {
|
if ($.isArray(translation)) {
|
||||||
var plural = t.plural_function(count);
|
var plural = t.plural_function[app](count);
|
||||||
return t(app, translation[plural.plural], vars, count);
|
return t(app, translation[plural.plural], vars, count);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -482,7 +486,7 @@ OC.Breadcrumb={
|
||||||
this._clear(container);
|
this._clear(container);
|
||||||
|
|
||||||
// show home + path in subdirectories
|
// show home + path in subdirectories
|
||||||
if (dir && dir !== '/') {
|
if (dir) {
|
||||||
//add home
|
//add home
|
||||||
var link = OC.linkTo('files','index.php');
|
var link = OC.linkTo('files','index.php');
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
$TRANSLATIONS = array(
|
||||||
|
"Settings" => "Configuración",
|
||||||
|
"_%n minute ago_::_%n minutes ago_" => array("",""),
|
||||||
|
"_%n hour ago_::_%n hours ago_" => array("",""),
|
||||||
|
"_%n day ago_::_%n days ago_" => array("",""),
|
||||||
|
"_%n month ago_::_%n months ago_" => array("",""),
|
||||||
|
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
|
||||||
|
"Password" => "Clave",
|
||||||
|
"Username" => "Usuario"
|
||||||
|
);
|
||||||
|
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
|
@ -102,6 +102,7 @@ $TRANSLATIONS = array(
|
||||||
"Edit tags" => "Címkék szerkesztése",
|
"Edit tags" => "Címkék szerkesztése",
|
||||||
"Error loading dialog template: {error}" => "Hiba a párbeszédpanel-sablon betöltésekor: {error}",
|
"Error loading dialog template: {error}" => "Hiba a párbeszédpanel-sablon betöltésekor: {error}",
|
||||||
"No tags selected for deletion." => "Nincs törlésre kijelölt címke.",
|
"No tags selected for deletion." => "Nincs törlésre kijelölt címke.",
|
||||||
|
"Please reload the page." => "Kérlek tölts be újra az oldalt",
|
||||||
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "A frissítés nem sikerült. Kérem értesítse erről a problémáról az <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud közösséget</a>.",
|
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "A frissítés nem sikerült. Kérem értesítse erről a problémáról az <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud közösséget</a>.",
|
||||||
"The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.",
|
"The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.",
|
||||||
"%s password reset" => "%s jelszó visszaállítás",
|
"%s password reset" => "%s jelszó visszaállítás",
|
||||||
|
@ -132,6 +133,7 @@ $TRANSLATIONS = array(
|
||||||
"Access forbidden" => "A hozzáférés nem engedélyezett",
|
"Access forbidden" => "A hozzáférés nem engedélyezett",
|
||||||
"Cloud not found" => "A felhő nem található",
|
"Cloud not found" => "A felhő nem található",
|
||||||
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Szia!\\n\n\\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: %s.\\n\nItt tudod megnézni: %s\\n\n\\n",
|
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Szia!\\n\n\\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: %s.\\n\nItt tudod megnézni: %s\\n\n\\n",
|
||||||
|
"The share will expire on %s." => "A megosztás lejár ekkor %s",
|
||||||
"Cheers!" => "Üdv.",
|
"Cheers!" => "Üdv.",
|
||||||
"Security Warning" => "Biztonsági figyelmeztetés",
|
"Security Warning" => "Biztonsági figyelmeztetés",
|
||||||
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)",
|
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)",
|
||||||
|
@ -152,6 +154,7 @@ $TRANSLATIONS = array(
|
||||||
"Database host" => "Adatbázis szerver",
|
"Database host" => "Adatbázis szerver",
|
||||||
"Finish setup" => "A beállítások befejezése",
|
"Finish setup" => "A beállítások befejezése",
|
||||||
"Finishing …" => "Befejezés ...",
|
"Finishing …" => "Befejezés ...",
|
||||||
|
"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Az alkalmazás megfelelő működéséhez szükség van JavaScript-re. <a href=\"http://enable-javascript.com/\" target=\"_blank\">Engedélyezd a JavaScript-et</a> és töltsd újra az interfészt.",
|
||||||
"%s is available. Get more information on how to update." => "%s rendelkezésre áll. További információ a frissítéshez.",
|
"%s is available. Get more information on how to update." => "%s rendelkezésre áll. További információ a frissítéshez.",
|
||||||
"Log out" => "Kilépés",
|
"Log out" => "Kilépés",
|
||||||
"Automatic logon rejected!" => "Az automatikus bejelentkezés sikertelen!",
|
"Automatic logon rejected!" => "Az automatikus bejelentkezés sikertelen!",
|
||||||
|
@ -164,6 +167,8 @@ $TRANSLATIONS = array(
|
||||||
"Log in" => "Bejelentkezés",
|
"Log in" => "Bejelentkezés",
|
||||||
"Alternative Logins" => "Alternatív 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>",
|
"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>",
|
||||||
|
"This ownCloud instance is currently in single user mode." => "Az Owncloud frissítés elezdődött egy felhasználós módban.",
|
||||||
|
"This means only administrators can use the instance." => "Ez azt jelenti, hogy csak az adminisztrátor használhatja ezt a példányt",
|
||||||
"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.",
|
"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.",
|
"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.",
|
"Updating ownCloud to version %s, this may take a while." => "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet.",
|
||||||
|
|
|
@ -154,6 +154,7 @@ $TRANSLATIONS = array(
|
||||||
"Database host" => "Gostitelj podatkovne zbirke",
|
"Database host" => "Gostitelj podatkovne zbirke",
|
||||||
"Finish setup" => "Končaj nastavitev",
|
"Finish setup" => "Končaj nastavitev",
|
||||||
"Finishing …" => "Poteka zaključevanje opravila ...",
|
"Finishing …" => "Poteka zaključevanje opravila ...",
|
||||||
|
"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Program zahteva omogočeno skriptno podporo. Za pravilno delovanje je treba omogočiti <a href=\"http://enable-javascript.com/\" target=\"_blank\">JavaScript</a> in nato ponovno osvežiti vmesnik.",
|
||||||
"%s is available. Get more information on how to update." => "%s je na voljo. Pridobite več podrobnosti za posodobitev.",
|
"%s is available. Get more information on how to update." => "%s je na voljo. Pridobite več podrobnosti za posodobitev.",
|
||||||
"Log out" => "Odjava",
|
"Log out" => "Odjava",
|
||||||
"Automatic logon rejected!" => "Samodejno prijavljanje je zavrnjeno!",
|
"Automatic logon rejected!" => "Samodejno prijavljanje je zavrnjeno!",
|
||||||
|
|
|
@ -26,6 +26,8 @@ List of activated app:
|
||||||
|
|
||||||
The content of config/config.php: (Without the database password and passwordsalt)
|
The content of config/config.php: (Without the database password and passwordsalt)
|
||||||
|
|
||||||
|
Are you using external storage, if yes which one:
|
||||||
|
|
||||||
### Client configuration
|
### Client configuration
|
||||||
Browser:
|
Browser:
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n"
|
"Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n"
|
"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n"
|
"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
|
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "Admin"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "webdienste onder jou beheer"
|
msgstr "webdienste onder jou beheer"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "webdienste onder jou beheer"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "المدير"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "خدمات الشبكة تحت سيطرتك"
|
msgstr "خدمات الشبكة تحت سيطرتك"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "خدمات الشبكة تحت سيطرتك"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "تحميل ملفات ZIP متوقف"
|
msgstr "تحميل ملفات ZIP متوقف"
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر"
|
msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر"
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "العودة الى الملفات"
|
msgstr "العودة الى الملفات"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip"
|
msgstr "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip"
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "معلومات إضافية"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "صور"
|
msgstr "صور"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s ادخل اسم المستخدم الخاص بقاعدة البيانات."
|
msgstr "%s ادخل اسم المستخدم الخاص بقاعدة البيانات."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s ادخل اسم فاعدة البيانات"
|
msgstr "%s ادخل اسم فاعدة البيانات"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات"
|
msgstr "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات"
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح"
|
msgstr "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "خطأ في قواعد البيانات : \"%s\""
|
msgstr "خطأ في قواعد البيانات : \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح"
|
msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s"
|
msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s"
|
||||||
|
@ -347,7 +347,3 @@ msgstr "السنةالماضية"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "سنة مضت"
|
msgstr "سنة مضت"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-12-09 06:39-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-12-09 11:10+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n"
|
"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -327,7 +327,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n"
|
"Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -339,7 +339,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
|
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -54,15 +54,15 @@ msgstr "Админ"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "уеб услуги под Ваш контрол"
|
msgstr "уеб услуги под Ваш контрол"
|
||||||
|
|
||||||
|
@ -71,23 +71,23 @@ msgstr "уеб услуги под Ваш контрол"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Изтеглянето като ZIP е изключено."
|
msgstr "Изтеглянето като ZIP е изключено."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Файловете трябва да се изтеглят един по един."
|
msgstr "Файловете трябва да се изтеглят един по един."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Назад към файловете"
|
msgstr "Назад към файловете"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив."
|
msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -173,17 +173,17 @@ msgstr "Текст"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Снимки"
|
msgstr "Снимки"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s въведете потребителско име за базата с данни."
|
msgstr "%s въведете потребителско име за базата с данни."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s въведете име на базата с данни."
|
msgstr "%s въведете име на базата с данни."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s, не можете да ползвате точки в името на базата от данни"
|
msgstr "%s, не можете да ползвате точки в името на базата от данни"
|
||||||
|
@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Невалидно MySQL потребителско име и/или парола"
|
msgstr "Невалидно MySQL потребителско име и/или парола"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -216,10 +216,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Грешка в базата от данни: \"%s\""
|
msgstr "Грешка в базата от данни: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -252,7 +252,7 @@ msgstr "Oracle връзка не можа да се осъществи"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Невалидно Oracle потребителско име и/или парола"
|
msgstr "Невалидно Oracle потребителско име и/или парола"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Проблемната команда беше: \"%s\", име: %s, парола: %s"
|
msgstr "Проблемната команда беше: \"%s\", име: %s, парола: %s"
|
||||||
|
@ -332,7 +332,3 @@ msgstr "последната година"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "последните години"
|
msgstr "последните години"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
|
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "প্রশাসন"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়"
|
msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "ওয়েব সার্ভিস আপনার হাতের ম
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP ডাউনলোড বন্ধ করা আছে।"
|
msgstr "ZIP ডাউনলোড বন্ধ করা আছে।"
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।"
|
msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।"
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "ফাইলে ফিরে চল"
|
msgstr "ফাইলে ফিরে চল"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।"
|
msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।"
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "টেক্সট"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr "গত বছর"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "বছর পূর্বে"
|
msgstr "বছর পূর্বে"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
|
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -335,7 +335,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -8,9 +8,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-12-02 17:27-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-12-02 11:30+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: rogerc\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -71,23 +71,23 @@ msgstr "controleu els vostres serveis web"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "no es pot obrir \"%s\""
|
msgstr "no es pot obrir \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "La baixada en ZIP està desactivada."
|
msgstr "La baixada en ZIP està desactivada."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Els fitxers s'han de baixar d'un en un."
|
msgstr "Els fitxers s'han de baixar d'un en un."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Torna a Fitxers"
|
msgstr "Torna a Fitxers"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip."
|
msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -173,17 +173,17 @@ msgstr "Text"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Imatges"
|
msgstr "Imatges"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s escriviu el nom d'usuari de la base de dades."
|
msgstr "%s escriviu el nom d'usuari de la base de dades."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s escriviu el nom de la base de dades."
|
msgstr "%s escriviu el nom de la base de dades."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s no podeu usar punts en el nom de la base de dades"
|
msgstr "%s no podeu usar punts en el nom de la base de dades"
|
||||||
|
@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Nom d'usuari i/o contrasenya MySQL no vàlids"
|
msgstr "Nom d'usuari i/o contrasenya MySQL no vàlids"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -216,10 +216,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Error DB: \"%s\""
|
msgstr "Error DB: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -252,7 +252,7 @@ msgstr "No s'ha pogut establir la connexió Oracle"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Nom d'usuari i/o contrasenya Oracle no vàlids"
|
msgstr "Nom d'usuari i/o contrasenya Oracle no vàlids"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s"
|
msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s"
|
||||||
|
@ -332,7 +332,3 @@ msgstr "l'any passat"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "anys enrere"
|
msgstr "anys enrere"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Provocat per:"
|
|
||||||
|
|
|
@ -11,9 +11,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-29 14:08-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-27 18:40+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: pstast <petr@stastny.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
|
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -74,23 +74,23 @@ msgstr "webové služby pod Vaší kontrolou"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "nelze otevřít \"%s\""
|
msgstr "nelze otevřít \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Stahování v ZIPu je vypnuto."
|
msgstr "Stahování v ZIPu je vypnuto."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Soubory musí být stahovány jednotlivě."
|
msgstr "Soubory musí být stahovány jednotlivě."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Zpět k souborům"
|
msgstr "Zpět k souborům"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru."
|
msgstr "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -176,17 +176,17 @@ msgstr "Text"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Obrázky"
|
msgstr "Obrázky"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "Zadejte uživatelské jméno %s databáze."
|
msgstr "Zadejte uživatelské jméno %s databáze."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "Zadejte název databáze pro %s databáze."
|
msgstr "Zadejte název databáze pro %s databáze."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "V názvu databáze %s nesmíte používat tečky."
|
msgstr "V názvu databáze %s nesmíte používat tečky."
|
||||||
|
@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Uživatelské jméno či heslo MySQL není platné"
|
msgstr "Uživatelské jméno či heslo MySQL není platné"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -219,10 +219,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Chyba databáze: \"%s\""
|
msgstr "Chyba databáze: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -255,7 +255,7 @@ msgstr "Spojení s Oracle nemohlo být navázáno"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Uživatelské jméno či heslo Oracle není platné"
|
msgstr "Uživatelské jméno či heslo Oracle není platné"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s"
|
msgstr "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s"
|
||||||
|
@ -339,7 +339,3 @@ msgstr "minulý rok"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "před lety"
|
msgstr "před lety"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Příčina:"
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
|
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "Gweinyddu"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "gwasanaethau gwe a reolir gennych"
|
msgstr "gwasanaethau gwe a reolir gennych"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "gwasanaethau gwe a reolir gennych"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Mae llwytho ZIP wedi ei ddiffodd."
|
msgstr "Mae llwytho ZIP wedi ei ddiffodd."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Mae angen llwytho ffeiliau i lawr fesul un."
|
msgstr "Mae angen llwytho ffeiliau i lawr fesul un."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Nôl i Ffeiliau"
|
msgstr "Nôl i Ffeiliau"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip."
|
msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "Testun"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Delweddau"
|
msgstr "Delweddau"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s rhowch enw defnyddiwr y gronfa ddata."
|
msgstr "%s rhowch enw defnyddiwr y gronfa ddata."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s rhowch enw'r gronfa ddata."
|
msgstr "%s rhowch enw'r gronfa ddata."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata"
|
msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata"
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Enw a/neu gyfrinair MySQL annilys"
|
msgstr "Enw a/neu gyfrinair MySQL annilys"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Gwall DB: \"%s\""
|
msgstr "Gwall DB: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Enw a/neu gyfrinair Oracle annilys"
|
msgstr "Enw a/neu gyfrinair Oracle annilys"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s"
|
msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s"
|
||||||
|
@ -339,7 +339,3 @@ msgstr "y llynedd"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "blwyddyn yn ôl"
|
msgstr "blwyddyn yn ôl"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -10,8 +10,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -56,15 +56,15 @@ msgstr "Admin"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Upgradering af \"%s\" fejlede"
|
msgstr "Upgradering af \"%s\" fejlede"
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Ukendt filtype"
|
msgstr "Ukendt filtype"
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Ugyldigt billede"
|
msgstr "Ugyldigt billede"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "Webtjenester under din kontrol"
|
msgstr "Webtjenester under din kontrol"
|
||||||
|
|
||||||
|
@ -73,23 +73,23 @@ msgstr "Webtjenester under din kontrol"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "Kan ikke åbne \"%s\""
|
msgstr "Kan ikke åbne \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP-download er slået fra."
|
msgstr "ZIP-download er slået fra."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Filer skal downloades en for en."
|
msgstr "Filer skal downloades en for en."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Tilbage til Filer"
|
msgstr "Tilbage til Filer"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "De markerede filer er for store til at generere en ZIP-fil."
|
msgstr "De markerede filer er for store til at generere en ZIP-fil."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -175,17 +175,17 @@ msgstr "SMS"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Billeder"
|
msgstr "Billeder"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s indtast database brugernavnet."
|
msgstr "%s indtast database brugernavnet."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s indtast database navnet."
|
msgstr "%s indtast database navnet."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s du må ikke bruge punktummer i databasenavnet."
|
msgstr "%s du må ikke bruge punktummer i databasenavnet."
|
||||||
|
@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "MySQL brugernavn og/eller kodeord er ikke gyldigt."
|
msgstr "MySQL brugernavn og/eller kodeord er ikke gyldigt."
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -218,10 +218,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Databasefejl: \"%s\""
|
msgstr "Databasefejl: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -254,7 +254,7 @@ msgstr "Oracle forbindelsen kunne ikke etableres"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt."
|
msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt."
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s"
|
msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s"
|
||||||
|
@ -334,7 +334,3 @@ msgstr "sidste år"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "år siden"
|
msgstr "år siden"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Forårsaget af:"
|
|
||||||
|
|
|
@ -11,9 +11,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-12-07 22:26-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-12-06 11:00+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
|
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -335,7 +335,3 @@ msgstr "Letztes Jahr"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "Vor Jahren"
|
msgstr "Vor Jahren"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Verursacht durch:"
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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"
|
"Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -6,13 +6,13 @@
|
||||||
# FlorianScholz <work@bgstyle.de>, 2013
|
# FlorianScholz <work@bgstyle.de>, 2013
|
||||||
# FlorianScholz <work@bgstyle.de>, 2013
|
# FlorianScholz <work@bgstyle.de>, 2013
|
||||||
# Mario Siegmann <mario_siegmann@web.de>, 2013
|
# Mario Siegmann <mario_siegmann@web.de>, 2013
|
||||||
# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2013
|
# traductor <transifex-3.7.mensaje@spamgourmet.com>, 2013
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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"
|
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -57,15 +57,15 @@ msgstr "Administrator"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Konnte \"%s\" nicht aktualisieren."
|
msgstr "Konnte \"%s\" nicht aktualisieren."
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "Web-Services unter Ihrer Kontrolle"
|
msgstr "Web-Services unter Ihrer Kontrolle"
|
||||||
|
|
||||||
|
@ -74,23 +74,23 @@ msgstr "Web-Services unter Ihrer Kontrolle"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "Öffnen von \"%s\" fehlgeschlagen"
|
msgstr "Öffnen von \"%s\" fehlgeschlagen"
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Der ZIP-Download ist deaktiviert."
|
msgstr "Der ZIP-Download ist deaktiviert."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Die Dateien müssen einzeln heruntergeladen werden."
|
msgstr "Die Dateien müssen einzeln heruntergeladen werden."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Zurück zu \"Dateien\""
|
msgstr "Zurück zu \"Dateien\""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen."
|
msgstr "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -176,17 +176,17 @@ msgstr "Text"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Bilder"
|
msgstr "Bilder"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s geben Sie den Datenbank-Benutzernamen an."
|
msgstr "%s geben Sie den Datenbank-Benutzernamen an."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s geben Sie den Datenbank-Namen an."
|
msgstr "%s geben Sie den Datenbank-Namen an."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s Der Datenbank-Name darf keine Punkte enthalten"
|
msgstr "%s Der Datenbank-Name darf keine Punkte enthalten"
|
||||||
|
@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "MySQL Benutzername und/oder Passwort ungültig"
|
msgstr "MySQL Benutzername und/oder Passwort ungültig"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -219,10 +219,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "DB Fehler: \"%s\""
|
msgstr "DB Fehler: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -255,7 +255,7 @@ msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden."
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Oracle Benutzername und/oder Passwort ungültig"
|
msgstr "Oracle Benutzername und/oder Passwort ungültig"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s"
|
msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s"
|
||||||
|
@ -335,7 +335,3 @@ msgstr "Letztes Jahr"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "Vor Jahren"
|
msgstr "Vor Jahren"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Verursacht durch:"
|
|
||||||
|
|
|
@ -4,15 +4,15 @@
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Mario Siegmann <mario_siegmann@web.de>, 2013
|
# Mario Siegmann <mario_siegmann@web.de>, 2013
|
||||||
# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2013
|
# traductor <transifex-3.7.mensaje@spamgourmet.com>, 2013
|
||||||
# noxin <transifex.com@davidmainzer.com>, 2013
|
# noxin <transifex.com@davidmainzer.com>, 2013
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-22 08:30+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\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"
|
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -56,15 +56,15 @@ msgstr "Administrator"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Konnte \"%s\" nicht aktualisieren."
|
msgstr "Konnte \"%s\" nicht aktualisieren."
|
||||||
|
|
||||||
#: private/avatar.php:62
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Unbekannter Dateityp"
|
msgstr "Unbekannter Dateityp"
|
||||||
|
|
||||||
#: private/avatar.php:67
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Ungültiges Bild"
|
msgstr "Ungültiges Bild"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "Web-Services unter Ihrer Kontrolle"
|
msgstr "Web-Services unter Ihrer Kontrolle"
|
||||||
|
|
||||||
|
@ -73,23 +73,23 @@ msgstr "Web-Services unter Ihrer Kontrolle"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "Öffnen von \"%s\" fehlgeschlagen"
|
msgstr "Öffnen von \"%s\" fehlgeschlagen"
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Der ZIP-Download ist deaktiviert."
|
msgstr "Der ZIP-Download ist deaktiviert."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Die Dateien müssen einzeln heruntergeladen werden."
|
msgstr "Die Dateien müssen einzeln heruntergeladen werden."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Zurück zu \"Dateien\""
|
msgstr "Zurück zu \"Dateien\""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen."
|
msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -175,17 +175,17 @@ msgstr "Text"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Bilder"
|
msgstr "Bilder"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s geben Sie den Datenbank-Benutzernamen an."
|
msgstr "%s geben Sie den Datenbank-Benutzernamen an."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s geben Sie den Datenbank-Namen an."
|
msgstr "%s geben Sie den Datenbank-Namen an."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s Der Datenbank-Name darf keine Punkte enthalten"
|
msgstr "%s Der Datenbank-Name darf keine Punkte enthalten"
|
||||||
|
@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "MySQL Benutzername und/oder Passwort ungültig"
|
msgstr "MySQL Benutzername und/oder Passwort ungültig"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -218,10 +218,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "DB Fehler: \"%s\""
|
msgstr "DB Fehler: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -254,7 +254,7 @@ msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden."
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Oracle Benutzername und/oder Passwort ungültig"
|
msgstr "Oracle Benutzername und/oder Passwort ungültig"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s"
|
msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s"
|
||||||
|
@ -334,7 +334,3 @@ msgstr "Letztes Jahr"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "Vor Jahren"
|
msgstr "Vor Jahren"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Verursacht durch:"
|
|
||||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-23 01:50+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -54,15 +54,15 @@ msgstr "Διαχειριστής"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Αποτυχία αναβάθμισης του \"%s\"."
|
msgstr "Αποτυχία αναβάθμισης του \"%s\"."
|
||||||
|
|
||||||
#: private/avatar.php:62
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Άγνωστος τύπος αρχείου"
|
msgstr "Άγνωστος τύπος αρχείου"
|
||||||
|
|
||||||
#: private/avatar.php:67
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Μη έγκυρη εικόνα"
|
msgstr "Μη έγκυρη εικόνα"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας"
|
msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας"
|
||||||
|
|
||||||
|
@ -71,23 +71,23 @@ msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "αδυναμία ανοίγματος \"%s\""
|
msgstr "αδυναμία ανοίγματος \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Η λήψη ZIP απενεργοποιήθηκε."
|
msgstr "Η λήψη ZIP απενεργοποιήθηκε."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα."
|
msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Πίσω στα Αρχεία"
|
msgstr "Πίσω στα Αρχεία"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip."
|
msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -173,17 +173,17 @@ msgstr "Κείμενο"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Εικόνες"
|
msgstr "Εικόνες"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων."
|
msgstr "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s εισάγετε το όνομα της βάσης δεδομένων."
|
msgstr "%s εισάγετε το όνομα της βάσης δεδομένων."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s μάλλον δεν χρησιμοποιείτε τελείες στο όνομα της βάσης δεδομένων"
|
msgstr "%s μάλλον δεν χρησιμοποιείτε τελείες στο όνομα της βάσης δεδομένων"
|
||||||
|
@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL"
|
msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -216,10 +216,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Σφάλμα Βάσης Δεδομένων: \"%s\""
|
msgstr "Σφάλμα Βάσης Δεδομένων: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -252,7 +252,7 @@ msgstr "Αδυναμία σύνδεσης Oracle"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle"
|
msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s"
|
msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s"
|
||||||
|
@ -332,7 +332,3 @@ msgstr "τελευταίο χρόνο"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "χρόνια πριν"
|
msgstr "χρόνια πριν"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Προκλήθηκε από:"
|
|
||||||
|
|
|
@ -3,14 +3,15 @@
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
|
# Marios Bekatoros <>, 2013
|
||||||
# vkehayas <vkehayas@gmail.com>, 2013
|
# vkehayas <vkehayas@gmail.com>, 2013
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-27 12:08-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-27 17:09+0000\n"
|
"PO-Revision-Date: 2013-12-16 12:10+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: Marios Bekatoros <>\n"
|
||||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -26,17 +27,17 @@ msgstr "Αποτυχία εκκαθάρισης των αντιστοιχιών.
|
||||||
msgid "Failed to delete the server configuration"
|
msgid "Failed to delete the server configuration"
|
||||||
msgstr "Αποτυχία διαγραφής ρυθμίσεων διακομιστή"
|
msgstr "Αποτυχία διαγραφής ρυθμίσεων διακομιστή"
|
||||||
|
|
||||||
#: ajax/testConfiguration.php:37
|
#: ajax/testConfiguration.php:39
|
||||||
msgid "The configuration is valid and the connection could be established!"
|
msgid "The configuration is valid and the connection could be established!"
|
||||||
msgstr "Οι ρυθμίσεις είναι έγκυρες και η σύνδεση μπορεί να πραγματοποιηθεί!"
|
msgstr "Οι ρυθμίσεις είναι έγκυρες και η σύνδεση μπορεί να πραγματοποιηθεί!"
|
||||||
|
|
||||||
#: ajax/testConfiguration.php:40
|
#: ajax/testConfiguration.php:42
|
||||||
msgid ""
|
msgid ""
|
||||||
"The configuration is valid, but the Bind failed. Please check the server "
|
"The configuration is valid, but the Bind failed. Please check the server "
|
||||||
"settings and credentials."
|
"settings and credentials."
|
||||||
msgstr "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια."
|
msgstr "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια."
|
||||||
|
|
||||||
#: ajax/testConfiguration.php:44
|
#: ajax/testConfiguration.php:46
|
||||||
msgid ""
|
msgid ""
|
||||||
"The configuration is invalid. Please have a look at the logs for further "
|
"The configuration is invalid. Please have a look at the logs for further "
|
||||||
"details."
|
"details."
|
||||||
|
@ -87,43 +88,43 @@ msgstr "Επιτυχία"
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Σφάλμα"
|
msgstr "Σφάλμα"
|
||||||
|
|
||||||
#: js/settings.js:777
|
#: js/settings.js:837
|
||||||
msgid "Configuration OK"
|
msgid "Configuration OK"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: js/settings.js:786
|
#: js/settings.js:846
|
||||||
msgid "Configuration incorrect"
|
msgid "Configuration incorrect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: js/settings.js:795
|
#: js/settings.js:855
|
||||||
msgid "Configuration incomplete"
|
msgid "Configuration incomplete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: js/settings.js:812 js/settings.js:821
|
#: js/settings.js:872 js/settings.js:881
|
||||||
msgid "Select groups"
|
msgid "Select groups"
|
||||||
msgstr "Επιλέξτε ομάδες"
|
msgstr "Επιλέξτε ομάδες"
|
||||||
|
|
||||||
#: js/settings.js:815 js/settings.js:824
|
#: js/settings.js:875 js/settings.js:884
|
||||||
msgid "Select object classes"
|
msgid "Select object classes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: js/settings.js:818
|
#: js/settings.js:878
|
||||||
msgid "Select attributes"
|
msgid "Select attributes"
|
||||||
msgstr ""
|
msgstr "Επιλογή χαρακτηριστικών"
|
||||||
|
|
||||||
#: js/settings.js:845
|
#: js/settings.js:905
|
||||||
msgid "Connection test succeeded"
|
msgid "Connection test succeeded"
|
||||||
msgstr "Επιτυχημένη δοκιμαστική σύνδεση"
|
msgstr "Επιτυχημένη δοκιμαστική σύνδεση"
|
||||||
|
|
||||||
#: js/settings.js:852
|
#: js/settings.js:912
|
||||||
msgid "Connection test failed"
|
msgid "Connection test failed"
|
||||||
msgstr "Αποτυχημένη δοκιμαστική σύνδεσης."
|
msgstr "Αποτυχημένη δοκιμαστική σύνδεσης."
|
||||||
|
|
||||||
#: js/settings.js:861
|
#: js/settings.js:921
|
||||||
msgid "Do you really want to delete the current Server Configuration?"
|
msgid "Do you really want to delete the current Server Configuration?"
|
||||||
msgstr "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;"
|
msgstr "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;"
|
||||||
|
|
||||||
#: js/settings.js:862
|
#: js/settings.js:922
|
||||||
msgid "Confirm Deletion"
|
msgid "Confirm Deletion"
|
||||||
msgstr "Επιβεβαίωση Διαγραφής"
|
msgstr "Επιβεβαίωση Διαγραφής"
|
||||||
|
|
||||||
|
@ -141,11 +142,11 @@ msgid_plural "%s users found"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: lib/wizard.php:779 lib/wizard.php:791
|
#: lib/wizard.php:778 lib/wizard.php:790
|
||||||
msgid "Invalid Host"
|
msgid "Invalid Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/wizard.php:952
|
#: lib/wizard.php:951
|
||||||
msgid "Could not find the desired feature"
|
msgid "Could not find the desired feature"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n"
|
"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "web services under your control"
|
msgstr "web services under your control"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "web services under your control"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -8,9 +8,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 21:06-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:22+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: mnestis <transifex@mnestis.net>\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"
|
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -54,15 +54,15 @@ msgstr "Admin"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Failed to upgrade \"%s\"."
|
msgstr "Failed to upgrade \"%s\"."
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Unknown filetype"
|
msgstr "Unknown filetype"
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Invalid image"
|
msgstr "Invalid image"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "web services under your control"
|
msgstr "web services under your control"
|
||||||
|
|
||||||
|
@ -71,23 +71,23 @@ msgstr "web services under your control"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "cannot open \"%s\""
|
msgstr "cannot open \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP download is turned off."
|
msgstr "ZIP download is turned off."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Files need to be downloaded one by one."
|
msgstr "Files need to be downloaded one by one."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Back to Files"
|
msgstr "Back to Files"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Selected files too large to generate zip file."
|
msgstr "Selected files too large to generate zip file."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -173,17 +173,17 @@ msgstr "Text"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Images"
|
msgstr "Images"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s enter the database username."
|
msgstr "%s enter the database username."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s enter the database name."
|
msgstr "%s enter the database name."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s you may not use dots in the database name"
|
msgstr "%s you may not use dots in the database name"
|
||||||
|
@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "MySQL username and/or password not valid"
|
msgstr "MySQL username and/or password not valid"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -216,10 +216,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "DB Error: \"%s\""
|
msgstr "DB Error: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -252,7 +252,7 @@ msgstr "Oracle connection could not be established"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Oracle username and/or password not valid"
|
msgstr "Oracle username and/or password not valid"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Offending command was: \"%s\", name: %s, password: %s"
|
msgstr "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
|
@ -332,7 +332,3 @@ msgstr "last year"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "years ago"
|
msgstr "years ago"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Caused by:"
|
|
||||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
|
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -54,15 +54,15 @@ msgstr "Administranto"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "TTT-servoj regataj de vi"
|
msgstr "TTT-servoj regataj de vi"
|
||||||
|
|
||||||
|
@ -71,23 +71,23 @@ msgstr "TTT-servoj regataj de vi"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP-elŝuto estas malkapabligita."
|
msgstr "ZIP-elŝuto estas malkapabligita."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Dosieroj devas elŝutiĝi unuope."
|
msgstr "Dosieroj devas elŝutiĝi unuope."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Reen al la dosieroj"
|
msgstr "Reen al la dosieroj"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero."
|
msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -173,17 +173,17 @@ msgstr "Teksto"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Bildoj"
|
msgstr "Bildoj"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s enigu la uzantonomon de la datumbazo."
|
msgstr "%s enigu la uzantonomon de la datumbazo."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s enigu la nomon de la datumbazo."
|
msgstr "%s enigu la nomon de la datumbazo."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s vi ne povas uzi punktojn en la nomo de la datumbazo"
|
msgstr "%s vi ne povas uzi punktojn en la nomo de la datumbazo"
|
||||||
|
@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "La uzantonomo de MySQL aŭ la pasvorto ne validas"
|
msgstr "La uzantonomo de MySQL aŭ la pasvorto ne validas"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -216,10 +216,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Datumbaza eraro: “%s”"
|
msgstr "Datumbaza eraro: “%s”"
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -252,7 +252,7 @@ msgstr "Konekto al Oracle ne povas stariĝi"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "La uzantonomo de Oracle aŭ la pasvorto ne validas"
|
msgstr "La uzantonomo de Oracle aŭ la pasvorto ne validas"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -332,7 +332,3 @@ msgstr "lastajare"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "jaroj antaŭe"
|
msgstr "jaroj antaŭe"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -12,9 +12,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-12-02 17:27-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-29 22:20+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: Raul Fernandez Garcia <raulfg3@gmail.com>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
|
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -75,23 +75,23 @@ msgstr "Servicios web bajo su control"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "No se puede abrir \"%s\""
|
msgstr "No se puede abrir \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "La descarga en ZIP está desactivada."
|
msgstr "La descarga en ZIP está desactivada."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Los archivos deben ser descargados uno por uno."
|
msgstr "Los archivos deben ser descargados uno por uno."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Volver a Archivos"
|
msgstr "Volver a Archivos"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip."
|
msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -177,17 +177,17 @@ msgstr "Texto"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Imágenes"
|
msgstr "Imágenes"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s ingresar el usuario de la base de datos."
|
msgstr "%s ingresar el usuario de la base de datos."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s ingresar el nombre de la base de datos"
|
msgstr "%s ingresar el nombre de la base de datos"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s puede utilizar puntos en el nombre de la base de datos"
|
msgstr "%s puede utilizar puntos en el nombre de la base de datos"
|
||||||
|
@ -208,11 +208,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Usuario y/o contraseña de MySQL no válidos"
|
msgstr "Usuario y/o contraseña de MySQL no válidos"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -220,10 +220,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Error BD: \"%s\""
|
msgstr "Error BD: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -256,7 +256,7 @@ msgstr "No se pudo establecer la conexión a Oracle"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Usuario y/o contraseña de Oracle no válidos"
|
msgstr "Usuario y/o contraseña de Oracle no válidos"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s"
|
msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s"
|
||||||
|
@ -336,7 +336,3 @@ msgstr "año pasado"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "hace años"
|
msgstr "hace años"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Causado por:"
|
|
||||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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"
|
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -54,15 +54,15 @@ msgstr "Administración"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "No se pudo actualizar \"%s\"."
|
msgstr "No se pudo actualizar \"%s\"."
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Tipo de archivo desconocido"
|
msgstr "Tipo de archivo desconocido"
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Imagen inválida"
|
msgstr "Imagen inválida"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "servicios web sobre los que tenés control"
|
msgstr "servicios web sobre los que tenés control"
|
||||||
|
|
||||||
|
@ -71,23 +71,23 @@ msgstr "servicios web sobre los que tenés control"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "no se puede abrir \"%s\""
|
msgstr "no se puede abrir \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "La descarga en ZIP está desactivada."
|
msgstr "La descarga en ZIP está desactivada."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Los archivos deben ser descargados de a uno."
|
msgstr "Los archivos deben ser descargados de a uno."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Volver a Archivos"
|
msgstr "Volver a Archivos"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip."
|
msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -173,17 +173,17 @@ msgstr "Texto"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Imágenes"
|
msgstr "Imágenes"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s Entrá el usuario de la base de datos"
|
msgstr "%s Entrá el usuario de la base de datos"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s Entrá el nombre de la base de datos."
|
msgstr "%s Entrá el nombre de la base de datos."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s no podés usar puntos en el nombre de la base de datos"
|
msgstr "%s no podés usar puntos en el nombre de la base de datos"
|
||||||
|
@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Usuario y/o contraseña MySQL no válido"
|
msgstr "Usuario y/o contraseña MySQL no válido"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -216,10 +216,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Error DB: \"%s\""
|
msgstr "Error DB: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -252,7 +252,7 @@ msgstr "No fue posible establecer la conexión a Oracle"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "El nombre de usuario y/o contraseña no son válidos"
|
msgstr "El nombre de usuario y/o contraseña no son válidos"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\""
|
msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\""
|
||||||
|
@ -332,7 +332,3 @@ msgstr "el año pasado"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "años atrás"
|
msgstr "años atrás"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Provocado por:"
|
|
||||||
|
|
|
@ -0,0 +1,775 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ownCloud\n"
|
||||||
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
|
"POT-Creation-Date: 2013-12-17 16:42-0500\n"
|
||||||
|
"PO-Revision-Date: 2013-12-17 15:30+0000\n"
|
||||||
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: ajax/share.php:119 ajax/share.php:198
|
||||||
|
#, php-format
|
||||||
|
msgid "%s shared »%s« with you"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/share.php:169
|
||||||
|
#, php-format
|
||||||
|
msgid "Couldn't send mail to following users: %s "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/update.php:11
|
||||||
|
msgid "Turned on maintenance mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/update.php:14
|
||||||
|
msgid "Turned off maintenance mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/update.php:17
|
||||||
|
msgid "Updated database"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/update.php:20
|
||||||
|
msgid "Updating filecache, this may take really long..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/update.php:23
|
||||||
|
msgid "Updated filecache"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/update.php:26
|
||||||
|
#, php-format
|
||||||
|
msgid "... %d%% done ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: avatar/controller.php:62
|
||||||
|
msgid "No image or file provided"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: avatar/controller.php:81
|
||||||
|
msgid "Unknown filetype"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: avatar/controller.php:85
|
||||||
|
msgid "Invalid image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: avatar/controller.php:115 avatar/controller.php:142
|
||||||
|
msgid "No temporary profile picture available, try again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: avatar/controller.php:135
|
||||||
|
msgid "No crop data provided"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:32
|
||||||
|
msgid "Sunday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:33
|
||||||
|
msgid "Monday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:34
|
||||||
|
msgid "Tuesday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:35
|
||||||
|
msgid "Wednesday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:36
|
||||||
|
msgid "Thursday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:37
|
||||||
|
msgid "Friday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:38
|
||||||
|
msgid "Saturday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:43
|
||||||
|
msgid "January"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:44
|
||||||
|
msgid "February"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:45
|
||||||
|
msgid "March"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:46
|
||||||
|
msgid "April"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:47
|
||||||
|
msgid "May"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:48
|
||||||
|
msgid "June"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:49
|
||||||
|
msgid "July"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:50
|
||||||
|
msgid "August"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:51
|
||||||
|
msgid "September"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:52
|
||||||
|
msgid "October"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:53
|
||||||
|
msgid "November"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/config.php:54
|
||||||
|
msgid "December"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/js.js:394
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "Configuración"
|
||||||
|
|
||||||
|
#: js/js.js:865
|
||||||
|
msgid "seconds ago"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/js.js:866
|
||||||
|
msgid "%n minute ago"
|
||||||
|
msgid_plural "%n minutes ago"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: js/js.js:867
|
||||||
|
msgid "%n hour ago"
|
||||||
|
msgid_plural "%n hours ago"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: js/js.js:868
|
||||||
|
msgid "today"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/js.js:869
|
||||||
|
msgid "yesterday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/js.js:870
|
||||||
|
msgid "%n day ago"
|
||||||
|
msgid_plural "%n days ago"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: js/js.js:871
|
||||||
|
msgid "last month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/js.js:872
|
||||||
|
msgid "%n month ago"
|
||||||
|
msgid_plural "%n months ago"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: js/js.js:873
|
||||||
|
msgid "months ago"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/js.js:874
|
||||||
|
msgid "last year"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/js.js:875
|
||||||
|
msgid "years ago"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:123
|
||||||
|
msgid "Choose"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:146
|
||||||
|
msgid "Error loading file picker template: {error}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:172
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:182
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:199
|
||||||
|
msgid "Ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:219
|
||||||
|
msgid "Error loading message template: {error}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:347
|
||||||
|
msgid "{count} file conflict"
|
||||||
|
msgid_plural "{count} file conflicts"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:361
|
||||||
|
msgid "One file conflict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:367
|
||||||
|
msgid "Which files do you want to keep?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:368
|
||||||
|
msgid ""
|
||||||
|
"If you select both versions, the copied file will have a number added to its"
|
||||||
|
" name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:376
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:386
|
||||||
|
msgid "Continue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:433 js/oc-dialogs.js:446
|
||||||
|
msgid "(all selected)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:436 js/oc-dialogs.js:449
|
||||||
|
msgid "({count} selected)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/oc-dialogs.js:457
|
||||||
|
msgid "Error loading file exists template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:51 js/share.js:66 js/share.js:106
|
||||||
|
msgid "Shared"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:109
|
||||||
|
msgid "Share"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707
|
||||||
|
#: js/share.js:719 templates/installation.php:10
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:160 js/share.js:747
|
||||||
|
msgid "Error while sharing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:171
|
||||||
|
msgid "Error while unsharing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:178
|
||||||
|
msgid "Error while changing permissions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:187
|
||||||
|
msgid "Shared with you and the group {group} by {owner}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:189
|
||||||
|
msgid "Shared with you by {owner}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:213
|
||||||
|
msgid "Share with user or group …"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:219
|
||||||
|
msgid "Share link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:222
|
||||||
|
msgid "Password protect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:224 templates/installation.php:58 templates/login.php:38
|
||||||
|
msgid "Password"
|
||||||
|
msgstr "Clave"
|
||||||
|
|
||||||
|
#: js/share.js:229
|
||||||
|
msgid "Allow Public Upload"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:233
|
||||||
|
msgid "Email link to person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:234
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:239
|
||||||
|
msgid "Set expiration date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:240
|
||||||
|
msgid "Expiration date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:275
|
||||||
|
msgid "Share via email:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:278
|
||||||
|
msgid "No people found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:322 js/share.js:359
|
||||||
|
msgid "group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:333
|
||||||
|
msgid "Resharing is not allowed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:375
|
||||||
|
msgid "Shared in {item} with {user}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:397
|
||||||
|
msgid "Unshare"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:405
|
||||||
|
msgid "notify by email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:408
|
||||||
|
msgid "can edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:410
|
||||||
|
msgid "access control"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:413
|
||||||
|
msgid "create"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:416
|
||||||
|
msgid "update"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:419
|
||||||
|
msgid "delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:422
|
||||||
|
msgid "share"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:694
|
||||||
|
msgid "Password protected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:707
|
||||||
|
msgid "Error unsetting expiration date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:719
|
||||||
|
msgid "Error setting expiration date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:734
|
||||||
|
msgid "Sending ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:745
|
||||||
|
msgid "Email sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/share.js:769
|
||||||
|
msgid "Warning"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/tags.js:4
|
||||||
|
msgid "The object type is not specified."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/tags.js:13
|
||||||
|
msgid "Enter new"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/tags.js:27
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/tags.js:31
|
||||||
|
msgid "Add"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/tags.js:39
|
||||||
|
msgid "Edit tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/tags.js:57
|
||||||
|
msgid "Error loading dialog template: {error}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/tags.js:261
|
||||||
|
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 "
|
||||||
|
"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud "
|
||||||
|
"community</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/update.js:21
|
||||||
|
msgid "The update was successful. Redirecting you to ownCloud now."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/controller.php:62
|
||||||
|
#, php-format
|
||||||
|
msgid "%s password reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/templates/email.php:2
|
||||||
|
msgid "Use the following link to reset your password: {link}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/templates/lostpassword.php:7
|
||||||
|
msgid ""
|
||||||
|
"The link to reset your password has been sent to your email.<br>If you do "
|
||||||
|
"not receive it within a reasonable amount of time, check your spam/junk "
|
||||||
|
"folders.<br>If it is not there ask your local administrator ."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/templates/lostpassword.php:15
|
||||||
|
msgid "Request failed!<br>Did you make sure your email/username was right?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/templates/lostpassword.php:18
|
||||||
|
msgid "You will receive a link to reset your password via Email."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52
|
||||||
|
#: templates/login.php:31
|
||||||
|
msgid "Username"
|
||||||
|
msgstr "Usuario"
|
||||||
|
|
||||||
|
#: lostpassword/templates/lostpassword.php:25
|
||||||
|
msgid ""
|
||||||
|
"Your files are encrypted. If you haven't enabled the recovery key, there "
|
||||||
|
"will be no way to get your data back after your password is reset. If you "
|
||||||
|
"are not sure what to do, please contact your administrator before you "
|
||||||
|
"continue. Do you really want to continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/templates/lostpassword.php:27
|
||||||
|
msgid "Yes, I really want to reset my password now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/templates/lostpassword.php:30
|
||||||
|
msgid "Reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/templates/resetpassword.php:4
|
||||||
|
msgid "Your password was reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/templates/resetpassword.php:5
|
||||||
|
msgid "To login page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/templates/resetpassword.php:8
|
||||||
|
msgid "New password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lostpassword/templates/resetpassword.php:11
|
||||||
|
msgid "Reset password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: strings.php:5
|
||||||
|
msgid "Personal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: strings.php:6
|
||||||
|
msgid "Users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: strings.php:7 templates/layout.user.php:111
|
||||||
|
msgid "Apps"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: strings.php:8
|
||||||
|
msgid "Admin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: strings.php:9
|
||||||
|
msgid "Help"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tags/controller.php:22
|
||||||
|
msgid "Error loading tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tags/controller.php:48
|
||||||
|
msgid "Tag already exists"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tags/controller.php:64
|
||||||
|
msgid "Error deleting tag(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tags/controller.php:75
|
||||||
|
msgid "Error tagging"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tags/controller.php:86
|
||||||
|
msgid "Error untagging"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tags/controller.php:97
|
||||||
|
msgid "Error favoriting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tags/controller.php:108
|
||||||
|
msgid "Error unfavoriting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/403.php:12
|
||||||
|
msgid "Access forbidden"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/404.php:15
|
||||||
|
msgid "Cloud not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/altmail.php:2
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Hey there,\n"
|
||||||
|
"\n"
|
||||||
|
"just letting you know that %s shared %s with you.\n"
|
||||||
|
"View it: %s\n"
|
||||||
|
"\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/altmail.php:4 templates/mail.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "The share will expire on %s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/altmail.php:7 templates/mail.php:20
|
||||||
|
msgid "Cheers!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:25 templates/installation.php:32
|
||||||
|
#: templates/installation.php:39
|
||||||
|
msgid "Security Warning"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:26
|
||||||
|
msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:27
|
||||||
|
#, php-format
|
||||||
|
msgid "Please update your PHP installation to use %s securely."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:33
|
||||||
|
msgid ""
|
||||||
|
"No secure random number generator is available, please enable the PHP "
|
||||||
|
"OpenSSL extension."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:34
|
||||||
|
msgid ""
|
||||||
|
"Without a secure random number generator an attacker may be able to predict "
|
||||||
|
"password reset tokens and take over your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:40
|
||||||
|
msgid ""
|
||||||
|
"Your data directory and files are probably accessible from the internet "
|
||||||
|
"because the .htaccess file does not work."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:42
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"For information how to properly configure your server, please see the <a "
|
||||||
|
"href=\"%s\" target=\"_blank\">documentation</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:48
|
||||||
|
msgid "Create an <strong>admin account</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:67
|
||||||
|
msgid "Advanced"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:74
|
||||||
|
msgid "Data folder"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:86
|
||||||
|
msgid "Configure the database"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:91 templates/installation.php:103
|
||||||
|
#: templates/installation.php:114 templates/installation.php:125
|
||||||
|
#: templates/installation.php:137
|
||||||
|
msgid "will be used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:149
|
||||||
|
msgid "Database user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:156
|
||||||
|
msgid "Database password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:161
|
||||||
|
msgid "Database name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:169
|
||||||
|
msgid "Database tablespace"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:176
|
||||||
|
msgid "Database host"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:185
|
||||||
|
msgid "Finish setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/installation.php:185
|
||||||
|
msgid "Finishing …"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/layout.user.php:40
|
||||||
|
msgid ""
|
||||||
|
"This application requires JavaScript to be enabled for correct operation. "
|
||||||
|
"Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable "
|
||||||
|
"JavaScript</a> and re-load this interface."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/layout.user.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "%s is available. Get more information on how to update."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/layout.user.php:72 templates/singleuser.user.php:8
|
||||||
|
msgid "Log out"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/login.php:9
|
||||||
|
msgid "Automatic logon rejected!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/login.php:10
|
||||||
|
msgid ""
|
||||||
|
"If you did not change your password recently, your account may be "
|
||||||
|
"compromised!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/login.php:12
|
||||||
|
msgid "Please change your password to secure your account again."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/login.php:17
|
||||||
|
msgid "Server side authentication failed!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/login.php:18
|
||||||
|
msgid "Please contact your administrator."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/login.php:44
|
||||||
|
msgid "Lost your password?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/login.php:49
|
||||||
|
msgid "remember"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/login.php:52
|
||||||
|
msgid "Log in"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/login.php:58
|
||||||
|
msgid "Alternative Logins"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/mail.php:15
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a "
|
||||||
|
"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."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/update.user.php:3
|
||||||
|
msgid ""
|
||||||
|
"This ownCloud instance is currently being updated, which may take a while."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/update.user.php:4
|
||||||
|
msgid "Please reload this page after a short time to continue using ownCloud."
|
||||||
|
msgstr ""
|
|
@ -0,0 +1,404 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ownCloud\n"
|
||||||
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
|
"POT-Creation-Date: 2013-12-17 16:42-0500\n"
|
||||||
|
"PO-Revision-Date: 2013-12-17 15:30+0000\n"
|
||||||
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: ajax/move.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not move %s - File with this name already exists"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/move.php:27 ajax/move.php:30
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not move %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/newfile.php:56 js/files.js:74
|
||||||
|
msgid "File name cannot be empty."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/newfile.php:62
|
||||||
|
msgid "File name must not contain \"/\". Please choose a different name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"The name %s is already used in the folder %s. Please choose a different "
|
||||||
|
"name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/newfile.php:81
|
||||||
|
msgid "Not a valid source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/newfile.php:94
|
||||||
|
#, php-format
|
||||||
|
msgid "Error while downloading %s to %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/newfile.php:128
|
||||||
|
msgid "Error when creating the file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/newfolder.php:21
|
||||||
|
msgid "Folder name cannot be empty."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/newfolder.php:27
|
||||||
|
msgid "Folder name must not contain \"/\". Please choose a different name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/newfolder.php:56
|
||||||
|
msgid "Error when creating the folder"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:18 ajax/upload.php:50
|
||||||
|
msgid "Unable to set upload directory."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:27
|
||||||
|
msgid "Invalid Token"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:64
|
||||||
|
msgid "No file was uploaded. Unknown error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:71
|
||||||
|
msgid "There is no error, the file uploaded with success"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:72
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:74
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:75
|
||||||
|
msgid "The uploaded file was only partially uploaded"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:76
|
||||||
|
msgid "No file was uploaded"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:77
|
||||||
|
msgid "Missing a temporary folder"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:78
|
||||||
|
msgid "Failed to write to disk"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:96
|
||||||
|
msgid "Not enough storage available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:127 ajax/upload.php:154
|
||||||
|
msgid "Upload failed. Could not get file info."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:144
|
||||||
|
msgid "Upload failed. Could not find uploaded file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/upload.php:172
|
||||||
|
msgid "Invalid directory."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: appinfo/app.php:11
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Archivos"
|
||||||
|
|
||||||
|
#: js/file-upload.js:228
|
||||||
|
msgid "Unable to upload {filename} as it is a directory or has 0 bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/file-upload.js:239
|
||||||
|
msgid "Not enough space available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/file-upload.js:306
|
||||||
|
msgid "Upload cancelled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/file-upload.js:344
|
||||||
|
msgid "Could not get result from server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/file-upload.js:436
|
||||||
|
msgid ""
|
||||||
|
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/file-upload.js:523
|
||||||
|
msgid "URL cannot be empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/file-upload.js:527 js/filelist.js:377
|
||||||
|
msgid "In the home folder 'Shared' is a reserved filename"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/file-upload.js:529 js/filelist.js:379
|
||||||
|
msgid "{new_name} already exists"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/file-upload.js:595
|
||||||
|
msgid "Could not create file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/file-upload.js:611
|
||||||
|
msgid "Could not create folder"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/fileactions.js:125
|
||||||
|
msgid "Share"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/fileactions.js:137
|
||||||
|
msgid "Delete permanently"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/fileactions.js:194
|
||||||
|
msgid "Rename"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889
|
||||||
|
msgid "Pending"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/filelist.js:405
|
||||||
|
msgid "Could not rename file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/filelist.js:539
|
||||||
|
msgid "replaced {new_name} with {old_name}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/filelist.js:539
|
||||||
|
msgid "undo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/filelist.js:591
|
||||||
|
msgid "Error deleting file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/filelist.js:609 js/filelist.js:683 js/files.js:631
|
||||||
|
msgid "%n folder"
|
||||||
|
msgid_plural "%n folders"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: js/filelist.js:610 js/filelist.js:684 js/files.js:637
|
||||||
|
msgid "%n file"
|
||||||
|
msgid_plural "%n files"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: js/filelist.js:617
|
||||||
|
msgid "{dirs} and {files}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/filelist.js:828 js/filelist.js:866
|
||||||
|
msgid "Uploading %n file"
|
||||||
|
msgid_plural "Uploading %n files"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: js/files.js:72
|
||||||
|
msgid "'.' is an invalid file name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:81
|
||||||
|
msgid ""
|
||||||
|
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
|
||||||
|
"allowed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:93
|
||||||
|
msgid "Your storage is full, files can not be updated or synced anymore!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:97
|
||||||
|
msgid "Your storage is almost full ({usedSpacePercent}%)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:110
|
||||||
|
msgid ""
|
||||||
|
"Encryption App is enabled but your keys are not initialized, please log-out "
|
||||||
|
"and log-in again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:114
|
||||||
|
msgid ""
|
||||||
|
"Invalid private key for Encryption App. Please update your private key "
|
||||||
|
"password in your personal settings to recover access to your encrypted "
|
||||||
|
"files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:118
|
||||||
|
msgid ""
|
||||||
|
"Encryption was disabled but your files are still encrypted. Please go to "
|
||||||
|
"your personal settings to decrypt your files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:349
|
||||||
|
msgid ""
|
||||||
|
"Your download is being prepared. This might take some time if the files are "
|
||||||
|
"big."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:558 js/files.js:596
|
||||||
|
msgid "Error moving file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:558 js/files.js:596
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:613 templates/index.php:56
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:614 templates/index.php:68
|
||||||
|
msgid "Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/files.js:615 templates/index.php:70
|
||||||
|
msgid "Modified"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/app.php:60
|
||||||
|
msgid "Invalid folder name. Usage of 'Shared' is reserved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/app.php:101
|
||||||
|
#, php-format
|
||||||
|
msgid "%s could not be renamed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/helper.php:11 templates/index.php:16
|
||||||
|
msgid "Upload"
|
||||||
|
msgstr "Subir"
|
||||||
|
|
||||||
|
#: templates/admin.php:5
|
||||||
|
msgid "File handling"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:7
|
||||||
|
msgid "Maximum upload size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:10
|
||||||
|
msgid "max. possible: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:15
|
||||||
|
msgid "Needed for multi-file and folder downloads."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:17
|
||||||
|
msgid "Enable ZIP-download"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:20
|
||||||
|
msgid "0 is unlimited"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:22
|
||||||
|
msgid "Maximum input size for ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:26
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:5
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:8
|
||||||
|
msgid "New text file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:8
|
||||||
|
msgid "Text file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:10
|
||||||
|
msgid "New folder"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:10
|
||||||
|
msgid "Folder"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:12
|
||||||
|
msgid "From link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:29
|
||||||
|
msgid "Deleted files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:34
|
||||||
|
msgid "Cancel upload"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:40
|
||||||
|
msgid "You don’t have permission to upload or create files here"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:45
|
||||||
|
msgid "Nothing in here. Upload something!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:62
|
||||||
|
msgid "Download"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:73 templates/index.php:74
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:86
|
||||||
|
msgid "Upload too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:88
|
||||||
|
msgid ""
|
||||||
|
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||||
|
"on this server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:93
|
||||||
|
msgid "Files are being scanned, please wait."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:96
|
||||||
|
msgid "Current scanning"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/upgrade.php:2
|
||||||
|
msgid "Upgrading filesystem cache..."
|
||||||
|
msgstr ""
|
|
@ -0,0 +1,201 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ownCloud\n"
|
||||||
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
|
"PO-Revision-Date: 2013-12-16 14:34+0000\n"
|
||||||
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: ajax/adminrecovery.php:29
|
||||||
|
msgid "Recovery key successfully enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/adminrecovery.php:34
|
||||||
|
msgid ""
|
||||||
|
"Could not enable recovery key. Please check your recovery key password!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/adminrecovery.php:48
|
||||||
|
msgid "Recovery key successfully disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/adminrecovery.php:53
|
||||||
|
msgid ""
|
||||||
|
"Could not disable recovery key. Please check your recovery key password!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/changeRecoveryPassword.php:49
|
||||||
|
msgid "Password successfully changed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/changeRecoveryPassword.php:51
|
||||||
|
msgid "Could not change the password. Maybe the old password was not correct."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/updatePrivateKeyPassword.php:52
|
||||||
|
msgid "Private key password successfully updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/updatePrivateKeyPassword.php:54
|
||||||
|
msgid ""
|
||||||
|
"Could not update the private key password. Maybe the old password was not "
|
||||||
|
"correct."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: files/error.php:12
|
||||||
|
msgid ""
|
||||||
|
"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."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: files/error.php:16
|
||||||
|
#, php-format
|
||||||
|
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 ""
|
||||||
|
|
||||||
|
#: files/error.php:19
|
||||||
|
msgid ""
|
||||||
|
"Can not decrypt this file, probably this is a shared file. Please ask the "
|
||||||
|
"file owner to reshare the file with you."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: files/error.php:22 files/error.php:27
|
||||||
|
msgid ""
|
||||||
|
"Unknown error please check your system settings or contact your "
|
||||||
|
"administrator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: hooks/hooks.php:59
|
||||||
|
msgid "Missing requirements."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: hooks/hooks.php:60
|
||||||
|
msgid ""
|
||||||
|
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL "
|
||||||
|
"together with the PHP extension is enabled and configured properly. For now,"
|
||||||
|
" the encryption app has been disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: hooks/hooks.php:278
|
||||||
|
msgid "Following users are not set up for encryption:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/detect-migration.js:21
|
||||||
|
msgid "Initial encryption started... This can take some time. Please wait."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings-admin.js:13
|
||||||
|
msgid "Saving..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/invalid_private_key.php:8
|
||||||
|
msgid "Go directly to your "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/invalid_private_key.php:8
|
||||||
|
msgid "personal settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-admin.php:4 templates/settings-personal.php:3
|
||||||
|
msgid "Encryption"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-admin.php:7
|
||||||
|
msgid ""
|
||||||
|
"Enable recovery key (allow to recover users files in case of password loss):"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-admin.php:11
|
||||||
|
msgid "Recovery key password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-admin.php:14
|
||||||
|
msgid "Repeat Recovery key password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-admin.php:21 templates/settings-personal.php:51
|
||||||
|
msgid "Enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-admin.php:29 templates/settings-personal.php:59
|
||||||
|
msgid "Disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-admin.php:34
|
||||||
|
msgid "Change recovery key password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-admin.php:40
|
||||||
|
msgid "Old Recovery key password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-admin.php:47
|
||||||
|
msgid "New Recovery key password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-admin.php:53
|
||||||
|
msgid "Repeat New Recovery key password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-admin.php:58
|
||||||
|
msgid "Change Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-personal.php:9
|
||||||
|
msgid "Your private key password no longer match your log-in password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-personal.php:12
|
||||||
|
msgid "Set your old private key password to your current log-in password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-personal.php:14
|
||||||
|
msgid ""
|
||||||
|
" If you don't remember your old password you can ask your administrator to "
|
||||||
|
"recover your files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-personal.php:22
|
||||||
|
msgid "Old log-in password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-personal.php:28
|
||||||
|
msgid "Current log-in password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-personal.php:33
|
||||||
|
msgid "Update Private Key Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-personal.php:42
|
||||||
|
msgid "Enable password recovery:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-personal.php:44
|
||||||
|
msgid ""
|
||||||
|
"Enabling this option will allow you to reobtain access to your encrypted "
|
||||||
|
"files in case of password loss"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-personal.php:60
|
||||||
|
msgid "File recovery settings updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings-personal.php:61
|
||||||
|
msgid "Could not update file recovery"
|
||||||
|
msgstr ""
|
|
@ -0,0 +1,123 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ownCloud\n"
|
||||||
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
|
"PO-Revision-Date: 2013-12-16 14:34+0000\n"
|
||||||
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39
|
||||||
|
msgid "Access granted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102
|
||||||
|
msgid "Error configuring Dropbox storage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/dropbox.js:65 js/google.js:86
|
||||||
|
msgid "Grant access"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/dropbox.js:101
|
||||||
|
msgid "Please provide a valid Dropbox app key and secret."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/google.js:42 js/google.js:121
|
||||||
|
msgid "Error configuring Google Drive storage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/config.php:467
|
||||||
|
msgid ""
|
||||||
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
|
||||||
|
"is not possible. Please ask your system administrator to install it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/config.php:471
|
||||||
|
msgid ""
|
||||||
|
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting"
|
||||||
|
" of FTP shares is not possible. Please ask your system administrator to "
|
||||||
|
"install it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/config.php:474
|
||||||
|
msgid ""
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. "
|
||||||
|
"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask "
|
||||||
|
"your system administrator to install it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:3
|
||||||
|
msgid "External Storage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:9 templates/settings.php:28
|
||||||
|
msgid "Folder name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:10
|
||||||
|
msgid "External storage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:11
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:12
|
||||||
|
msgid "Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:13
|
||||||
|
msgid "Applicable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:33
|
||||||
|
msgid "Add storage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:90
|
||||||
|
msgid "None set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:91
|
||||||
|
msgid "All Users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:92
|
||||||
|
msgid "Groups"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:100
|
||||||
|
msgid "Users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:113 templates/settings.php:114
|
||||||
|
#: templates/settings.php:149 templates/settings.php:150
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:129
|
||||||
|
msgid "Enable User External Storage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:130
|
||||||
|
msgid "Allow users to mount their own external storage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:141
|
||||||
|
msgid "SSL root certificates"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:159
|
||||||
|
msgid "Import Root Certificate"
|
||||||
|
msgstr ""
|
|
@ -0,0 +1,84 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ownCloud\n"
|
||||||
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
|
"POT-Creation-Date: 2013-12-17 16:42-0500\n"
|
||||||
|
"PO-Revision-Date: 2013-12-17 15:30+0000\n"
|
||||||
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: templates/authenticate.php:4
|
||||||
|
msgid "This share is password-protected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/authenticate.php:7
|
||||||
|
msgid "The password is wrong. Try again."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/authenticate.php:10
|
||||||
|
msgid "Password"
|
||||||
|
msgstr "Clave"
|
||||||
|
|
||||||
|
#: templates/part.404.php:3
|
||||||
|
msgid "Sorry, this link doesn’t seem to work anymore."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.404.php:4
|
||||||
|
msgid "Reasons might be:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.404.php:6
|
||||||
|
msgid "the item was removed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.404.php:7
|
||||||
|
msgid "the link expired"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.404.php:8
|
||||||
|
msgid "sharing is disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.404.php:10
|
||||||
|
msgid "For more info, please ask the person who sent this link."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/public.php:18
|
||||||
|
#, php-format
|
||||||
|
msgid "%s shared the folder %s with you"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/public.php:21
|
||||||
|
#, php-format
|
||||||
|
msgid "%s shared the file %s with you"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/public.php:29 templates/public.php:95
|
||||||
|
msgid "Download"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/public.php:46 templates/public.php:49
|
||||||
|
msgid "Upload"
|
||||||
|
msgstr "Subir"
|
||||||
|
|
||||||
|
#: templates/public.php:59
|
||||||
|
msgid "Cancel upload"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/public.php:92
|
||||||
|
msgid "No preview available for"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/public.php:99
|
||||||
|
msgid "Direct link"
|
||||||
|
msgstr ""
|
|
@ -0,0 +1,60 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ownCloud\n"
|
||||||
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
|
"PO-Revision-Date: 2013-12-16 14:34+0000\n"
|
||||||
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: ajax/delete.php:63
|
||||||
|
#, php-format
|
||||||
|
msgid "Couldn't delete %s permanently"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/undelete.php:43
|
||||||
|
#, php-format
|
||||||
|
msgid "Couldn't restore %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/trashbin.php:905 lib/trashbin.php:907
|
||||||
|
msgid "restored"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:7
|
||||||
|
msgid "Nothing in here. Your trash bin is empty!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:20
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:23 templates/index.php:25
|
||||||
|
msgid "Restore"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:31
|
||||||
|
msgid "Deleted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/index.php:34 templates/index.php:35
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.breadcrumb.php:8
|
||||||
|
msgid "Deleted Files"
|
||||||
|
msgstr ""
|
|
@ -0,0 +1,43 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ownCloud\n"
|
||||||
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
|
"PO-Revision-Date: 2013-12-16 14:34+0000\n"
|
||||||
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: ajax/rollbackVersion.php:13
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not revert: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/versions.js:14
|
||||||
|
msgid "Versions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/versions.js:60
|
||||||
|
msgid "Failed to revert {file} to revision {timestamp}."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/versions.js:86
|
||||||
|
msgid "More versions..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/versions.js:123
|
||||||
|
msgid "No other versions available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/versions.js:154
|
||||||
|
msgid "Restore"
|
||||||
|
msgstr ""
|
|
@ -0,0 +1,333 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ownCloud\n"
|
||||||
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
|
"POT-Creation-Date: 2013-12-17 16:42-0500\n"
|
||||||
|
"PO-Revision-Date: 2013-12-17 15:30+0000\n"
|
||||||
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: private/app.php:243
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"App \"%s\" can't be installed because it is not compatible with this version"
|
||||||
|
" of ownCloud."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/app.php:255
|
||||||
|
msgid "No app name specified"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/app.php:360
|
||||||
|
msgid "Help"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/app.php:373
|
||||||
|
msgid "Personal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/app.php:384
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "Configuración"
|
||||||
|
|
||||||
|
#: private/app.php:396
|
||||||
|
msgid "Users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/app.php:409
|
||||||
|
msgid "Admin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/app.php:873
|
||||||
|
#, php-format
|
||||||
|
msgid "Failed to upgrade \"%s\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/avatar.php:66
|
||||||
|
msgid "Unknown filetype"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/avatar.php:71
|
||||||
|
msgid "Invalid image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/defaults.php:34
|
||||||
|
msgid "web services under your control"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/files.php:66 private/files.php:98
|
||||||
|
#, php-format
|
||||||
|
msgid "cannot open \"%s\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/files.php:231
|
||||||
|
msgid "ZIP download is turned off."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/files.php:232
|
||||||
|
msgid "Files need to be downloaded one by one."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/files.php:233 private/files.php:261
|
||||||
|
msgid "Back to Files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/files.php:258
|
||||||
|
msgid "Selected files too large to generate zip file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/files.php:259
|
||||||
|
msgid ""
|
||||||
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
|
"administrator."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:63
|
||||||
|
msgid "No source specified when installing app"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:70
|
||||||
|
msgid "No href specified when installing app from http"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:75
|
||||||
|
msgid "No path specified when installing app from local file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:89
|
||||||
|
#, php-format
|
||||||
|
msgid "Archives of type %s are not supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:103
|
||||||
|
msgid "Failed to open archive when installing app"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:125
|
||||||
|
msgid "App does not provide an info.xml file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:131
|
||||||
|
msgid "App can't be installed because of not allowed code in the App"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:140
|
||||||
|
msgid ""
|
||||||
|
"App can't be installed because it is not compatible with this version of "
|
||||||
|
"ownCloud"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:146
|
||||||
|
msgid ""
|
||||||
|
"App can't be installed because it contains the <shipped>true</shipped> tag "
|
||||||
|
"which is not allowed for non shipped apps"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:159
|
||||||
|
msgid ""
|
||||||
|
"App can't be installed because the version in info.xml/version is not the "
|
||||||
|
"same as the version reported from the app store"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:169
|
||||||
|
msgid "App directory already exists"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/installer.php:182
|
||||||
|
#, php-format
|
||||||
|
msgid "Can't create app folder. Please fix permissions. %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/json.php:28
|
||||||
|
msgid "Application is not enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/json.php:39 private/json.php:62 private/json.php:73
|
||||||
|
msgid "Authentication error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/json.php:51
|
||||||
|
msgid "Token expired. Please reload page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/search/provider/file.php:18 private/search/provider/file.php:36
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Archivos"
|
||||||
|
|
||||||
|
#: private/search/provider/file.php:27 private/search/provider/file.php:34
|
||||||
|
msgid "Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/search/provider/file.php:30
|
||||||
|
msgid "Images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/abstractdatabase.php:26
|
||||||
|
#, php-format
|
||||||
|
msgid "%s enter the database username."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/abstractdatabase.php:29
|
||||||
|
#, php-format
|
||||||
|
msgid "%s enter the database name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/abstractdatabase.php:32
|
||||||
|
#, php-format
|
||||||
|
msgid "%s you may not use dots in the database name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/mssql.php:20
|
||||||
|
#, php-format
|
||||||
|
msgid "MS SQL username and/or password not valid: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/mssql.php:21 private/setup/mysql.php:13
|
||||||
|
#: private/setup/oci.php:114 private/setup/postgresql.php:24
|
||||||
|
#: private/setup/postgresql.php:70
|
||||||
|
msgid "You need to enter either an existing account or the administrator."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/mysql.php:12
|
||||||
|
msgid "MySQL username and/or password not valid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
|
#, php-format
|
||||||
|
msgid "DB Error: \"%s\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
|
#, php-format
|
||||||
|
msgid "Offending command was: \"%s\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/mysql.php:85
|
||||||
|
#, php-format
|
||||||
|
msgid "MySQL user '%s'@'localhost' exists already."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/mysql.php:86
|
||||||
|
msgid "Drop this user from MySQL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/mysql.php:91
|
||||||
|
#, php-format
|
||||||
|
msgid "MySQL user '%s'@'%%' already exists"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/mysql.php:92
|
||||||
|
msgid "Drop this user from MySQL."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/oci.php:34
|
||||||
|
msgid "Oracle connection could not be established"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/oci.php:41 private/setup/oci.php:113
|
||||||
|
msgid "Oracle username and/or password not valid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
|
#, php-format
|
||||||
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup/postgresql.php:23 private/setup/postgresql.php:69
|
||||||
|
msgid "PostgreSQL username and/or password not valid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup.php:28
|
||||||
|
msgid "Set an admin username."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup.php:31
|
||||||
|
msgid "Set an admin password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup.php:195
|
||||||
|
msgid ""
|
||||||
|
"Your web server is not yet properly setup to allow files synchronization "
|
||||||
|
"because the WebDAV interface seems to be broken."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/setup.php:196
|
||||||
|
#, php-format
|
||||||
|
msgid "Please double check the <a href='%s'>installation guides</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/tags.php:194
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not find category \"%s\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/template/functions.php:130
|
||||||
|
msgid "seconds ago"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/template/functions.php:131
|
||||||
|
msgid "%n minute ago"
|
||||||
|
msgid_plural "%n minutes ago"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: private/template/functions.php:132
|
||||||
|
msgid "%n hour ago"
|
||||||
|
msgid_plural "%n hours ago"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: private/template/functions.php:133
|
||||||
|
msgid "today"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/template/functions.php:134
|
||||||
|
msgid "yesterday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/template/functions.php:136
|
||||||
|
msgid "%n day go"
|
||||||
|
msgid_plural "%n days ago"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: private/template/functions.php:138
|
||||||
|
msgid "last month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/template/functions.php:139
|
||||||
|
msgid "%n month ago"
|
||||||
|
msgid_plural "%n months ago"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: private/template/functions.php:141
|
||||||
|
msgid "last year"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: private/template/functions.php:142
|
||||||
|
msgid "years ago"
|
||||||
|
msgstr ""
|
|
@ -0,0 +1,668 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ownCloud\n"
|
||||||
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
|
"POT-Creation-Date: 2013-12-17 16:42-0500\n"
|
||||||
|
"PO-Revision-Date: 2013-12-17 15:30+0000\n"
|
||||||
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: ajax/apps/ocs.php:20
|
||||||
|
msgid "Unable to load list from App Store"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17
|
||||||
|
#: ajax/togglegroups.php:20 changepassword/controller.php:55
|
||||||
|
msgid "Authentication error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/changedisplayname.php:31
|
||||||
|
msgid "Your full name has been changed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/changedisplayname.php:34
|
||||||
|
msgid "Unable to change full name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/creategroup.php:10
|
||||||
|
msgid "Group already exists"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/creategroup.php:19
|
||||||
|
msgid "Unable to add group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/lostpassword.php:12
|
||||||
|
msgid "Email saved"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/lostpassword.php:14
|
||||||
|
msgid "Invalid email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/removegroup.php:13
|
||||||
|
msgid "Unable to delete group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/removeuser.php:25
|
||||||
|
msgid "Unable to delete user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/setlanguage.php:15
|
||||||
|
msgid "Language changed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/setlanguage.php:17 ajax/setlanguage.php:20
|
||||||
|
msgid "Invalid request"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/togglegroups.php:12
|
||||||
|
msgid "Admins can't remove themself from the admin group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/togglegroups.php:30
|
||||||
|
#, php-format
|
||||||
|
msgid "Unable to add user to group %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/togglegroups.php:36
|
||||||
|
#, php-format
|
||||||
|
msgid "Unable to remove user from group %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/updateapp.php:14
|
||||||
|
msgid "Couldn't update app."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: changepassword/controller.php:20
|
||||||
|
msgid "Wrong password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: changepassword/controller.php:42
|
||||||
|
msgid "No user supplied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: changepassword/controller.php:74
|
||||||
|
msgid ""
|
||||||
|
"Please provide an admin recovery password, otherwise all user data will be "
|
||||||
|
"lost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: changepassword/controller.php:79
|
||||||
|
msgid ""
|
||||||
|
"Wrong admin recovery password. Please check the password and try again."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: changepassword/controller.php:87
|
||||||
|
msgid ""
|
||||||
|
"Back-end doesn't support password change, but the users encryption key was "
|
||||||
|
"successfully updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: changepassword/controller.php:92 changepassword/controller.php:103
|
||||||
|
msgid "Unable to change password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/apps.js:43
|
||||||
|
msgid "Update to {appversion}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/apps.js:49 js/apps.js:82 js/apps.js:110
|
||||||
|
msgid "Disable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119
|
||||||
|
msgid "Enable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/apps.js:71
|
||||||
|
msgid "Please wait...."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/apps.js:79 js/apps.js:80 js/apps.js:101
|
||||||
|
msgid "Error while disabling app"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/apps.js:100 js/apps.js:114 js/apps.js:115
|
||||||
|
msgid "Error while enabling app"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/apps.js:125
|
||||||
|
msgid "Updating...."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/apps.js:128
|
||||||
|
msgid "Error while updating app"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/apps.js:128
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/apps.js:129 templates/apps.php:43
|
||||||
|
msgid "Update"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/apps.js:132
|
||||||
|
msgid "Updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/personal.js:220
|
||||||
|
msgid "Select a profile picture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/personal.js:266
|
||||||
|
msgid "Decrypting files... Please wait, this can take some time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/personal.js:287
|
||||||
|
msgid "Saving..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/users.js:47
|
||||||
|
msgid "deleted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/users.js:47
|
||||||
|
msgid "undo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/users.js:79
|
||||||
|
msgid "Unable to remove user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/users.js:95 templates/users.php:26 templates/users.php:90
|
||||||
|
#: templates/users.php:118
|
||||||
|
msgid "Groups"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/users.js:100 templates/users.php:92 templates/users.php:130
|
||||||
|
msgid "Group Admin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/users.js:123 templates/users.php:170
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/users.js:284
|
||||||
|
msgid "add group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/users.js:454
|
||||||
|
msgid "A valid username must be provided"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/users.js:455 js/users.js:461 js/users.js:476
|
||||||
|
msgid "Error creating user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/users.js:460
|
||||||
|
msgid "A valid password must be provided"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/users.js:484
|
||||||
|
msgid "Warning: Home directory for user \"{user}\" already exists"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: personal.php:45 personal.php:46
|
||||||
|
msgid "__language_name__"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:8
|
||||||
|
msgid "Everything (fatal issues, errors, warnings, info, debug)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:9
|
||||||
|
msgid "Info, warnings, errors and fatal issues"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:10
|
||||||
|
msgid "Warnings, errors and fatal issues"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:11
|
||||||
|
msgid "Errors and fatal issues"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:12
|
||||||
|
msgid "Fatal issues only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:22 templates/admin.php:36
|
||||||
|
msgid "Security Warning"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:25
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are accessing %s via HTTP. We strongly suggest you configure your server"
|
||||||
|
" to require using HTTPS instead."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:39
|
||||||
|
msgid ""
|
||||||
|
"Your data directory and your files are probably accessible from the "
|
||||||
|
"internet. The .htaccess file is not working. We strongly suggest that you "
|
||||||
|
"configure your webserver in a way that the data directory is no longer "
|
||||||
|
"accessible or you move the data directory outside the webserver document "
|
||||||
|
"root."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:50
|
||||||
|
msgid "Setup Warning"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:53
|
||||||
|
msgid ""
|
||||||
|
"Your web server is not yet properly setup to allow files synchronization "
|
||||||
|
"because the WebDAV interface seems to be broken."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:54
|
||||||
|
#, php-format
|
||||||
|
msgid "Please double check the <a href=\"%s\">installation guides</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:65
|
||||||
|
msgid "Module 'fileinfo' missing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:68
|
||||||
|
msgid ""
|
||||||
|
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this "
|
||||||
|
"module to get best results with mime-type detection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:79
|
||||||
|
msgid "Your PHP version is outdated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:82
|
||||||
|
msgid ""
|
||||||
|
"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or "
|
||||||
|
"newer because older versions are known to be broken. It is possible that "
|
||||||
|
"this installation is not working correctly."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:93
|
||||||
|
msgid "Locale not working"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:98
|
||||||
|
msgid "System locale can not be set to a one which supports UTF-8."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:102
|
||||||
|
msgid ""
|
||||||
|
"This means that there might be problems with certain characters in file "
|
||||||
|
"names."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:106
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"We strongly suggest to install the required packages on your system to "
|
||||||
|
"support one of the following locales: %s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:118
|
||||||
|
msgid "Internet connection not working"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:121
|
||||||
|
msgid ""
|
||||||
|
"This server has no working internet connection. This means that some of the "
|
||||||
|
"features like mounting of external storage, notifications about updates or "
|
||||||
|
"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 ""
|
||||||
|
|
||||||
|
#: templates/admin.php:135
|
||||||
|
msgid "Cron"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:142
|
||||||
|
msgid "Execute one task with each page loaded"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:150
|
||||||
|
msgid ""
|
||||||
|
"cron.php is registered at a webcron service to call cron.php every 15 "
|
||||||
|
"minutes over http."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:158
|
||||||
|
msgid "Use systems cron service to call the cron.php file every 15 minutes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:163
|
||||||
|
msgid "Sharing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:169
|
||||||
|
msgid "Enable Share API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:170
|
||||||
|
msgid "Allow apps to use the Share API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:177
|
||||||
|
msgid "Allow links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:178
|
||||||
|
msgid "Allow users to share items to the public with links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:186
|
||||||
|
msgid "Allow public uploads"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:187
|
||||||
|
msgid ""
|
||||||
|
"Allow users to enable others to upload into their publicly shared folders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:195
|
||||||
|
msgid "Allow resharing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:196
|
||||||
|
msgid "Allow users to share items shared with them again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:203
|
||||||
|
msgid "Allow users to share with anyone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:206
|
||||||
|
msgid "Allow users to only share with users in their groups"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:213
|
||||||
|
msgid "Allow mail notification"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:214
|
||||||
|
msgid "Allow user to send mail notification for shared files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:221
|
||||||
|
msgid "Security"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:234
|
||||||
|
msgid "Enforce HTTPS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:236
|
||||||
|
#, php-format
|
||||||
|
msgid "Forces the clients to connect to %s via an encrypted connection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:242
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please connect to your %s via HTTPS to enable or disable the SSL "
|
||||||
|
"enforcement."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:254
|
||||||
|
msgid "Log"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:255
|
||||||
|
msgid "Log level"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:287
|
||||||
|
msgid "More"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:288
|
||||||
|
msgid "Less"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:294 templates/personal.php:173
|
||||||
|
msgid "Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/admin.php:298 templates/personal.php:176
|
||||||
|
msgid ""
|
||||||
|
"Developed by the <a href=\"http://ownCloud.org/contact\" "
|
||||||
|
"target=\"_blank\">ownCloud community</a>, the <a "
|
||||||
|
"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is "
|
||||||
|
"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
|
||||||
|
"target=\"_blank\"><abbr title=\"Affero General Public "
|
||||||
|
"License\">AGPL</abbr></a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/apps.php:13
|
||||||
|
msgid "Add your App"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/apps.php:28
|
||||||
|
msgid "More Apps"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/apps.php:33
|
||||||
|
msgid "Select an App"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/apps.php:39
|
||||||
|
msgid "See application page at apps.owncloud.com"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/apps.php:41
|
||||||
|
msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/help.php:4
|
||||||
|
msgid "User Documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/help.php:6
|
||||||
|
msgid "Administrator Documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/help.php:9
|
||||||
|
msgid "Online Documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/help.php:11
|
||||||
|
msgid "Forum"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/help.php:14
|
||||||
|
msgid "Bugtracker"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/help.php:17
|
||||||
|
msgid "Commercial Support"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:8
|
||||||
|
msgid "Get the apps to sync your files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:19
|
||||||
|
msgid "Show First Run Wizard again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:27
|
||||||
|
#, php-format
|
||||||
|
msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:39 templates/users.php:23 templates/users.php:89
|
||||||
|
msgid "Password"
|
||||||
|
msgstr "Clave"
|
||||||
|
|
||||||
|
#: templates/personal.php:40
|
||||||
|
msgid "Your password was changed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:41
|
||||||
|
msgid "Unable to change your password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:42
|
||||||
|
msgid "Current password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:44
|
||||||
|
msgid "New password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:46
|
||||||
|
msgid "Change password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:58 templates/users.php:88
|
||||||
|
msgid "Full Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:73
|
||||||
|
msgid "Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:75
|
||||||
|
msgid "Your email address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:76
|
||||||
|
msgid "Fill in an email address to enable password recovery"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:86
|
||||||
|
msgid "Profile picture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:91
|
||||||
|
msgid "Upload new"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:93
|
||||||
|
msgid "Select new from Files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:94
|
||||||
|
msgid "Remove image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:95
|
||||||
|
msgid "Either png or jpg. Ideally square but you will be able to crop it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:97
|
||||||
|
msgid "Your avatar is provided by your original account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:101
|
||||||
|
msgid "Abort"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:102
|
||||||
|
msgid "Choose as profile image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:110 templates/personal.php:111
|
||||||
|
msgid "Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:130
|
||||||
|
msgid "Help translate"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:137
|
||||||
|
msgid "WebDAV"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:139
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via "
|
||||||
|
"WebDAV</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:150
|
||||||
|
msgid "Encryption"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:152
|
||||||
|
msgid "The encryption app is no longer enabled, please decrypt all your files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:158
|
||||||
|
msgid "Log-in password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/personal.php:163
|
||||||
|
msgid "Decrypt all Files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:21
|
||||||
|
msgid "Login Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:30
|
||||||
|
msgid "Create"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:36
|
||||||
|
msgid "Admin Recovery Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:37 templates/users.php:38
|
||||||
|
msgid ""
|
||||||
|
"Enter the recovery password in order to recover the users files during "
|
||||||
|
"password change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:42
|
||||||
|
msgid "Default Storage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:44 templates/users.php:139
|
||||||
|
msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:48 templates/users.php:148
|
||||||
|
msgid "Unlimited"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:66 templates/users.php:163
|
||||||
|
msgid "Other"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:87
|
||||||
|
msgid "Username"
|
||||||
|
msgstr "Usuario"
|
||||||
|
|
||||||
|
#: templates/users.php:94
|
||||||
|
msgid "Storage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:108
|
||||||
|
msgid "change full name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:112
|
||||||
|
msgid "set new password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/users.php:143
|
||||||
|
msgid "Default"
|
||||||
|
msgstr ""
|
|
@ -0,0 +1,513 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ownCloud\n"
|
||||||
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
|
"POT-Creation-Date: 2013-12-17 16:42-0500\n"
|
||||||
|
"PO-Revision-Date: 2013-12-17 15:30+0000\n"
|
||||||
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: ajax/clearMappings.php:34
|
||||||
|
msgid "Failed to clear the mappings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/deleteConfiguration.php:34
|
||||||
|
msgid "Failed to delete the server configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/testConfiguration.php:39
|
||||||
|
msgid "The configuration is valid and the connection could be established!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/testConfiguration.php:42
|
||||||
|
msgid ""
|
||||||
|
"The configuration is valid, but the Bind failed. Please check the server "
|
||||||
|
"settings and credentials."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/testConfiguration.php:46
|
||||||
|
msgid ""
|
||||||
|
"The configuration is invalid. Please have a look at the logs for further "
|
||||||
|
"details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/wizard.php:32
|
||||||
|
msgid "No action specified"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/wizard.php:38
|
||||||
|
msgid "No configuration specified"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/wizard.php:81
|
||||||
|
msgid "No data specified"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ajax/wizard.php:89
|
||||||
|
#, php-format
|
||||||
|
msgid " Could not set configuration %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:67
|
||||||
|
msgid "Deletion failed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:83
|
||||||
|
msgid "Take over settings from recent server configuration?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:84
|
||||||
|
msgid "Keep settings?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:99
|
||||||
|
msgid "Cannot add server configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:127
|
||||||
|
msgid "mappings cleared"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:128
|
||||||
|
msgid "Success"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:133
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:837
|
||||||
|
msgid "Configuration OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:846
|
||||||
|
msgid "Configuration incorrect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:855
|
||||||
|
msgid "Configuration incomplete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:872 js/settings.js:881
|
||||||
|
msgid "Select groups"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:875 js/settings.js:884
|
||||||
|
msgid "Select object classes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:878
|
||||||
|
msgid "Select attributes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:905
|
||||||
|
msgid "Connection test succeeded"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:912
|
||||||
|
msgid "Connection test failed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:921
|
||||||
|
msgid "Do you really want to delete the current Server Configuration?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: js/settings.js:922
|
||||||
|
msgid "Confirm Deletion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/wizard.php:79 lib/wizard.php:93
|
||||||
|
#, php-format
|
||||||
|
msgid "%s group found"
|
||||||
|
msgid_plural "%s groups found"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: lib/wizard.php:122
|
||||||
|
#, php-format
|
||||||
|
msgid "%s user found"
|
||||||
|
msgid_plural "%s users found"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: lib/wizard.php:778 lib/wizard.php:790
|
||||||
|
msgid "Invalid Host"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/wizard.php:951
|
||||||
|
msgid "Could not find the desired feature"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.settingcontrols.php:2
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.settingcontrols.php:4
|
||||||
|
msgid "Test Configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14
|
||||||
|
msgid "Help"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-groupfilter.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Limit the access to %s to groups meeting this criteria:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-groupfilter.php:8
|
||||||
|
#: templates/part.wizard-userfilter.php:8
|
||||||
|
msgid "only those object classes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-groupfilter.php:17
|
||||||
|
#: templates/part.wizard-userfilter.php:17
|
||||||
|
msgid "only from those groups:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-groupfilter.php:25
|
||||||
|
#: templates/part.wizard-loginfilter.php:32
|
||||||
|
#: templates/part.wizard-userfilter.php:25
|
||||||
|
msgid "Edit raw filter instead"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-groupfilter.php:30
|
||||||
|
#: templates/part.wizard-loginfilter.php:37
|
||||||
|
#: templates/part.wizard-userfilter.php:30
|
||||||
|
msgid "Raw LDAP filter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-groupfilter.php:31
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"The filter specifies which LDAP groups shall have access to the %s instance."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-groupfilter.php:38
|
||||||
|
msgid "groups found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-loginfilter.php:4
|
||||||
|
msgid "What attribute shall be used as login name:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-loginfilter.php:8
|
||||||
|
msgid "LDAP Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-loginfilter.php:16
|
||||||
|
msgid "LDAP Email Address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-loginfilter.php:24
|
||||||
|
msgid "Other Attributes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-loginfilter.php:38
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Defines the filter to apply, when login is attempted. %%uid replaces the "
|
||||||
|
"username in the login action. Example: \"uid=%%uid\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-server.php:18
|
||||||
|
msgid "Add Server Configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-server.php:30
|
||||||
|
msgid "Host"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-server.php:31
|
||||||
|
msgid ""
|
||||||
|
"You can omit the protocol, except you require SSL. Then start with ldaps://"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-server.php:36
|
||||||
|
msgid "Port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-server.php:44
|
||||||
|
msgid "User DN"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-server.php:45
|
||||||
|
msgid ""
|
||||||
|
"The DN of the client user with which the bind shall be done, e.g. "
|
||||||
|
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
|
||||||
|
"empty."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-server.php:52
|
||||||
|
msgid "Password"
|
||||||
|
msgstr "Clave"
|
||||||
|
|
||||||
|
#: templates/part.wizard-server.php:53
|
||||||
|
msgid "For anonymous access, leave DN and Password empty."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-server.php:60
|
||||||
|
msgid "One Base DN per line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-server.php:61
|
||||||
|
msgid "You can specify Base DN for users and groups in the Advanced tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-userfilter.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Limit the access to %s to users meeting this criteria:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-userfilter.php:31
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"The filter specifies which LDAP users shall have access to the %s instance."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizard-userfilter.php:38
|
||||||
|
msgid "users found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizardcontrols.php:5
|
||||||
|
msgid "Back"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/part.wizardcontrols.php:8
|
||||||
|
msgid "Continue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:11
|
||||||
|
msgid ""
|
||||||
|
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may"
|
||||||
|
" experience unexpected behavior. Please ask your system administrator to "
|
||||||
|
"disable one of them."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:14
|
||||||
|
msgid ""
|
||||||
|
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
|
||||||
|
"work. Please ask your system administrator to install it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:20
|
||||||
|
msgid "Connection Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:22
|
||||||
|
msgid "Configuration Active"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:22
|
||||||
|
msgid "When unchecked, this configuration will be skipped."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:23
|
||||||
|
msgid "Backup (Replica) Host"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:23
|
||||||
|
msgid ""
|
||||||
|
"Give an optional backup host. It must be a replica of the main LDAP/AD "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:24
|
||||||
|
msgid "Backup (Replica) Port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:25
|
||||||
|
msgid "Disable Main Server"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:25
|
||||||
|
msgid "Only connect to the replica server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:26
|
||||||
|
msgid "Case insensitve LDAP server (Windows)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:27
|
||||||
|
msgid "Turn off SSL certificate validation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:27
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Not recommended, use it for testing only! If connection only works with this"
|
||||||
|
" option, import the LDAP server's SSL certificate in your %s server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:28
|
||||||
|
msgid "Cache Time-To-Live"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:28
|
||||||
|
msgid "in seconds. A change empties the cache."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:30
|
||||||
|
msgid "Directory Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:32
|
||||||
|
msgid "User Display Name Field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:32
|
||||||
|
msgid "The LDAP attribute to use to generate the user's display name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:33
|
||||||
|
msgid "Base User Tree"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:33
|
||||||
|
msgid "One User Base DN per line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:34
|
||||||
|
msgid "User Search Attributes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:34 templates/settings.php:37
|
||||||
|
msgid "Optional; one attribute per line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:35
|
||||||
|
msgid "Group Display Name Field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:35
|
||||||
|
msgid "The LDAP attribute to use to generate the groups's display name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:36
|
||||||
|
msgid "Base Group Tree"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:36
|
||||||
|
msgid "One Group Base DN per line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:37
|
||||||
|
msgid "Group Search Attributes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:38
|
||||||
|
msgid "Group-Member association"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:40
|
||||||
|
msgid "Special Attributes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:42
|
||||||
|
msgid "Quota Field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:43
|
||||||
|
msgid "Quota Default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:43
|
||||||
|
msgid "in bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:44
|
||||||
|
msgid "Email Field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:45
|
||||||
|
msgid "User Home Folder Naming Rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:45
|
||||||
|
msgid ""
|
||||||
|
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
|
||||||
|
"attribute."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:51
|
||||||
|
msgid "Internal Username"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:52
|
||||||
|
msgid ""
|
||||||
|
"By default the internal username will be created from the UUID attribute. It"
|
||||||
|
" makes sure that the username is unique and characters do not need to be "
|
||||||
|
"converted. The internal username has the restriction that only these "
|
||||||
|
"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced "
|
||||||
|
"with their ASCII correspondence or simply omitted. On collisions a number "
|
||||||
|
"will be added/increased. The internal username is used to identify a user "
|
||||||
|
"internally. It is also the default name for the user home folder. It is also"
|
||||||
|
" a part of remote URLs, for instance for all *DAV services. With this "
|
||||||
|
"setting, the default behavior can be overridden. To achieve a similar "
|
||||||
|
"behavior as before ownCloud 5 enter the user display name attribute in the "
|
||||||
|
"following field. Leave it empty for default behavior. Changes will have "
|
||||||
|
"effect only on newly mapped (added) LDAP users."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:53
|
||||||
|
msgid "Internal Username Attribute:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:54
|
||||||
|
msgid "Override UUID detection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:55
|
||||||
|
msgid ""
|
||||||
|
"By default, the UUID attribute is automatically detected. The UUID attribute"
|
||||||
|
" is used to doubtlessly identify LDAP users and groups. Also, the internal "
|
||||||
|
"username will be created based on the UUID, if not specified otherwise "
|
||||||
|
"above. You can override the setting and pass an attribute of your choice. "
|
||||||
|
"You must make sure that the attribute of your choice can be fetched for both"
|
||||||
|
" users and groups and it is unique. Leave it empty for default behavior. "
|
||||||
|
"Changes will have effect only on newly mapped (added) LDAP users and groups."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:56
|
||||||
|
msgid "UUID Attribute for Users:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:57
|
||||||
|
msgid "UUID Attribute for Groups:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:58
|
||||||
|
msgid "Username-LDAP User Mapping"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:59
|
||||||
|
msgid ""
|
||||||
|
"Usernames are used to store and assign (meta) data. In order to precisely "
|
||||||
|
"identify and recognize users, each LDAP user will have a internal username. "
|
||||||
|
"This requires a mapping from username to LDAP user. The created username is "
|
||||||
|
"mapped to the UUID of the LDAP user. Additionally the DN is cached as well "
|
||||||
|
"to reduce LDAP interaction, but it is not used for identification. If the DN"
|
||||||
|
" changes, the changes will be found. The internal username is used all over."
|
||||||
|
" Clearing the mappings will have leftovers everywhere. Clearing the mappings"
|
||||||
|
" is not configuration sensitive, it affects all LDAP configurations! Never "
|
||||||
|
"clear the mappings in a production environment, only in a testing or "
|
||||||
|
"experimental stage."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:60
|
||||||
|
msgid "Clear Username-LDAP User Mapping"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:60
|
||||||
|
msgid "Clear Groupname-LDAP Group Mapping"
|
||||||
|
msgstr ""
|
|
@ -0,0 +1,33 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ownCloud\n"
|
||||||
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
|
"PO-Revision-Date: 2013-12-16 14:34+0000\n"
|
||||||
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
|
"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: templates/settings.php:3
|
||||||
|
msgid "WebDAV Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:4
|
||||||
|
msgid "Address: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/settings.php:7
|
||||||
|
msgid ""
|
||||||
|
"The user credentials will be sent to this address. This plugin checks the "
|
||||||
|
"response and will interpret the HTTP statuscodes 401 and 403 as invalid "
|
||||||
|
"credentials, and all other responses as valid credentials."
|
||||||
|
msgstr ""
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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"
|
"Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-22 09:40+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\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"
|
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -55,15 +55,15 @@ msgstr "Admin"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Ebaõnnestunud uuendus \"%s\"."
|
msgstr "Ebaõnnestunud uuendus \"%s\"."
|
||||||
|
|
||||||
#: private/avatar.php:62
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Tundmatu failitüüp"
|
msgstr "Tundmatu failitüüp"
|
||||||
|
|
||||||
#: private/avatar.php:67
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Vigane pilt"
|
msgstr "Vigane pilt"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "veebitenused sinu kontrolli all"
|
msgstr "veebitenused sinu kontrolli all"
|
||||||
|
|
||||||
|
@ -72,23 +72,23 @@ msgstr "veebitenused sinu kontrolli all"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "ei suuda avada \"%s\""
|
msgstr "ei suuda avada \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP-ina allalaadimine on välja lülitatud."
|
msgstr "ZIP-ina allalaadimine on välja lülitatud."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Failid tuleb alla laadida ükshaaval."
|
msgstr "Failid tuleb alla laadida ükshaaval."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Tagasi failide juurde"
|
msgstr "Tagasi failide juurde"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Valitud failid on ZIP-faili loomiseks liiga suured."
|
msgstr "Valitud failid on ZIP-faili loomiseks liiga suured."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -174,17 +174,17 @@ msgstr "Tekst"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Pildid"
|
msgstr "Pildid"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s sisesta andmebaasi kasutajatunnus."
|
msgstr "%s sisesta andmebaasi kasutajatunnus."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s sisesta andmebaasi nimi."
|
msgstr "%s sisesta andmebaasi nimi."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s punktide kasutamine andmebaasi nimes pole lubatud"
|
msgstr "%s punktide kasutamine andmebaasi nimes pole lubatud"
|
||||||
|
@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "MySQL kasutajatunnus ja/või parool pole õiged"
|
msgstr "MySQL kasutajatunnus ja/või parool pole õiged"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -217,10 +217,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Andmebaasi viga: \"%s\""
|
msgstr "Andmebaasi viga: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -253,7 +253,7 @@ msgstr "Ei suuda luua ühendust Oracle baasiga"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Oracle kasutajatunnus ja/või parool pole õiged"
|
msgstr "Oracle kasutajatunnus ja/või parool pole õiged"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s"
|
msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s"
|
||||||
|
@ -333,7 +333,3 @@ msgstr "viimasel aastal"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "aastat tagasi"
|
msgstr "aastat tagasi"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Põhjustaja:"
|
|
||||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-12-07 22:26-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-12-07 14:50+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: asieriko <asieriko@gmail.com>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
|
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -333,7 +333,3 @@ msgstr "joan den urtean"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "urte"
|
msgstr "urte"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Honek eraginda:"
|
|
||||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
|
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -54,15 +54,15 @@ msgstr "مدیر"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "سرویس های تحت وب در کنترل شما"
|
msgstr "سرویس های تحت وب در کنترل شما"
|
||||||
|
|
||||||
|
@ -71,23 +71,23 @@ msgstr "سرویس های تحت وب در کنترل شما"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "دانلود به صورت فشرده غیر فعال است"
|
msgstr "دانلود به صورت فشرده غیر فعال است"
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "فایل ها باید به صورت یکی یکی دانلود شوند"
|
msgstr "فایل ها باید به صورت یکی یکی دانلود شوند"
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "بازگشت به فایل ها"
|
msgstr "بازگشت به فایل ها"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد"
|
msgstr "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد"
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -173,17 +173,17 @@ msgstr "متن"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "تصاویر"
|
msgstr "تصاویر"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s نام کاربری پایگاه داده را وارد نمایید."
|
msgstr "%s نام کاربری پایگاه داده را وارد نمایید."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s نام پایگاه داده را وارد نمایید."
|
msgstr "%s نام پایگاه داده را وارد نمایید."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید."
|
msgstr "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید."
|
||||||
|
@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "نام کاربری و / یا رمزعبور MySQL معتبر نیست."
|
msgstr "نام کاربری و / یا رمزعبور MySQL معتبر نیست."
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -216,10 +216,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "خطای پایگاه داده: \"%s\""
|
msgstr "خطای پایگاه داده: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -252,7 +252,7 @@ msgstr "ارتباط اراکل نمیتواند برقرار باشد."
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "نام کاربری و / یا رمزعبور اراکل معتبر نیست."
|
msgstr "نام کاربری و / یا رمزعبور اراکل معتبر نیست."
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\""
|
msgstr "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\""
|
||||||
|
@ -328,7 +328,3 @@ msgstr "سال قبل"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "سالهای قبل"
|
msgstr "سالهای قبل"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -8,9 +8,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 16:42-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:50+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
|
||||||
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
|
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -54,15 +54,15 @@ msgstr "Ylläpitäjä"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Kohteen \"%s\" päivitys epäonnistui."
|
msgstr "Kohteen \"%s\" päivitys epäonnistui."
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Tuntematon tiedostotyyppi"
|
msgstr "Tuntematon tiedostotyyppi"
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Virheellinen kuva"
|
msgstr "Virheellinen kuva"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "verkkopalvelut hallinnassasi"
|
msgstr "verkkopalvelut hallinnassasi"
|
||||||
|
|
||||||
|
@ -71,23 +71,23 @@ msgstr "verkkopalvelut hallinnassasi"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP-lataus on poistettu käytöstä."
|
msgstr "ZIP-lataus on poistettu käytöstä."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Tiedostot on ladattava yksittäin."
|
msgstr "Tiedostot on ladattava yksittäin."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Takaisin tiedostoihin"
|
msgstr "Takaisin tiedostoihin"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon."
|
msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -99,7 +99,7 @@ msgstr "Lähdettä ei määritelty sovellusta asennettaessa"
|
||||||
|
|
||||||
#: private/installer.php:70
|
#: private/installer.php:70
|
||||||
msgid "No href specified when installing app from http"
|
msgid "No href specified when installing app from http"
|
||||||
msgstr ""
|
msgstr "Href-määritettä ei asetettu asennettaessa sovellusta http:n yli"
|
||||||
|
|
||||||
#: private/installer.php:75
|
#: private/installer.php:75
|
||||||
msgid "No path specified when installing app from local file"
|
msgid "No path specified when installing app from local file"
|
||||||
|
@ -112,7 +112,7 @@ msgstr "Tyypin %s arkistot eivät ole tuettuja"
|
||||||
|
|
||||||
#: private/installer.php:103
|
#: private/installer.php:103
|
||||||
msgid "Failed to open archive when installing app"
|
msgid "Failed to open archive when installing app"
|
||||||
msgstr ""
|
msgstr "Pakettitiedoston avaaminen epäonnistui sovellusta asennettaessa"
|
||||||
|
|
||||||
#: private/installer.php:125
|
#: private/installer.php:125
|
||||||
msgid "App does not provide an info.xml file"
|
msgid "App does not provide an info.xml file"
|
||||||
|
@ -173,17 +173,17 @@ msgstr "Teksti"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Kuvat"
|
msgstr "Kuvat"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s anna tietokannan käyttäjätunnus."
|
msgstr "%s anna tietokannan käyttäjätunnus."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s anna tietokannan nimi."
|
msgstr "%s anna tietokannan nimi."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s et voi käyttää pisteitä tietokannan nimessä"
|
msgstr "%s et voi käyttää pisteitä tietokannan nimessä"
|
||||||
|
@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "MySQL:n käyttäjätunnus ja/tai salasana on väärin"
|
msgstr "MySQL:n käyttäjätunnus ja/tai salasana on väärin"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -216,10 +216,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Tietokantavirhe: \"%s\""
|
msgstr "Tietokantavirhe: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -252,7 +252,7 @@ msgstr "Oracle-yhteyttä ei voitu muodostaa"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin"
|
msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -332,7 +332,3 @@ msgstr "viime vuonna"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "vuotta sitten"
|
msgstr "vuotta sitten"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Aiheuttaja:"
|
|
||||||
|
|
|
@ -11,9 +11,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-26 10:45-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-26 14:23+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: etiess <etiess@gmail.com>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
|
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -57,11 +57,11 @@ msgstr "Administration"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Echec de la mise à niveau \"%s\"."
|
msgstr "Echec de la mise à niveau \"%s\"."
|
||||||
|
|
||||||
#: private/avatar.php:62
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Type de fichier inconnu"
|
msgstr "Type de fichier inconnu"
|
||||||
|
|
||||||
#: private/avatar.php:67
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Image invalide"
|
msgstr "Image invalide"
|
||||||
|
|
||||||
|
@ -74,23 +74,23 @@ msgstr "services web sous votre contrôle"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "impossible d'ouvrir \"%s\""
|
msgstr "impossible d'ouvrir \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Téléchargement ZIP désactivé."
|
msgstr "Téléchargement ZIP désactivé."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Les fichiers nécessitent d'être téléchargés un par un."
|
msgstr "Les fichiers nécessitent d'être téléchargés un par un."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Retour aux Fichiers"
|
msgstr "Retour aux Fichiers"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés."
|
msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -176,17 +176,17 @@ msgstr "Texte"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Images"
|
msgstr "Images"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s entrez le nom d'utilisateur de la base de données."
|
msgstr "%s entrez le nom d'utilisateur de la base de données."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s entrez le nom de la base de données."
|
msgstr "%s entrez le nom de la base de données."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s vous nez pouvez pas utiliser de points dans le nom de la base de données"
|
msgstr "%s vous nez pouvez pas utiliser de points dans le nom de la base de données"
|
||||||
|
@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Nom d'utilisateur et/ou mot de passe de la base MySQL invalide"
|
msgstr "Nom d'utilisateur et/ou mot de passe de la base MySQL invalide"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -219,10 +219,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Erreur de la base de données : \"%s\""
|
msgstr "Erreur de la base de données : \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -255,7 +255,7 @@ msgstr "La connexion Oracle ne peut pas être établie"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide"
|
msgstr "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s"
|
msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s"
|
||||||
|
@ -335,7 +335,3 @@ msgstr "l'année dernière"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "il y a plusieurs années"
|
msgstr "il y a plusieurs années"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Causé par :"
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-27 12:08-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-26 21:30+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n"
|
"Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -8,9 +8,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-22 07:30+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: mbouzada <mbouzada@gmail.com>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
|
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -54,15 +54,15 @@ msgstr "Administración"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Non foi posíbel anovar «%s»."
|
msgstr "Non foi posíbel anovar «%s»."
|
||||||
|
|
||||||
#: private/avatar.php:62
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Tipo de ficheiro descoñecido"
|
msgstr "Tipo de ficheiro descoñecido"
|
||||||
|
|
||||||
#: private/avatar.php:67
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Imaxe incorrecta"
|
msgstr "Imaxe incorrecta"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "servizos web baixo o seu control"
|
msgstr "servizos web baixo o seu control"
|
||||||
|
|
||||||
|
@ -71,23 +71,23 @@ msgstr "servizos web baixo o seu control"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "non foi posíbel abrir «%s»"
|
msgstr "non foi posíbel abrir «%s»"
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "As descargas ZIP están desactivadas."
|
msgstr "As descargas ZIP están desactivadas."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Os ficheiros necesitan seren descargados dun en un."
|
msgstr "Os ficheiros necesitan seren descargados dun en un."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Volver aos ficheiros"
|
msgstr "Volver aos ficheiros"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip."
|
msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -173,17 +173,17 @@ msgstr "Texto"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Imaxes"
|
msgstr "Imaxes"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s introduza o nome de usuario da base de datos"
|
msgstr "%s introduza o nome de usuario da base de datos"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s introduza o nome da base de datos"
|
msgstr "%s introduza o nome da base de datos"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s non se poden empregar puntos na base de datos"
|
msgstr "%s non se poden empregar puntos na base de datos"
|
||||||
|
@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Nome de usuario e/ou contrasinal de MySQL incorrecto"
|
msgstr "Nome de usuario e/ou contrasinal de MySQL incorrecto"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -216,10 +216,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Produciuse un erro na base de datos: «%s»"
|
msgstr "Produciuse un erro na base de datos: «%s»"
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -252,7 +252,7 @@ msgstr "Non foi posíbel estabelecer a conexión con Oracle"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Nome de usuario e/ou contrasinal de Oracle incorrecto"
|
msgstr "Nome de usuario e/ou contrasinal de Oracle incorrecto"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s"
|
msgstr "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s"
|
||||||
|
@ -332,7 +332,3 @@ msgstr "último ano"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "anos atrás"
|
msgstr "anos atrás"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Causado por:"
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
|
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "מנהל"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "שירותי רשת תחת השליטה שלך"
|
msgstr "שירותי רשת תחת השליטה שלך"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "שירותי רשת תחת השליטה שלך"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "הורדת ZIP כבויה"
|
msgstr "הורדת ZIP כבויה"
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "יש להוריד את הקבצים אחד אחרי השני."
|
msgstr "יש להוריד את הקבצים אחד אחרי השני."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "חזרה לקבצים"
|
msgstr "חזרה לקבצים"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip."
|
msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "טקסט"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "תמונות"
|
msgstr "תמונות"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr "שנה שעברה"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "שנים"
|
msgstr "שנים"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
|
"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
|
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "Administrator"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "web usluge pod vašom kontrolom"
|
msgstr "web usluge pod vašom kontrolom"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "web usluge pod vašom kontrolom"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "Tekst"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -335,7 +335,3 @@ msgstr "prošlu godinu"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "godina"
|
msgstr "godina"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -10,9 +10,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-12-07 22:26-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-12-08 03:26+0000\n"
|
"PO-Revision-Date: 2013-12-14 22:00+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: ebela <bela@dandre.hu>\n"
|
||||||
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
|
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -151,59 +151,59 @@ msgstr "november"
|
||||||
msgid "December"
|
msgid "December"
|
||||||
msgstr "december"
|
msgstr "december"
|
||||||
|
|
||||||
#: js/js.js:387
|
#: js/js.js:394
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Beállítások"
|
msgstr "Beállítások"
|
||||||
|
|
||||||
#: js/js.js:858
|
#: js/js.js:865
|
||||||
msgid "seconds ago"
|
msgid "seconds ago"
|
||||||
msgstr "pár másodperce"
|
msgstr "pár másodperce"
|
||||||
|
|
||||||
#: js/js.js:859
|
#: js/js.js:866
|
||||||
msgid "%n minute ago"
|
msgid "%n minute ago"
|
||||||
msgid_plural "%n minutes ago"
|
msgid_plural "%n minutes ago"
|
||||||
msgstr[0] "%n perccel ezelőtt"
|
msgstr[0] "%n perccel ezelőtt"
|
||||||
msgstr[1] "%n perccel ezelőtt"
|
msgstr[1] "%n perccel ezelőtt"
|
||||||
|
|
||||||
#: js/js.js:860
|
#: js/js.js:867
|
||||||
msgid "%n hour ago"
|
msgid "%n hour ago"
|
||||||
msgid_plural "%n hours ago"
|
msgid_plural "%n hours ago"
|
||||||
msgstr[0] "%n órával ezelőtt"
|
msgstr[0] "%n órával ezelőtt"
|
||||||
msgstr[1] "%n órával ezelőtt"
|
msgstr[1] "%n órával ezelőtt"
|
||||||
|
|
||||||
#: js/js.js:861
|
#: js/js.js:868
|
||||||
msgid "today"
|
msgid "today"
|
||||||
msgstr "ma"
|
msgstr "ma"
|
||||||
|
|
||||||
#: js/js.js:862
|
#: js/js.js:869
|
||||||
msgid "yesterday"
|
msgid "yesterday"
|
||||||
msgstr "tegnap"
|
msgstr "tegnap"
|
||||||
|
|
||||||
#: js/js.js:863
|
#: js/js.js:870
|
||||||
msgid "%n day ago"
|
msgid "%n day ago"
|
||||||
msgid_plural "%n days ago"
|
msgid_plural "%n days ago"
|
||||||
msgstr[0] "%n nappal ezelőtt"
|
msgstr[0] "%n nappal ezelőtt"
|
||||||
msgstr[1] "%n nappal ezelőtt"
|
msgstr[1] "%n nappal ezelőtt"
|
||||||
|
|
||||||
#: js/js.js:864
|
#: js/js.js:871
|
||||||
msgid "last month"
|
msgid "last month"
|
||||||
msgstr "múlt hónapban"
|
msgstr "múlt hónapban"
|
||||||
|
|
||||||
#: js/js.js:865
|
#: js/js.js:872
|
||||||
msgid "%n month ago"
|
msgid "%n month ago"
|
||||||
msgid_plural "%n months ago"
|
msgid_plural "%n months ago"
|
||||||
msgstr[0] "%n hónappal ezelőtt"
|
msgstr[0] "%n hónappal ezelőtt"
|
||||||
msgstr[1] "%n hónappal ezelőtt"
|
msgstr[1] "%n hónappal ezelőtt"
|
||||||
|
|
||||||
#: js/js.js:866
|
#: js/js.js:873
|
||||||
msgid "months ago"
|
msgid "months ago"
|
||||||
msgstr "több hónapja"
|
msgstr "több hónapja"
|
||||||
|
|
||||||
#: js/js.js:867
|
#: js/js.js:874
|
||||||
msgid "last year"
|
msgid "last year"
|
||||||
msgstr "tavaly"
|
msgstr "tavaly"
|
||||||
|
|
||||||
#: js/js.js:868
|
#: js/js.js:875
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "több éve"
|
msgstr "több éve"
|
||||||
|
|
||||||
|
@ -446,7 +446,7 @@ msgstr "Nincs törlésre kijelölt címke."
|
||||||
|
|
||||||
#: js/update.js:8
|
#: js/update.js:8
|
||||||
msgid "Please reload the page."
|
msgid "Please reload the page."
|
||||||
msgstr ""
|
msgstr "Kérlek tölts be újra az oldalt"
|
||||||
|
|
||||||
#: js/update.js:17
|
#: js/update.js:17
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -589,7 +589,7 @@ msgstr "Szia!\\n\n\\n\nÉrtesítünk, hogy %s megosztotta veled a következőt:
|
||||||
#: templates/altmail.php:4 templates/mail.php:17
|
#: templates/altmail.php:4 templates/mail.php:17
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "The share will expire on %s."
|
msgid "The share will expire on %s."
|
||||||
msgstr ""
|
msgstr "A megosztás lejár ekkor %s"
|
||||||
|
|
||||||
#: templates/altmail.php:7 templates/mail.php:20
|
#: templates/altmail.php:7 templates/mail.php:20
|
||||||
msgid "Cheers!"
|
msgid "Cheers!"
|
||||||
|
@ -689,7 +689,7 @@ msgid ""
|
||||||
"This application requires JavaScript to be enabled for correct operation. "
|
"This application requires JavaScript to be enabled for correct operation. "
|
||||||
"Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable "
|
"Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable "
|
||||||
"JavaScript</a> and re-load this interface."
|
"JavaScript</a> and re-load this interface."
|
||||||
msgstr ""
|
msgstr "Az alkalmazás megfelelő működéséhez szükség van JavaScript-re. <a href=\"http://enable-javascript.com/\" target=\"_blank\">Engedélyezd a JavaScript-et</a> és töltsd újra az interfészt."
|
||||||
|
|
||||||
#: templates/layout.user.php:44
|
#: templates/layout.user.php:44
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -747,11 +747,11 @@ msgstr "Szia!<br><br>Értesítünk, hogy %s megosztotta veled a következőt: »
|
||||||
|
|
||||||
#: templates/singleuser.user.php:3
|
#: templates/singleuser.user.php:3
|
||||||
msgid "This ownCloud instance is currently in single user mode."
|
msgid "This ownCloud instance is currently in single user mode."
|
||||||
msgstr ""
|
msgstr "Az Owncloud frissítés elezdődött egy felhasználós módban."
|
||||||
|
|
||||||
#: templates/singleuser.user.php:4
|
#: templates/singleuser.user.php:4
|
||||||
msgid "This means only administrators can use the instance."
|
msgid "This means only administrators can use the instance."
|
||||||
msgstr ""
|
msgstr "Ez azt jelenti, hogy csak az adminisztrátor használhatja ezt a példányt"
|
||||||
|
|
||||||
#: templates/singleuser.user.php:5 templates/update.user.php:5
|
#: templates/singleuser.user.php:5 templates/update.user.php:5
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -3,14 +3,15 @@
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
|
# ebela <bela@dandre.hu>, 2013
|
||||||
# Laszlo Tornoci <torlasz@gmail.com>, 2013
|
# Laszlo Tornoci <torlasz@gmail.com>, 2013
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-12-11 13:31-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-12-09 12:00+0000\n"
|
"PO-Revision-Date: 2013-12-15 10:40+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: ebela <bela@dandre.hu>\n"
|
||||||
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
|
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -202,7 +203,7 @@ msgstr "visszavonás"
|
||||||
|
|
||||||
#: js/filelist.js:591
|
#: js/filelist.js:591
|
||||||
msgid "Error deleting file."
|
msgid "Error deleting file."
|
||||||
msgstr ""
|
msgstr "Hiba a file törlése közben."
|
||||||
|
|
||||||
#: js/filelist.js:609 js/filelist.js:683 js/files.js:631
|
#: js/filelist.js:609 js/filelist.js:683 js/files.js:631
|
||||||
msgid "%n folder"
|
msgid "%n folder"
|
||||||
|
@ -340,7 +341,7 @@ msgstr "Új"
|
||||||
|
|
||||||
#: templates/index.php:8
|
#: templates/index.php:8
|
||||||
msgid "New text file"
|
msgid "New text file"
|
||||||
msgstr ""
|
msgstr "Új szöveges file"
|
||||||
|
|
||||||
#: templates/index.php:8
|
#: templates/index.php:8
|
||||||
msgid "Text file"
|
msgid "Text file"
|
||||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-12-09 06:39-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-12-08 22:10+0000\n"
|
"PO-Revision-Date: 2013-12-14 22:00+0000\n"
|
||||||
"Last-Translator: ebela <bela@dandre.hu>\n"
|
"Last-Translator: ebela <bela@dandre.hu>\n"
|
||||||
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
|
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -200,4 +200,4 @@ msgstr "File helyreállítási beállításai frissültek"
|
||||||
|
|
||||||
#: templates/settings-personal.php:61
|
#: templates/settings-personal.php:61
|
||||||
msgid "Could not update file recovery"
|
msgid "Could not update file recovery"
|
||||||
msgstr ""
|
msgstr "A file helyreállítás nem frissíthető"
|
||||||
|
|
|
@ -10,8 +10,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
|
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -56,15 +56,15 @@ msgstr "Adminsztráció"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Sikertelen Frissítés \"%s\"."
|
msgstr "Sikertelen Frissítés \"%s\"."
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Ismeretlen file tipús"
|
msgstr "Ismeretlen file tipús"
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Hibás kép"
|
msgstr "Hibás kép"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "webszolgáltatások saját kézben"
|
msgstr "webszolgáltatások saját kézben"
|
||||||
|
|
||||||
|
@ -73,27 +73,27 @@ msgstr "webszolgáltatások saját kézben"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "nem sikerült megnyitni \"%s\""
|
msgstr "nem sikerült megnyitni \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "A ZIP-letöltés nincs engedélyezve."
|
msgstr "A ZIP-letöltés nincs engedélyezve."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "A fájlokat egyenként kell letölteni."
|
msgstr "A fájlokat egyenként kell letölteni."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Vissza a Fájlokhoz"
|
msgstr "Vissza a Fájlokhoz"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez."
|
msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
msgstr ""
|
msgstr "A file-t kisebb részekben töltsd le vagy beszélj az adminisztrátorral a megoldás érdekében."
|
||||||
|
|
||||||
#: private/installer.php:63
|
#: private/installer.php:63
|
||||||
msgid "No source specified when installing app"
|
msgid "No source specified when installing app"
|
||||||
|
@ -175,17 +175,17 @@ msgstr "Szöveg"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Képek"
|
msgstr "Képek"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s adja meg az adatbázist elérő felhasználó login nevét."
|
msgstr "%s adja meg az adatbázist elérő felhasználó login nevét."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s adja meg az adatbázis nevét."
|
msgstr "%s adja meg az adatbázis nevét."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s az adatbázis neve nem tartalmazhat pontot"
|
msgstr "%s az adatbázis neve nem tartalmazhat pontot"
|
||||||
|
@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "A MySQL felhasználói név és/vagy jelszó érvénytelen"
|
msgstr "A MySQL felhasználói név és/vagy jelszó érvénytelen"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -218,10 +218,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Adatbázis hiba: \"%s\""
|
msgstr "Adatbázis hiba: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -254,7 +254,7 @@ msgstr "Az Oracle kapcsolat nem hozható létre"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Az Oracle felhasználói név és/vagy jelszó érvénytelen"
|
msgstr "Az Oracle felhasználói név és/vagy jelszó érvénytelen"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s"
|
msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s"
|
||||||
|
@ -334,7 +334,3 @@ msgstr "tavaly"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "több éve"
|
msgstr "több éve"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Okozta:"
|
|
||||||
|
|
|
@ -11,9 +11,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-12-09 06:39-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-12-08 21:50+0000\n"
|
"PO-Revision-Date: 2013-12-15 16:40+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: ebela <bela@dandre.hu>\n"
|
||||||
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
|
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -251,7 +251,7 @@ msgstr "Biztonsági figyelmeztetés"
|
||||||
msgid ""
|
msgid ""
|
||||||
"You are accessing %s via HTTP. We strongly suggest you configure your server"
|
"You are accessing %s via HTTP. We strongly suggest you configure your server"
|
||||||
" to require using HTTPS instead."
|
" to require using HTTPS instead."
|
||||||
msgstr ""
|
msgstr "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni."
|
||||||
|
|
||||||
#: templates/admin.php:39
|
#: templates/admin.php:39
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -289,14 +289,14 @@ msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a te
|
||||||
|
|
||||||
#: templates/admin.php:79
|
#: templates/admin.php:79
|
||||||
msgid "Your PHP version is outdated"
|
msgid "Your PHP version is outdated"
|
||||||
msgstr ""
|
msgstr "A PHP verzió túl régi"
|
||||||
|
|
||||||
#: templates/admin.php:82
|
#: templates/admin.php:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or "
|
"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or "
|
||||||
"newer because older versions are known to be broken. It is possible that "
|
"newer because older versions are known to be broken. It is possible that "
|
||||||
"this installation is not working correctly."
|
"this installation is not working correctly."
|
||||||
msgstr ""
|
msgstr "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően."
|
||||||
|
|
||||||
#: templates/admin.php:93
|
#: templates/admin.php:93
|
||||||
msgid "Locale not working"
|
msgid "Locale not working"
|
||||||
|
@ -304,20 +304,20 @@ msgstr "A nyelvi lokalizáció nem működik"
|
||||||
|
|
||||||
#: templates/admin.php:98
|
#: templates/admin.php:98
|
||||||
msgid "System locale can not be set to a one which supports UTF-8."
|
msgid "System locale can not be set to a one which supports UTF-8."
|
||||||
msgstr ""
|
msgstr "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at."
|
||||||
|
|
||||||
#: templates/admin.php:102
|
#: templates/admin.php:102
|
||||||
msgid ""
|
msgid ""
|
||||||
"This means that there might be problems with certain characters in file "
|
"This means that there might be problems with certain characters in file "
|
||||||
"names."
|
"names."
|
||||||
msgstr ""
|
msgstr "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben."
|
||||||
|
|
||||||
#: templates/admin.php:106
|
#: templates/admin.php:106
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"We strongly suggest to install the required packages on your system to "
|
"We strongly suggest to install the required packages on your system to "
|
||||||
"support one of the following locales: %s."
|
"support one of the following locales: %s."
|
||||||
msgstr ""
|
msgstr "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s"
|
||||||
|
|
||||||
#: templates/admin.php:118
|
#: templates/admin.php:118
|
||||||
msgid "Internet connection not working"
|
msgid "Internet connection not working"
|
||||||
|
@ -572,7 +572,7 @@ msgstr "Egyaránt png vagy jpg. Az ideális ha négyzet alaku, de késöbb még
|
||||||
|
|
||||||
#: templates/personal.php:97
|
#: templates/personal.php:97
|
||||||
msgid "Your avatar is provided by your original account."
|
msgid "Your avatar is provided by your original account."
|
||||||
msgstr ""
|
msgstr "Az avatarod az eredeti fiókod alapján van beállítva."
|
||||||
|
|
||||||
#: templates/personal.php:101
|
#: templates/personal.php:101
|
||||||
msgid "Abort"
|
msgid "Abort"
|
||||||
|
@ -607,7 +607,7 @@ msgstr "Titkosítás"
|
||||||
|
|
||||||
#: templates/personal.php:152
|
#: templates/personal.php:152
|
||||||
msgid "The encryption app is no longer enabled, please decrypt all your files"
|
msgid "The encryption app is no longer enabled, please decrypt all your files"
|
||||||
msgstr ""
|
msgstr "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak."
|
||||||
|
|
||||||
#: templates/personal.php:158
|
#: templates/personal.php:158
|
||||||
msgid "Log-in password"
|
msgid "Log-in password"
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
|
"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
|
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "Administration"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "servicios web sub tu controlo"
|
msgstr "servicios web sub tu controlo"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "servicios web sub tu controlo"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "Texto"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
|
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "Admin"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "layanan web dalam kontrol Anda"
|
msgstr "layanan web dalam kontrol Anda"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "layanan web dalam kontrol Anda"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Pengunduhan ZIP dimatikan."
|
msgstr "Pengunduhan ZIP dimatikan."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Berkas harus diunduh satu persatu."
|
msgstr "Berkas harus diunduh satu persatu."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Kembali ke Daftar Berkas"
|
msgstr "Kembali ke Daftar Berkas"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya."
|
msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "Teks"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Gambar"
|
msgstr "Gambar"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s masukkan nama pengguna basis data."
|
msgstr "%s masukkan nama pengguna basis data."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s masukkan nama basis data."
|
msgstr "%s masukkan nama basis data."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%sAnda tidak boleh menggunakan karakter titik pada nama basis data"
|
msgstr "%sAnda tidak boleh menggunakan karakter titik pada nama basis data"
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Nama pengguna dan/atau sandi MySQL tidak valid"
|
msgstr "Nama pengguna dan/atau sandi MySQL tidak valid"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Galat Basis Data: \"%s\""
|
msgstr "Galat Basis Data: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Nama pengguna dan/atau sandi Oracle tidak valid"
|
msgstr "Nama pengguna dan/atau sandi Oracle tidak valid"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s"
|
msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s"
|
||||||
|
@ -327,7 +327,3 @@ msgstr "tahun kemarin"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "beberapa tahun lalu"
|
msgstr "beberapa tahun lalu"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
|
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "Stjórnun"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "vefþjónusta undir þinni stjórn"
|
msgstr "vefþjónusta undir þinni stjórn"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "vefþjónusta undir þinni stjórn"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Slökkt á ZIP niðurhali."
|
msgstr "Slökkt á ZIP niðurhali."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Skrárnar verður að sækja eina og eina"
|
msgstr "Skrárnar verður að sækja eina og eina"
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Aftur í skrár"
|
msgstr "Aftur í skrár"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá."
|
msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "Texti"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Myndir"
|
msgstr "Myndir"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr "síðasta ári"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "einhverjum árum"
|
msgstr "einhverjum árum"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -10,9 +10,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-24 00:13-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-22 21:10+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
|
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -56,15 +56,15 @@ msgstr "Admin"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Aggiornamento non riuscito \"%s\"."
|
msgstr "Aggiornamento non riuscito \"%s\"."
|
||||||
|
|
||||||
#: private/avatar.php:62
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Tipo di file sconosciuto"
|
msgstr "Tipo di file sconosciuto"
|
||||||
|
|
||||||
#: private/avatar.php:67
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Immagine non valida"
|
msgstr "Immagine non valida"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "servizi web nelle tue mani"
|
msgstr "servizi web nelle tue mani"
|
||||||
|
|
||||||
|
@ -73,23 +73,23 @@ msgstr "servizi web nelle tue mani"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "impossibile aprire \"%s\""
|
msgstr "impossibile aprire \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Lo scaricamento in formato ZIP è stato disabilitato."
|
msgstr "Lo scaricamento in formato ZIP è stato disabilitato."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "I file devono essere scaricati uno alla volta."
|
msgstr "I file devono essere scaricati uno alla volta."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Torna ai file"
|
msgstr "Torna ai file"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "I file selezionati sono troppo grandi per generare un file zip."
|
msgstr "I file selezionati sono troppo grandi per generare un file zip."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -175,17 +175,17 @@ msgstr "Testo"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Immagini"
|
msgstr "Immagini"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s digita il nome utente del database."
|
msgstr "%s digita il nome utente del database."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s digita il nome del database."
|
msgstr "%s digita il nome del database."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s non dovresti utilizzare punti nel nome del database"
|
msgstr "%s non dovresti utilizzare punti nel nome del database"
|
||||||
|
@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Nome utente e/o password di MySQL non validi"
|
msgstr "Nome utente e/o password di MySQL non validi"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -218,10 +218,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "Errore DB: \"%s\""
|
msgstr "Errore DB: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -254,7 +254,7 @@ msgstr "La connessione a Oracle non può essere stabilita"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Nome utente e/o password di Oracle non validi"
|
msgstr "Nome utente e/o password di Oracle non validi"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s"
|
msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s"
|
||||||
|
@ -334,7 +334,3 @@ msgstr "anno scorso"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "anni fa"
|
msgstr "anni fa"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Causato da:"
|
|
||||||
|
|
|
@ -11,9 +11,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-29 14:08-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-29 11:30+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
|
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -74,23 +74,23 @@ msgstr "管理下のウェブサービス"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "\"%s\" が開けません"
|
msgstr "\"%s\" が開けません"
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIPダウンロードは無効です。"
|
msgstr "ZIPダウンロードは無効です。"
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "ファイルは1つずつダウンロードする必要があります。"
|
msgstr "ファイルは1つずつダウンロードする必要があります。"
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "ファイルに戻る"
|
msgstr "ファイルに戻る"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "選択したファイルはZIPファイルの生成には大きすぎます。"
|
msgstr "選択したファイルはZIPファイルの生成には大きすぎます。"
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -176,17 +176,17 @@ msgstr "TTY TDD"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "画像"
|
msgstr "画像"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s のデータベースのユーザ名を入力してください。"
|
msgstr "%s のデータベースのユーザ名を入力してください。"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s のデータベース名を入力してください。"
|
msgstr "%s のデータベース名を入力してください。"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s ではデータベース名にドットを利用できないかもしれません。"
|
msgstr "%s ではデータベース名にドットを利用できないかもしれません。"
|
||||||
|
@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "MySQLのユーザ名もしくはパスワードは有効ではありません"
|
msgstr "MySQLのユーザ名もしくはパスワードは有効ではありません"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -219,10 +219,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "DBエラー: \"%s\""
|
msgstr "DBエラー: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -255,7 +255,7 @@ msgstr "Oracleへの接続が確立できませんでした。"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Oracleのユーザ名もしくはパスワードは有効ではありません"
|
msgstr "Oracleのユーザ名もしくはパスワードは有効ではありません"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s"
|
msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s"
|
||||||
|
@ -331,7 +331,3 @@ msgstr "一年前"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "年前"
|
msgstr "年前"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "原因:"
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n"
|
"Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "ადმინისტრატორი"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP გადმოწერა გამორთულია"
|
msgstr "ZIP გადმოწერა გამორთულია"
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -327,7 +327,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n"
|
"Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "ადმინისტრატორი"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "web services under your control"
|
msgstr "web services under your control"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "web services under your control"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP download–ი გათიშულია"
|
msgstr "ZIP download–ი გათიშულია"
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ."
|
msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "უკან ფაილებში"
|
msgstr "უკან ფაილებში"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის."
|
msgstr "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "ტექსტი"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "სურათები"
|
msgstr "სურათები"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s შეიყვანეთ ბაზის იუზერნეიმი."
|
msgstr "%s შეიყვანეთ ბაზის იუზერნეიმი."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s შეიყვანეთ ბაზის სახელი."
|
msgstr "%s შეიყვანეთ ბაზის სახელი."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s არ მიუთითოთ წერტილი ბაზის სახელში"
|
msgstr "%s არ მიუთითოთ წერტილი ბაზის სახელში"
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი"
|
msgstr "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "DB შეცდომა: \"%s\""
|
msgstr "DB შეცდომა: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი"
|
msgstr "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s"
|
msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s"
|
||||||
|
@ -327,7 +327,3 @@ msgstr "ბოლო წელს"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "წლის წინ"
|
msgstr "წლის წინ"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n"
|
"Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -327,7 +327,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n"
|
"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -327,7 +327,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-12-02 17:27-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-12-01 02:20+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
|
"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -72,23 +72,23 @@ msgstr "내가 관리하는 웹 서비스"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "\"%s\"을(를) 열 수 없습니다."
|
msgstr "\"%s\"을(를) 열 수 없습니다."
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP 다운로드가 비활성화되었습니다."
|
msgstr "ZIP 다운로드가 비활성화되었습니다."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "파일을 개별적으로 다운로드해야 합니다."
|
msgstr "파일을 개별적으로 다운로드해야 합니다."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "파일로 돌아가기"
|
msgstr "파일로 돌아가기"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다."
|
msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -174,17 +174,17 @@ msgstr "텍스트"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "그림"
|
msgstr "그림"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "데이터베이스 사용자 명을 %s 에 입력해주십시오"
|
msgstr "데이터베이스 사용자 명을 %s 에 입력해주십시오"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "데이터베이스 명을 %s 에 입력해주십시오"
|
msgstr "데이터베이스 명을 %s 에 입력해주십시오"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없습니다"
|
msgstr "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없습니다"
|
||||||
|
@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "MySQL 사용자 이름이나 암호가 잘못되었습니다."
|
msgstr "MySQL 사용자 이름이나 암호가 잘못되었습니다."
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -217,10 +217,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "DB 오류: \"%s\""
|
msgstr "DB 오류: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -253,7 +253,7 @@ msgstr "Oracle 연결을 수립할 수 없습니다."
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Oracle 사용자 이름이나 암호가 잘못되었습니다."
|
msgstr "Oracle 사용자 이름이나 암호가 잘못되었습니다."
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "잘못된 명령: \"%s\", 이름: %s, 암호: %s"
|
msgstr "잘못된 명령: \"%s\", 이름: %s, 암호: %s"
|
||||||
|
@ -329,7 +329,3 @@ msgstr "작년"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "년 전"
|
msgstr "년 전"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "원인: "
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n"
|
"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "بهڕێوهبهری سهرهكی"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "ڕاژهی وێب لهژێر چاودێریت دایه"
|
msgstr "ڕاژهی وێب لهژێر چاودێریت دایه"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "ڕاژهی وێب لهژێر چاودێریت دایه"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
|
"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -54,15 +54,15 @@ msgstr "Admin"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Onbekannten Fichier Typ"
|
msgstr "Onbekannten Fichier Typ"
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Ongülteg d'Bild"
|
msgstr "Ongülteg d'Bild"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "Web-Servicer ënnert denger Kontroll"
|
msgstr "Web-Servicer ënnert denger Kontroll"
|
||||||
|
|
||||||
|
@ -71,23 +71,23 @@ msgstr "Web-Servicer ënnert denger Kontroll"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -173,17 +173,17 @@ msgstr "SMS"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -216,10 +216,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -252,7 +252,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -332,7 +332,3 @@ msgstr "Läscht Joer"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "Joren hier"
|
msgstr "Joren hier"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -11,9 +11,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-27 12:08-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-27 11:10+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: Liudas Ališauskas <liudas.alisauskas@gmail.com>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
|
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -74,23 +74,23 @@ msgstr "jūsų valdomos web paslaugos"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "nepavyksta atverti „%s“"
|
msgstr "nepavyksta atverti „%s“"
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP atsisiuntimo galimybė yra išjungta."
|
msgstr "ZIP atsisiuntimo galimybė yra išjungta."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Failai turi būti parsiunčiami vienas po kito."
|
msgstr "Failai turi būti parsiunčiami vienas po kito."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Atgal į Failus"
|
msgstr "Atgal į Failus"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Pasirinkti failai per dideli archyvavimui į ZIP."
|
msgstr "Pasirinkti failai per dideli archyvavimui į ZIP."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -176,17 +176,17 @@ msgstr "Žinučių"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Paveikslėliai"
|
msgstr "Paveikslėliai"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s įrašykite duombazės naudotojo vardą."
|
msgstr "%s įrašykite duombazės naudotojo vardą."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s įrašykite duombazės pavadinimą."
|
msgstr "%s įrašykite duombazės pavadinimą."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s negalite naudoti taškų duombazės pavadinime"
|
msgstr "%s negalite naudoti taškų duombazės pavadinime"
|
||||||
|
@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Neteisingas MySQL naudotojo vardas ir/arba slaptažodis"
|
msgstr "Neteisingas MySQL naudotojo vardas ir/arba slaptažodis"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -219,10 +219,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "DB klaida: \"%s\""
|
msgstr "DB klaida: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -255,7 +255,7 @@ msgstr "Nepavyko sukurti Oracle ryšio"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Neteisingas Oracle naudotojo vardas ir/arba slaptažodis"
|
msgstr "Neteisingas Oracle naudotojo vardas ir/arba slaptažodis"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Vykdyta komanda buvo: \"%s\", name: %s, password: %s"
|
msgstr "Vykdyta komanda buvo: \"%s\", name: %s, password: %s"
|
||||||
|
@ -339,7 +339,3 @@ msgstr "praeitais metais"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "prieš metus"
|
msgstr "prieš metus"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Iššaukė:"
|
|
||||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
|
"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -54,15 +54,15 @@ msgstr "Administratori"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr "Kļūda atjauninot \"%s\""
|
msgstr "Kļūda atjauninot \"%s\""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "tīmekļa servisi tavā varā"
|
msgstr "tīmekļa servisi tavā varā"
|
||||||
|
|
||||||
|
@ -71,23 +71,23 @@ msgstr "tīmekļa servisi tavā varā"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "Nevar atvērt \"%s\""
|
msgstr "Nevar atvērt \"%s\""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP lejupielādēšana ir izslēgta."
|
msgstr "ZIP lejupielādēšana ir izslēgta."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Datnes var lejupielādēt tikai katru atsevišķi."
|
msgstr "Datnes var lejupielādēt tikai katru atsevišķi."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Atpakaļ pie datnēm"
|
msgstr "Atpakaļ pie datnēm"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni."
|
msgstr "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -173,17 +173,17 @@ msgstr "Teksts"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Attēli"
|
msgstr "Attēli"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s ievadiet datubāzes lietotājvārdu."
|
msgstr "%s ievadiet datubāzes lietotājvārdu."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s ievadiet datubāzes nosaukumu."
|
msgstr "%s ievadiet datubāzes nosaukumu."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s datubāžu nosaukumos nedrīkst izmantot punktus"
|
msgstr "%s datubāžu nosaukumos nedrīkst izmantot punktus"
|
||||||
|
@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "Nav derīga MySQL parole un/vai lietotājvārds"
|
msgstr "Nav derīga MySQL parole un/vai lietotājvārds"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -216,10 +216,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "DB kļūda — “%s”"
|
msgstr "DB kļūda — “%s”"
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -252,7 +252,7 @@ msgstr "Nevar izveidot savienojumu ar Oracle"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Nav derīga Oracle parole un/vai lietotājvārds"
|
msgstr "Nav derīga Oracle parole un/vai lietotājvārds"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s"
|
msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s"
|
||||||
|
@ -336,7 +336,3 @@ msgstr "gājušajā gadā"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "gadus atpakaļ"
|
msgstr "gadus atpakaļ"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Cēlonis:"
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
|
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "Админ"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Непознат тип на датотека"
|
msgstr "Непознат тип на датотека"
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Невалидна фотографија"
|
msgstr "Невалидна фотографија"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "веб сервиси под Ваша контрола"
|
msgstr "веб сервиси под Ваша контрола"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "веб сервиси под Ваша контрола"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Преземање во ZIP е исклучено"
|
msgstr "Преземање во ZIP е исклучено"
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Датотеките треба да се симнат една по една."
|
msgstr "Датотеките треба да се симнат една по една."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Назад кон датотеки"
|
msgstr "Назад кон датотеки"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "Избраните датотеки се преголеми за да се генерира zip."
|
msgstr "Избраните датотеки се преголеми за да се генерира zip."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "Текст"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Слики"
|
msgstr "Слики"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr "минатата година"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "пред години"
|
msgstr "пред години"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n"
|
"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
|
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "Admin"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "Perkhidmatan web di bawah kawalan anda"
|
msgstr "Perkhidmatan web di bawah kawalan anda"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "Perkhidmatan web di bawah kawalan anda"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "Teks"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -327,7 +327,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n"
|
"Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "အက်ဒမင်"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services"
|
msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တ
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်"
|
msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်"
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်"
|
msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်"
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "ဖိုင်သို့ပြန်သွားမည်"
|
msgstr "ဖိုင်သို့ပြန်သွားမည်"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "zip ဖိုင်အဖြစ်ပြုလုပ်ရန် ရွေးချယ်ထားသောဖိုင်များသည် အရမ်းကြီးလွန်းသည်"
|
msgstr "zip ဖိုင်အဖြစ်ပြုလုပ်ရန် ရွေးချယ်ထားသောဖိုင်များသည် အရမ်းကြီးလွန်းသည်"
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "စာသား"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "ပုံရိပ်များ"
|
msgstr "ပုံရိပ်များ"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -327,7 +327,3 @@ msgstr "မနှစ်က"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "နှစ် အရင်က"
|
msgstr "နှစ် အရင်က"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n"
|
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "Admin"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "web tjenester du kontrollerer"
|
msgstr "web tjenester du kontrollerer"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "web tjenester du kontrollerer"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP-nedlasting av avslått"
|
msgstr "ZIP-nedlasting av avslått"
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Filene må lastes ned en om gangen"
|
msgstr "Filene må lastes ned en om gangen"
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Tilbake til filer"
|
msgstr "Tilbake til filer"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "De valgte filene er for store til å kunne generere ZIP-fil"
|
msgstr "De valgte filene er for store til å kunne generere ZIP-fil"
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr "Tekst"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Bilder"
|
msgstr "Bilder"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr "forrige år"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "år siden"
|
msgstr "år siden"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n"
|
"Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n"
|
"Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -10,9 +10,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-12-02 17:27-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-30 19:10+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: André Koot <meneer@tken.net>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n"
|
"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -73,23 +73,23 @@ msgstr "Webdiensten in eigen beheer"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr "Kon \"%s\" niet openen"
|
msgstr "Kon \"%s\" niet openen"
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "ZIP download is uitgeschakeld."
|
msgstr "ZIP download is uitgeschakeld."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Bestanden moeten één voor één worden gedownload."
|
msgstr "Bestanden moeten één voor één worden gedownload."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Terug naar bestanden"
|
msgstr "Terug naar bestanden"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken."
|
msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken."
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -175,17 +175,17 @@ msgstr "Tekst"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr "Afbeeldingen"
|
msgstr "Afbeeldingen"
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr "%s opgeven database gebruikersnaam."
|
msgstr "%s opgeven database gebruikersnaam."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr "%s opgeven databasenaam."
|
msgstr "%s opgeven databasenaam."
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr "%s er mogen geen puntjes in de databasenaam voorkomen"
|
msgstr "%s er mogen geen puntjes in de databasenaam voorkomen"
|
||||||
|
@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr "MySQL gebruikersnaam en/of wachtwoord ongeldig"
|
msgstr "MySQL gebruikersnaam en/of wachtwoord ongeldig"
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -218,10 +218,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr "DB Fout: \"%s\""
|
msgstr "DB Fout: \"%s\""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -254,7 +254,7 @@ msgstr "Er kon geen verbinding met Oracle worden bereikt"
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr "Oracle gebruikersnaam en/of wachtwoord ongeldig"
|
msgstr "Oracle gebruikersnaam en/of wachtwoord ongeldig"
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s"
|
msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s"
|
||||||
|
@ -334,7 +334,3 @@ msgstr "vorig jaar"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "jaar geleden"
|
msgstr "jaar geleden"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr "Gekomen door:"
|
|
||||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n"
|
"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -55,15 +55,15 @@ msgstr "Administrer"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr "Ukjend filtype"
|
msgstr "Ukjend filtype"
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Ugyldig bilete"
|
msgstr "Ugyldig bilete"
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "Vev tjenester under din kontroll"
|
msgstr "Vev tjenester under din kontroll"
|
||||||
|
|
||||||
|
@ -72,23 +72,23 @@ msgstr "Vev tjenester under din kontroll"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -174,17 +174,17 @@ msgstr "Tekst"
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -217,10 +217,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -253,7 +253,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -333,7 +333,3 @@ msgstr "i fjor"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "år sidan"
|
msgstr "år sidan"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n"
|
"Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -327,7 +327,3 @@ msgstr ""
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n"
|
"Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr "Admin"
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr "Services web jos ton contraròtle"
|
msgstr "Services web jos ton contraròtle"
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr "Services web jos ton contraròtle"
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr "Avalcargar los ZIP es inactiu."
|
msgstr "Avalcargar los ZIP es inactiu."
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr "Los fichièrs devan èsser avalcargats un per un."
|
msgstr "Los fichièrs devan èsser avalcargats un per un."
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr "Torna cap als fichièrs"
|
msgstr "Torna cap als fichièrs"
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr "an passat"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "ans a"
|
msgstr "ans a"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ownCloud\n"
|
"Project-Id-Version: ownCloud\n"
|
||||||
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
|
||||||
"POT-Creation-Date: 2013-11-21 10:01-0500\n"
|
"POT-Creation-Date: 2013-12-17 06:45-0500\n"
|
||||||
"PO-Revision-Date: 2013-11-21 15:01+0000\n"
|
"PO-Revision-Date: 2013-12-17 11:45+0000\n"
|
||||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||||
"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n"
|
"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -53,15 +53,15 @@ msgstr ""
|
||||||
msgid "Failed to upgrade \"%s\"."
|
msgid "Failed to upgrade \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:60
|
#: private/avatar.php:66
|
||||||
msgid "Unknown filetype"
|
msgid "Unknown filetype"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/avatar.php:65
|
#: private/avatar.php:71
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/defaults.php:36
|
#: private/defaults.php:34
|
||||||
msgid "web services under your control"
|
msgid "web services under your control"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -70,23 +70,23 @@ msgstr ""
|
||||||
msgid "cannot open \"%s\""
|
msgid "cannot open \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:228
|
#: private/files.php:231
|
||||||
msgid "ZIP download is turned off."
|
msgid "ZIP download is turned off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:229
|
#: private/files.php:232
|
||||||
msgid "Files need to be downloaded one by one."
|
msgid "Files need to be downloaded one by one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:230 private/files.php:258
|
#: private/files.php:233 private/files.php:261
|
||||||
msgid "Back to Files"
|
msgid "Back to Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:255
|
#: private/files.php:258
|
||||||
msgid "Selected files too large to generate zip file."
|
msgid "Selected files too large to generate zip file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/files.php:256
|
#: private/files.php:259
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please download the files separately in smaller chunks or kindly ask your "
|
"Please download the files separately in smaller chunks or kindly ask your "
|
||||||
"administrator."
|
"administrator."
|
||||||
|
@ -172,17 +172,17 @@ msgstr ""
|
||||||
msgid "Images"
|
msgid "Images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:22
|
#: private/setup/abstractdatabase.php:26
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database username."
|
msgid "%s enter the database username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:25
|
#: private/setup/abstractdatabase.php:29
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s enter the database name."
|
msgid "%s enter the database name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/abstractdatabase.php:28
|
#: private/setup/abstractdatabase.php:32
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s you may not use dots in the database name"
|
msgid "%s you may not use dots in the database name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
#: private/setup/mysql.php:67 private/setup/oci.php:54
|
||||||
#: private/setup/oci.php:121 private/setup/oci.php:147
|
#: private/setup/oci.php:121 private/setup/oci.php:144
|
||||||
#: private/setup/oci.php:154 private/setup/oci.php:165
|
#: private/setup/oci.php:151 private/setup/oci.php:162
|
||||||
#: private/setup/oci.php:172 private/setup/oci.php:181
|
#: private/setup/oci.php:169 private/setup/oci.php:178
|
||||||
#: private/setup/oci.php:189 private/setup/oci.php:198
|
#: private/setup/oci.php:186 private/setup/oci.php:195
|
||||||
#: private/setup/oci.php:204 private/setup/postgresql.php:89
|
#: private/setup/oci.php:201 private/setup/postgresql.php:89
|
||||||
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
|
||||||
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -215,10 +215,10 @@ msgid "DB Error: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
#: private/setup/mysql.php:68 private/setup/oci.php:55
|
||||||
#: private/setup/oci.php:122 private/setup/oci.php:148
|
#: private/setup/oci.php:122 private/setup/oci.php:145
|
||||||
#: private/setup/oci.php:155 private/setup/oci.php:166
|
#: private/setup/oci.php:152 private/setup/oci.php:163
|
||||||
#: private/setup/oci.php:182 private/setup/oci.php:190
|
#: private/setup/oci.php:179 private/setup/oci.php:187
|
||||||
#: private/setup/oci.php:199 private/setup/postgresql.php:90
|
#: private/setup/oci.php:196 private/setup/postgresql.php:90
|
||||||
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
|
||||||
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
msgid "Oracle username and/or password not valid"
|
msgid "Oracle username and/or password not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: private/setup/oci.php:173 private/setup/oci.php:205
|
#: private/setup/oci.php:170 private/setup/oci.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
msgid "Offending command was: \"%s\", name: %s, password: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -331,7 +331,3 @@ msgstr "ਪਿਛਲੇ ਸਾਲ"
|
||||||
#: private/template/functions.php:142
|
#: private/template/functions.php:142
|
||||||
msgid "years ago"
|
msgid "years ago"
|
||||||
msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ"
|
msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ"
|
||||||
|
|
||||||
#: private/template.php:297 public/util.php:108
|
|
||||||
msgid "Caused by:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue