Merge branch 'master' into remove_unused_vars

Conflicts:
	apps/files_encryption/lib/session.php
	apps/files_encryption/lib/util.php
This commit is contained in:
Florin Peter 2013-05-28 11:00:49 +02:00
commit 09b54ccb2b
550 changed files with 2060 additions and 1980 deletions

View File

@ -46,6 +46,7 @@
"{count} folders" => "{count} 個資料夾",
"1 file" => "1 個檔案",
"{count} files" => "{count} 個檔案",
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留",
"Unable to rename file" => "無法重新命名檔案",
"Upload" => "上傳",
"File handling" => "檔案處理",

View File

@ -1,4 +1,16 @@
<?php $TRANSLATIONS = array(
"Recovery key successfully " => "成功還原金鑰",
"Could not " => "無法",
"Password successfully changed." => "成功變更密碼。",
"Could not change the password. Maybe the old password was not correct." => "無法變更密碼,或許是輸入的舊密碼不正確。",
"Saving..." => "儲存中...",
"Encryption" => "加密"
"Encryption" => "加密",
"Enabled" => "已啓用",
"Disabled" => "已停用",
"Change encryption passwords recovery key:" => "變更加密密碼還原金鑰:",
"Change Password" => "變更密碼",
"Enable password recovery by sharing all files with your administrator:" => "與管理員分享所有檔案以啓用密碼還原功能:",
"Enabling this option will allow you to reobtain access to your encrypted files if your password is lost" => "啓用此選項允許您未來遺失密碼時重新取得已加密的檔案",
"File recovery settings updated" => "檔案還原設定已更新",
"Could not update file recovery" => "無法更新檔案還原設定"
);

View File

@ -170,4 +170,20 @@ class Helper {
return $return;
}
/**
* @brief checks if access is public/anonymous user
* @return bool
*/
public static function isPublicAccess() {
if (\OCP\USER::getUser() === false
|| (isset($_GET['service']) && $_GET['service'] == 'files'
&& isset($_GET['t']))
) {
return true;
} else {
return false;
}
}
}

View File

@ -83,18 +83,14 @@ class Session {
}
if (\OCP\USER::getUser() === false
|| (isset($_GET['service']) && $_GET['service'] === 'files'
&& isset($_GET['t']))
) {
if (\OCA\Encryption\Helper::isPublicAccess()) {
// Disable encryption proxy to prevent recursive calls
$proxyStatus = \OC_FileProxy::$enabled;
\OC_FileProxy::$enabled = false;
$encryptedKey = $this->view->file_get_contents(
'/owncloud_private_key/' . $publicShareKeyId . '.private.key');
$privateKey = Crypt::symmetricDecryptFileContent($encryptedKey, '');
$this->setPrivateKey($privateKey);
$encryptedKey = $this->view->file_get_contents( '/owncloud_private_key/' . $publicShareKeyId . '.private.key' );
$privateKey = Crypt::symmetricDecryptFileContent( $encryptedKey, '' );
$this->setPublicSharePrivateKey( $privateKey );
\OC_FileProxy::$enabled = $proxyStatus;
}
@ -104,6 +100,8 @@ class Session {
* @brief Sets user private key to session
* @param string $privateKey
* @return bool
*
* @note this should only be set on login
*/
public function setPrivateKey($privateKey) {
@ -114,27 +112,52 @@ class Session {
}
/**
* @brief Gets user private key from session
* @brief Gets user or public share private key from session
* @returns string $privateKey The user's plaintext private key
*
*/
public function getPrivateKey() {
if (
isset($_SESSION['privateKey'])
&& !empty($_SESSION['privateKey'])
) {
return $_SESSION['privateKey'];
// return the public share private key if this is a public access
if (\OCA\Encryption\Helper::isPublicAccess()) {
return $this->getPublicSharePrivateKey();
} else {
if (isset($_SESSION['privateKey']) && !empty($_SESSION['privateKey'])) {
return $_SESSION['privateKey'];
} else {
return false;
}
}
}
/**
* @brief Sets public user private key to session
* @param string $privateKey
* @return bool
*/
public function setPublicSharePrivateKey($privateKey) {
$_SESSION['publicSharePrivateKey'] = $privateKey;
return true;
}
/**
* @brief Gets public share private key from session
* @returns string $privateKey
*
*/
public function getPublicSharePrivateKey() {
if (isset($_SESSION['publicSharePrivateKey']) && !empty($_SESSION['publicSharePrivateKey'])) {
return $_SESSION['publicSharePrivateKey'];
} else {
return false;
}
}
/**
* @brief Sets user legacy key to session
* @param $legacyKey

View File

@ -127,13 +127,11 @@ class Util {
$this->recoveryKeyId = \OC_Appconfig::getValue('files_encryption', 'recoveryKeyId');
// if we are anonymous/public
if ($this->userId === false
|| (isset($_GET['service']) && $_GET['service'] === 'files' && isset($_GET['t']))
) {
if (\OCA\Encryption\Helper::isPublicAccess()) {
$this->userId = $this->publicShareKeyId;
// only handle for files_sharing app
if ($GLOBALS['app'] === 'files_sharing') {
if (isset($GLOBALS['app']) && $GLOBALS['app'] === 'files_sharing') {
$this->userDir = '/' . $GLOBALS['fileOwner'];
$this->fileFolderName = 'files';
$this->userFilesDir = '/' . $GLOBALS['fileOwner'] . '/'

View File

@ -46,6 +46,7 @@
"years ago" => "幾年前",
"Choose" => "選擇",
"Cancel" => "取消",
"Error loading file picker template" => "載入檔案選擇器樣板發生錯誤",
"Yes" => "",
"No" => "",
"Ok" => "",

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n"
@ -41,19 +41,19 @@ msgstr "Toepassings"
msgid "Admin"
msgstr "Admin"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr ""
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr ""
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr ""
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr ""

View File

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

View File

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

View File

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

View File

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

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@ -27,11 +27,11 @@ msgstr "تعذّر حذف%s بشكل دائم"
msgid "Couldn't restore %s"
msgstr "تعذّر استرجاع %s "
#: js/trash.js:7 js/trash.js:96
#: js/trash.js:7 js/trash.js:97
msgid "perform restore operation"
msgstr "إبدء عملية الإستعادة"
#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139
#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
msgid "Error"
msgstr "خطأ"
@ -39,31 +39,31 @@ msgstr "خطأ"
msgid "delete file permanently"
msgstr "حذف بشكل دائم"
#: js/trash.js:121
#: js/trash.js:123
msgid "Delete permanently"
msgstr "حذف بشكل دائم"
#: js/trash.js:174 templates/index.php:17
#: js/trash.js:176 templates/index.php:17
msgid "Name"
msgstr "اسم"
#: js/trash.js:175 templates/index.php:27
#: js/trash.js:177 templates/index.php:27
msgid "Deleted"
msgstr "تم الحذف"
#: js/trash.js:184
#: js/trash.js:186
msgid "1 folder"
msgstr "مجلد عدد 1"
#: js/trash.js:186
#: js/trash.js:188
msgid "{count} folders"
msgstr "{count} مجلدات"
#: js/trash.js:194
#: js/trash.js:196
msgid "1 file"
msgstr "ملف واحد"
#: js/trash.js:196
#: js/trash.js:198
msgid "{count} files"
msgstr "{count} ملفات"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@ -41,19 +41,19 @@ msgstr "التطبيقات"
msgid "Admin"
msgstr "المدير"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr "تحميل ملفات ZIP متوقف"
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر"
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr "العودة الى الملفات"
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -27,11 +27,11 @@ msgstr "Невъзможно изтриване на %s завинаги"
msgid "Couldn't restore %s"
msgstr "Невъзможно възтановяване на %s"
#: js/trash.js:7 js/trash.js:96
#: js/trash.js:7 js/trash.js:97
msgid "perform restore operation"
msgstr "извършване на действие по възстановяване"
#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139
#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
msgid "Error"
msgstr "Грешка"
@ -39,31 +39,31 @@ msgstr "Грешка"
msgid "delete file permanently"
msgstr "изтриване на файла завинаги"
#: js/trash.js:121
#: js/trash.js:123
msgid "Delete permanently"
msgstr "Изтриване завинаги"
#: js/trash.js:174 templates/index.php:17
#: js/trash.js:176 templates/index.php:17
msgid "Name"
msgstr "Име"
#: js/trash.js:175 templates/index.php:27
#: js/trash.js:177 templates/index.php:27
msgid "Deleted"
msgstr "Изтрито"
#: js/trash.js:184
#: js/trash.js:186
msgid "1 folder"
msgstr "1 папка"
#: js/trash.js:186
#: js/trash.js:188
msgid "{count} folders"
msgstr "{count} папки"
#: js/trash.js:194
#: js/trash.js:196
msgid "1 file"
msgstr "1 файл"
#: js/trash.js:196
#: js/trash.js:198
msgid "{count} files"
msgstr "{count} файла"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -41,19 +41,19 @@ msgstr "Приложения"
msgid "Admin"
msgstr "Админ"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr "Изтеглянето като ZIP е изключено."
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr "Файловете трябва да се изтеглят един по един."
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr "Назад към файловете"
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив."

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@ -27,11 +27,11 @@ msgstr ""
msgid "Couldn't restore %s"
msgstr ""
#: js/trash.js:7 js/trash.js:96
#: js/trash.js:7 js/trash.js:97
msgid "perform restore operation"
msgstr ""
#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139
#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
msgid "Error"
msgstr "সমস্যা"
@ -39,31 +39,31 @@ msgstr "সমস্যা"
msgid "delete file permanently"
msgstr ""
#: js/trash.js:121
#: js/trash.js:123
msgid "Delete permanently"
msgstr ""
#: js/trash.js:174 templates/index.php:17
#: js/trash.js:176 templates/index.php:17
msgid "Name"
msgstr "রাম"
#: js/trash.js:175 templates/index.php:27
#: js/trash.js:177 templates/index.php:27
msgid "Deleted"
msgstr ""
#: js/trash.js:184
#: js/trash.js:186
msgid "1 folder"
msgstr "১টি ফোল্ডার"
#: js/trash.js:186
#: js/trash.js:188
msgid "{count} folders"
msgstr "{count} টি ফোল্ডার"
#: js/trash.js:194
#: js/trash.js:196
msgid "1 file"
msgstr "১টি ফাইল"
#: js/trash.js:196
#: js/trash.js:198
msgid "{count} files"
msgstr "{count} টি ফাইল"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@ -41,19 +41,19 @@ msgstr "অ্যাপ"
msgid "Admin"
msgstr "প্রশাসন"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr "ZIP ডাউনলোড বন্ধ করা আছে।"
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।"
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr "ফাইলে ফিরে চল"
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।"

View File

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

View File

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

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:15+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@ -27,11 +27,11 @@ msgstr "No s'ha pogut esborrar permanentment %s"
msgid "Couldn't restore %s"
msgstr "No s'ha pogut restaurar %s"
#: js/trash.js:7 js/trash.js:96
#: js/trash.js:7 js/trash.js:97
msgid "perform restore operation"
msgstr "executa l'operació de restauració"
#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139
#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
msgid "Error"
msgstr "Error"
@ -39,31 +39,31 @@ msgstr "Error"
msgid "delete file permanently"
msgstr "esborra el fitxer permanentment"
#: js/trash.js:121
#: js/trash.js:123
msgid "Delete permanently"
msgstr "Esborra permanentment"
#: js/trash.js:174 templates/index.php:17
#: js/trash.js:176 templates/index.php:17
msgid "Name"
msgstr "Nom"
#: js/trash.js:175 templates/index.php:27
#: js/trash.js:177 templates/index.php:27
msgid "Deleted"
msgstr "Eliminat"
#: js/trash.js:184
#: js/trash.js:186
msgid "1 folder"
msgstr "1 carpeta"
#: js/trash.js:186
#: js/trash.js:188
msgid "{count} folders"
msgstr "{count} carpetes"
#: js/trash.js:194
#: js/trash.js:196
msgid "1 file"
msgstr "1 fitxer"
#: js/trash.js:196
#: js/trash.js:198
msgid "{count} files"
msgstr "{count} fitxers"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@ -42,19 +42,19 @@ msgstr "Aplicacions"
msgid "Admin"
msgstr "Administració"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr "La baixada en ZIP està desactivada."
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr "Els fitxers s'han de baixar d'un en un."
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr "Torna a Fitxers"
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip."

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:15+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:15+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@ -27,11 +27,11 @@ msgstr "Nelze trvale odstranit %s"
msgid "Couldn't restore %s"
msgstr "Nelze obnovit %s"
#: js/trash.js:7 js/trash.js:96
#: js/trash.js:7 js/trash.js:97
msgid "perform restore operation"
msgstr "provést obnovu"
#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139
#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
msgid "Error"
msgstr "Chyba"
@ -39,31 +39,31 @@ msgstr "Chyba"
msgid "delete file permanently"
msgstr "trvale odstranit soubor"
#: js/trash.js:121
#: js/trash.js:123
msgid "Delete permanently"
msgstr "Trvale odstranit"
#: js/trash.js:174 templates/index.php:17
#: js/trash.js:176 templates/index.php:17
msgid "Name"
msgstr "Název"
#: js/trash.js:175 templates/index.php:27
#: js/trash.js:177 templates/index.php:27
msgid "Deleted"
msgstr "Smazáno"
#: js/trash.js:184
#: js/trash.js:186
msgid "1 folder"
msgstr "1 složka"
#: js/trash.js:186
#: js/trash.js:188
msgid "{count} folders"
msgstr "{count} složky"
#: js/trash.js:194
#: js/trash.js:196
msgid "1 file"
msgstr "1 soubor"
#: js/trash.js:196
#: js/trash.js:198
msgid "{count} files"
msgstr "{count} soubory"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@ -41,19 +41,19 @@ msgstr "Aplikace"
msgid "Admin"
msgstr "Administrace"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr "Stahování ZIPu je vypnuto."
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr "Soubory musí být stahovány jednotlivě."
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr "Zpět k souborům"
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru."

View File

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

View File

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

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:15+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"

View File

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

View File

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

View File

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

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
@ -27,11 +27,11 @@ msgstr "Methwyd dileu %s yn barhaol"
msgid "Couldn't restore %s"
msgstr "Methwyd adfer %s"
#: js/trash.js:7 js/trash.js:96
#: js/trash.js:7 js/trash.js:97
msgid "perform restore operation"
msgstr "gweithrediad adfer"
#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139
#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
msgid "Error"
msgstr "Gwall"
@ -39,31 +39,31 @@ msgstr "Gwall"
msgid "delete file permanently"
msgstr "dileu ffeil yn barhaol"
#: js/trash.js:121
#: js/trash.js:123
msgid "Delete permanently"
msgstr "Dileu'n barhaol"
#: js/trash.js:174 templates/index.php:17
#: js/trash.js:176 templates/index.php:17
msgid "Name"
msgstr "Enw"
#: js/trash.js:175 templates/index.php:27
#: js/trash.js:177 templates/index.php:27
msgid "Deleted"
msgstr "Wedi dileu"
#: js/trash.js:184
#: js/trash.js:186
msgid "1 folder"
msgstr "1 blygell"
#: js/trash.js:186
#: js/trash.js:188
msgid "{count} folders"
msgstr "{count} plygell"
#: js/trash.js:194
#: js/trash.js:196
msgid "1 file"
msgstr "1 ffeil"
#: js/trash.js:196
#: js/trash.js:198
msgid "{count} files"
msgstr "{count} ffeil"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
@ -41,19 +41,19 @@ msgstr "Pecynnau"
msgid "Admin"
msgstr "Gweinyddu"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr "Mae llwytho ZIP wedi ei ddiffodd."
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr "Mae angen llwytho ffeiliau i lawr fesul un."
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr "Nôl i Ffeiliau"
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip."

View File

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

View File

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

View File

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

View File

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

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"
@ -27,11 +27,11 @@ msgstr "Kunne ikke slette %s permanent"
msgid "Couldn't restore %s"
msgstr "Kunne ikke gendanne %s"
#: js/trash.js:7 js/trash.js:96
#: js/trash.js:7 js/trash.js:97
msgid "perform restore operation"
msgstr "udfør gendannelsesoperation"
#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139
#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
msgid "Error"
msgstr "Fejl"
@ -39,31 +39,31 @@ msgstr "Fejl"
msgid "delete file permanently"
msgstr "slet fil permanent"
#: js/trash.js:121
#: js/trash.js:123
msgid "Delete permanently"
msgstr "Slet permanent"
#: js/trash.js:174 templates/index.php:17
#: js/trash.js:176 templates/index.php:17
msgid "Name"
msgstr "Navn"
#: js/trash.js:175 templates/index.php:27
#: js/trash.js:177 templates/index.php:27
msgid "Deleted"
msgstr "Slettet"
#: js/trash.js:184
#: js/trash.js:186
msgid "1 folder"
msgstr "1 mappe"
#: js/trash.js:186
#: js/trash.js:188
msgid "{count} folders"
msgstr "{count} mapper"
#: js/trash.js:194
#: js/trash.js:196
msgid "1 file"
msgstr "1 fil"
#: js/trash.js:196
#: js/trash.js:198
msgid "{count} files"
msgstr "{count} filer"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"
@ -41,19 +41,19 @@ msgstr "Apps"
msgid "Admin"
msgstr "Admin"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr "ZIP-download er slået fra."
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr "Filer skal downloades en for en."
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr "Tilbage til Filer"
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr "De markerede filer er for store til at generere en ZIP-fil."

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"

View File

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

View File

@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:15+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: Marcel Kühlhorn <susefan93@gmx.de>\n"
"Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:15+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"
@ -27,11 +27,11 @@ msgstr "Konnte %s nicht dauerhaft löschen"
msgid "Couldn't restore %s"
msgstr "Konnte %s nicht wiederherstellen"
#: js/trash.js:7 js/trash.js:96
#: js/trash.js:7 js/trash.js:97
msgid "perform restore operation"
msgstr "Wiederherstellung ausführen"
#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139
#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
msgid "Error"
msgstr "Fehler"
@ -39,31 +39,31 @@ msgstr "Fehler"
msgid "delete file permanently"
msgstr "Datei dauerhaft löschen"
#: js/trash.js:121
#: js/trash.js:123
msgid "Delete permanently"
msgstr "Endgültig löschen"
#: js/trash.js:174 templates/index.php:17
#: js/trash.js:176 templates/index.php:17
msgid "Name"
msgstr "Name"
#: js/trash.js:175 templates/index.php:27
#: js/trash.js:177 templates/index.php:27
msgid "Deleted"
msgstr "gelöscht"
#: js/trash.js:184
#: js/trash.js:186
msgid "1 folder"
msgstr "1 Ordner"
#: js/trash.js:186
#: js/trash.js:188
msgid "{count} folders"
msgstr "{count} Ordner"
#: js/trash.js:194
#: js/trash.js:196
msgid "1 file"
msgstr "1 Datei"
#: js/trash.js:196
#: js/trash.js:198
msgid "{count} files"
msgstr "{count} Dateien"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"
@ -42,19 +42,19 @@ msgstr "Apps"
msgid "Admin"
msgstr "Administration"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr "Der ZIP-Download ist deaktiviert."
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr "Die Dateien müssen einzeln heruntergeladen werden."
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr "Zurück zu \"Dateien\""
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen."

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"

View File

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

View File

@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:15+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: a.tangemann <a.tangemann@web.de>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"
@ -27,11 +27,11 @@ msgstr "Konnte %s nicht dauerhaft löschen"
msgid "Couldn't restore %s"
msgstr "Konnte %s nicht wiederherstellen"
#: js/trash.js:7 js/trash.js:96
#: js/trash.js:7 js/trash.js:97
msgid "perform restore operation"
msgstr "Wiederherstellung ausführen"
#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139
#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
msgid "Error"
msgstr "Fehler"
@ -39,31 +39,31 @@ msgstr "Fehler"
msgid "delete file permanently"
msgstr "Datei dauerhaft löschen"
#: js/trash.js:121
#: js/trash.js:123
msgid "Delete permanently"
msgstr "Endgültig löschen"
#: js/trash.js:174 templates/index.php:17
#: js/trash.js:176 templates/index.php:17
msgid "Name"
msgstr "Name"
#: js/trash.js:175 templates/index.php:27
#: js/trash.js:177 templates/index.php:27
msgid "Deleted"
msgstr "Gelöscht"
#: js/trash.js:184
#: js/trash.js:186
msgid "1 folder"
msgstr "1 Ordner"
#: js/trash.js:186
#: js/trash.js:188
msgid "{count} folders"
msgstr "{count} Ordner"
#: js/trash.js:194
#: js/trash.js:196
msgid "1 file"
msgstr "1 Datei"
#: js/trash.js:196
#: js/trash.js:198
msgid "{count} files"
msgstr "{count} Dateien"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"
@ -42,19 +42,19 @@ msgstr "Apps"
msgid "Admin"
msgstr "Administrator"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr "Der ZIP-Download ist deaktiviert."
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr "Die Dateien müssen einzeln heruntergeladen werden."
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr "Zurück zu \"Dateien\""
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen."

View File

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

View File

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

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:15+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"

View File

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

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: KAT.RAT12 <spanish.katerina@gmail.com>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
@ -27,11 +27,11 @@ msgstr "Αδύνατη η μόνιμη διαγραφή του %s"
msgid "Couldn't restore %s"
msgstr "Αδυναμία επαναφοράς %s"
#: js/trash.js:7 js/trash.js:96
#: js/trash.js:7 js/trash.js:97
msgid "perform restore operation"
msgstr "εκτέλεση λειτουργία επαναφοράς"
#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139
#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
msgid "Error"
msgstr "Σφάλμα"
@ -39,31 +39,31 @@ msgstr "Σφάλμα"
msgid "delete file permanently"
msgstr "μόνιμη διαγραφή αρχείου"
#: js/trash.js:121
#: js/trash.js:123
msgid "Delete permanently"
msgstr "Μόνιμη διαγραφή"
#: js/trash.js:174 templates/index.php:17
#: js/trash.js:176 templates/index.php:17
msgid "Name"
msgstr "Όνομα"
#: js/trash.js:175 templates/index.php:27
#: js/trash.js:177 templates/index.php:27
msgid "Deleted"
msgstr "Διαγράφηκε"
#: js/trash.js:184
#: js/trash.js:186
msgid "1 folder"
msgstr "1 φάκελος"
#: js/trash.js:186
#: js/trash.js:188
msgid "{count} folders"
msgstr "{count} φάκελοι"
#: js/trash.js:194
#: js/trash.js:196
msgid "1 file"
msgstr "1 αρχείο"
#: js/trash.js:196
#: js/trash.js:198
msgid "{count} files"
msgstr "{count} αρχεία"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
@ -41,19 +41,19 @@ msgstr "Εφαρμογές"
msgid "Admin"
msgstr "Διαχειριστής"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr "Η λήψη ZIP απενεργοποιήθηκε."
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα."
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr "Πίσω στα Αρχεία"
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip."

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"

View File

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

View File

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

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: lhpalacio <luizhenrique_gomespalacio@hotmail.com>\n"
"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:15+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
@ -27,11 +27,11 @@ msgstr ""
msgid "Couldn't restore %s"
msgstr ""
#: js/trash.js:7 js/trash.js:96
#: js/trash.js:7 js/trash.js:97
msgid "perform restore operation"
msgstr ""
#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139
#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
msgid "Error"
msgstr "Eraro"
@ -39,31 +39,31 @@ msgstr "Eraro"
msgid "delete file permanently"
msgstr ""
#: js/trash.js:121
#: js/trash.js:123
msgid "Delete permanently"
msgstr ""
#: js/trash.js:174 templates/index.php:17
#: js/trash.js:176 templates/index.php:17
msgid "Name"
msgstr "Nomo"
#: js/trash.js:175 templates/index.php:27
#: js/trash.js:177 templates/index.php:27
msgid "Deleted"
msgstr ""
#: js/trash.js:184
#: js/trash.js:186
msgid "1 folder"
msgstr "1 dosierujo"
#: js/trash.js:186
#: js/trash.js:188
msgid "{count} folders"
msgstr "{count} dosierujoj"
#: js/trash.js:194
#: js/trash.js:196
msgid "1 file"
msgstr "1 dosiero"
#: js/trash.js:196
#: js/trash.js:198
msgid "{count} files"
msgstr "{count} dosierujoj"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 00:02+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
@ -41,19 +41,19 @@ msgstr "Aplikaĵoj"
msgid "Admin"
msgstr "Administranto"
#: files.php:207
#: files.php:210
msgid "ZIP download is turned off."
msgstr "ZIP-elŝuto estas malkapabligita."
#: files.php:208
#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr "Dosieroj devas elŝutiĝi unuope."
#: files.php:209 files.php:242
#: files.php:212 files.php:245
msgid "Back to Files"
msgstr "Reen al la dosieroj"
#: files.php:239
#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero."

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"

View File

@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:01+0200\n"
"PO-Revision-Date: 2013-05-26 23:15+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: xhiena <xhiena@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:15+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:16+0000\n"
"Last-Translator: Art O. Pal <artopal@fastmail.fm>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-05-27 02:00+0200\n"
"PO-Revision-Date: 2013-05-26 23:16+0000\n"
"POT-Creation-Date: 2013-05-28 02:01+0200\n"
"PO-Revision-Date: 2013-05-27 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"

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