diff options
169 files changed, 1283 insertions, 1177 deletions
diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 5174982db3e..722a0317058 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -76,7 +76,7 @@ $TRANSLATIONS = array( "max. possible: " => "макс. возможно: ", "Save" => "Сохранить", "WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Используйте этот адресс для <a href=\"%s\" target=\"_blank\">доступа к вашим файлам через WebDAV</a>", +"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Используйте этот адрес для <a href=\"%s\" target=\"_blank\">доступа файлам через WebDAV</a>", "New" => "Новый", "New text file" => "Новый текстовый файл", "Text file" => "Текстовый файл", diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index fa93013183a..83d0154cbd6 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -3,7 +3,7 @@ $TRANSLATIONS = array( "Server to server sharing is not enabled on this server" => "Server met server delen is niet geactiveerd op deze server", "Couldn't add remote share" => "Kon geen externe share toevoegen", "Shared with you" => "Deelde met u", -"Shared with others" => "Deelde met anderen", +"Shared with others" => "Deelde u met anderen", "Shared by link" => "Gedeeld via een link", "No files have been shared with you yet." => "Er zijn nog geen bestanden met u gedeeld.", "You haven't shared any files yet." => "U hebt nog geen bestanden gedeeld.", diff --git a/apps/files_sharing/l10n/ru.php b/apps/files_sharing/l10n/ru.php index 9420882cf5e..026726ac907 100644 --- a/apps/files_sharing/l10n/ru.php +++ b/apps/files_sharing/l10n/ru.php @@ -2,9 +2,9 @@ $TRANSLATIONS = array( "Server to server sharing is not enabled on this server" => "На данном сервере выключено межсерверное предоставление общих папок", "Couldn't add remote share" => "Невозможно добавить удалённую общую папку", -"Shared with you" => "Доступно мне", -"Shared with others" => "Доступно другим", -"Shared by link" => "Доступно по ссылке", +"Shared with you" => "Доступные для Вас", +"Shared with others" => "Доступные для других", +"Shared by link" => "Доступные по ссылке", "No files have been shared with you yet." => "Отсутствуют доступные для вас файлы.", "You haven't shared any files yet." => "Вы не имеете файлов в открытом доступе", "You haven't shared any files by link yet." => "Вы ещё не открыли доступ по ссылке ни к одному файлу.", diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index faf141db25f..8556036f118 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -64,7 +64,6 @@ class Api { $share['isPreviewAvailable'] = true; } } - $newShares[] = $share; } return new \OC_OCS_Result($shares); } diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index a9d51b2c58b..7fadf81426b 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -265,7 +265,7 @@ class Storage { $pathinfo = pathinfo($filename); $versionedFile = $pathinfo['basename']; - $dir = self::VERSIONS_ROOT . '/' . $pathinfo['dirname']; + $dir = \OC\Files\Filesystem::normalizePath(self::VERSIONS_ROOT . '/' . $pathinfo['dirname']); $dirContent = false; if ($view->is_dir($dir)) { @@ -293,7 +293,7 @@ class Storage { } else { $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $userFullPath, 'version' => $timestamp)); } - $versions[$key]['path'] = $filename; + $versions[$key]['path'] = $pathinfo['dirname'] . '/' . $filename; $versions[$key]['name'] = $versionedFile; $versions[$key]['size'] = $view->filesize($dir . '/' . $entryName); } diff --git a/apps/files_versions/tests/versions.php b/apps/files_versions/tests/versions.php index 03432276358..558c8dfcb8a 100644 --- a/apps/files_versions/tests/versions.php +++ b/apps/files_versions/tests/versions.php @@ -267,6 +267,40 @@ class Test_Files_Versioning extends \PHPUnit_Framework_TestCase { } /** + * test if we find all versions and if the versions array contain + * the correct 'path' and 'name' + */ + public function testGetVersions() { + + $t1 = time(); + // second version is two weeks older, this way we make sure that no + // version will be expired + $t2 = $t1 - 60 * 60 * 24 * 14; + + // create some versions + $v1 = self::USERS_VERSIONS_ROOT . '/subfolder/test.txt.v' . $t1; + $v2 = self::USERS_VERSIONS_ROOT . '/subfolder/test.txt.v' . $t2; + + $this->rootView->mkdir(self::USERS_VERSIONS_ROOT . '/subfolder/'); + + $this->rootView->file_put_contents($v1, 'version1'); + $this->rootView->file_put_contents($v2, 'version2'); + + // execute copy hook of versions app + $versions = \OCA\Files_Versions\Storage::getVersions(self::TEST_VERSIONS_USER, '/subfolder/test.txt'); + + $this->assertSame(2, count($versions)); + + foreach ($versions as $version) { + $this->assertSame('/subfolder/test.txt', $version['path']); + $this->assertSame('test.txt', $version['name']); + } + + //cleanup + $this->rootView->deleteAll(self::USERS_VERSIONS_ROOT . '/subfolder'); + } + + /** * @param string $user * @param bool $create * @param bool $password diff --git a/core/js/config.php b/core/js/config.php index 0ab74d2949e..b61694522db 100644 --- a/core/js/config.php +++ b/core/js/config.php @@ -83,6 +83,7 @@ $array = array( 'defaultExpireDateEnforced' => $enforceDefaultExpireDate, 'enforcePasswordForPublicLink' => \OCP\Util::isPublicLinkPasswordRequired(), 'sharingDisabledForUser' => \OCP\Util::isSharingDisabledForUser(), + 'resharingAllowed' => \OCP\Share::isResharingAllowed(), ) ) ), diff --git a/core/js/share.js b/core/js/share.js index 14abdf18ade..1b4e519f201 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -488,7 +488,7 @@ OC.Share={ if (possiblePermissions & OC.PERMISSION_DELETE) { permissions = permissions | OC.PERMISSION_DELETE; } - if (possiblePermissions & OC.PERMISSION_SHARE) { + if (oc_appconfig.core.resharingAllowed && (possiblePermissions & OC.PERMISSION_SHARE)) { permissions = permissions | OC.PERMISSION_SHARE; } @@ -620,7 +620,7 @@ OC.Share={ } html += '<label><input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify by email')+'</label> '; } - if (possiblePermissions & OC.PERMISSION_SHARE) { + if (oc_appconfig.core.resharingAllowed && (possiblePermissions & OC.PERMISSION_SHARE)) { html += '<label><input type="checkbox" name="share" class="permissions" '+shareChecked+' data-permissions="'+OC.PERMISSION_SHARE+'" />'+t('core', 'can share')+'</label>'; } if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) { diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 79359fcbded..fec10a481ff 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -152,7 +152,7 @@ $TRANSLATIONS = array( "Access forbidden" => "Доступ запрещён", "Cloud not found" => "Облако не найдено", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Здравствуйте,\n\n%s предоставил Вам доступ к %s.\nПосмотреть: %s\n\n", -"The share will expire on %s." => "Доступ пропадет в %s", +"The share will expire on %s." => "Доступ будет закрыт %s", "Cheers!" => "Удачи!", "Security Warning" => "Предупреждение безопасности", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версия PHP уязвима к атаке NULL Byte (CVE-2006-7243)", diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index a501c8368cd..ba3a2f59e22 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index 357abc62e82..3255c1dc2f1 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 7c6ff2b9fd4..280cbd2c14a 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "Onbekende leertipe" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "webdienste onder jou beheer" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ak/lib.po b/l10n/ak/lib.po index 9fbf6c6c3c4..1f159435835 100644 --- a/l10n/ak/lib.po +++ b/l10n/ak/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/am_ET/lib.po b/l10n/am_ET/lib.po index 57ea7e4b228..4b098bcd08a 100644 --- a/l10n/am_ET/lib.po +++ b/l10n/am_ET/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 66312e9cac8..8517e48ecc9 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "نوع الملف غير معروف" msgid "Invalid image" msgstr "الصورة غير صالحة" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" @@ -359,7 +359,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -381,30 +381,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index 73aa04c55e5..a198b0da1a6 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -97,7 +97,7 @@ msgstr "Triba de ficheru desconocida" msgid "Invalid image" msgstr "Imaxe inválida" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "servicios web baxo'l to control" @@ -360,7 +360,7 @@ msgstr "Falló dar permisos a %s, porque l'elementu nun s'atopó" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -382,30 +382,30 @@ msgstr "Nun s'alcontró'l botón de compartición %s" msgid "Sharing backend for %s not found" msgstr "Nun s'alcontró'l botón de partición pa %s" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Compartir %s falló, yá que l'usuariu %s ye'l compartidor orixinal" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Compartir %s falló, porque los permisos perpasen los otorgaos a %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Compartir %s falló, porque nun se permite la re-compartición" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Compartir %s falló porque'l motor compartíu pa %s podría nun atopar el so orixe" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index bebf9797d5f..8dbb569b310 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 2d1c7782998..cf66e746011 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 739c8541e47..4736655e2a0 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "Непознат тип файл." msgid "Invalid image" msgstr "Невалидно изображение." -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "уеб услуги под твой контрол" @@ -359,12 +359,12 @@ msgstr "Неуспешна промяна на правата за достъп #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Неуспешно задаване на дата на изтичане. Датата на изтичане е в миналото" #: private/share/share.php:1093 #, php-format @@ -381,30 +381,30 @@ msgstr "Споделянето на сървърния %s не е открито msgid "Sharing backend for %s not found" msgstr "Споделянето на сървъра за %s не е открито." -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Споделяне на %s е неуспешно, защото потребител %s е оригиналния собственик." -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Неуспешно споделяне на %s, защото промените надвишават правата на достъп дадени на %s." -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Неуспешно споделяне на %s, защото повторно споделяне не е разрешено." -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Неуспешно споделяне на %s, защото не е открит първоизточникът на %s, за да бъде споделяне по сървъра." -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index c4bd73b2114..86d02a7bbef 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bn_IN/lib.po b/l10n/bn_IN/lib.po index c67fbc13aa0..9553874755c 100644 --- a/l10n/bn_IN/lib.po +++ b/l10n/bn_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 26cf5b98fed..76f22e22e4d 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index c1bd628d2d5..cc2905292e5 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "Tipus de fitxer desconegut" msgid "Invalid image" msgstr "Imatge no vàlida" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "controleu els vostres serveis web" @@ -358,7 +358,7 @@ msgstr "Ha fallat en establir els permisos per %s, perquè no s'ha trobat l'elem #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -380,30 +380,30 @@ msgstr "El rerefons de compartició %s no s'ha trobat" msgid "Sharing backend for %s not found" msgstr "El rerefons de compartició per a %s no s'ha trobat" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Ha fallat en compartir %s perquè l'usuari %s és qui comparteix inicialment" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Ha fallat en compartir %s perquè els permisos excedeixen els permesos per a %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Ha fallat en compartir %s, perquè no es permet compartir de nou" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Ha fallat en compartir %s, perquè el rerefons de compartir per %s no pot trobar la seva font" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ca@valencia/lib.po b/l10n/ca@valencia/lib.po index f308f5a6a32..a1c1121603f 100644 --- a/l10n/ca@valencia/lib.po +++ b/l10n/ca@valencia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/owncloud/language/ca@valencia/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index b4330cdb49e..2701514f1de 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -101,7 +101,7 @@ msgstr "Neznámý typ souboru" msgid "Invalid image" msgstr "Chybný obrázek" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "webové služby pod Vaší kontrolou" @@ -364,12 +364,12 @@ msgstr "Nastavení práv pro %s selhalo, protože položka nebyla nalezena" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti." #: private/share/share.php:1093 #, php-format @@ -386,30 +386,30 @@ msgstr "Podpůrná vrstva sdílení %s nenalezena" msgid "Sharing backend for %s not found" msgstr "Podpůrná vrstva sdílení pro %s nenalezena" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Sdílení položky %s selhalo, protože byla sdílena uživatelem %s jako první." -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Sdílení položky %s selhalo, protože jsou k tomu nutná vyšší oprávnění, než jaká byla %s povolena." -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Sdílení položky %s selhalo, protože sdílení dále není povoleno" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Sdílení položky %s selhalo, protože podpůrná vrstva sdílení nenalezla zdrojový %s" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 33ecbc7ebe8..10eb37b5aa2 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "gwasanaethau gwe a reolir gennych" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index f2dba33bb0b..f7d0f5743d9 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -102,7 +102,7 @@ msgstr "Ukendt filtype" msgid "Invalid image" msgstr "Ugyldigt billede" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Webtjenester under din kontrol" @@ -365,7 +365,7 @@ msgstr "Angivelse af tilladelser for %s mislykkedes, fordi artiklen ikke blev fu #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -387,30 +387,30 @@ msgstr "Delingsbackend'en %s blev ikke fundet" msgid "Sharing backend for %s not found" msgstr "Delingsbackend'en for %s blev ikke fundet" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Deling af %s mislykkedes, fordi brugeren %s er den som delte oprindeligt" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Deling af %s mislykkedes, fordi tilladelserne overskred de tillaldelser som %s var tildelt" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Deling af %s mislykkedes, fordi videredeling ikke er tilladt" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Deling af %s mislykkedes, fordi back-enden ikke kunne finde kilden til %s" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 5df0056abaa..32ea7e2a63c 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -100,7 +100,7 @@ msgstr "Unbekannter Dateityp" msgid "Invalid image" msgstr "Ungültiges Bild" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Web-Services unter Deiner Kontrolle" @@ -363,12 +363,12 @@ msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit." #: private/share/share.php:1093 #, php-format @@ -385,30 +385,30 @@ msgstr "Freigabe-Backend %s nicht gefunden" msgid "Sharing backend for %s not found" msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index f90762f1b59..54c6605df62 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index b829db55db1..af7537a2d25 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -98,7 +98,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" @@ -361,7 +361,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -383,30 +383,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index ec8935b936f..1f6a193f20c 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -100,7 +100,7 @@ msgstr "Unbekannter Dateityp" msgid "Invalid image" msgstr "Ungültiges Bild" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" @@ -363,12 +363,12 @@ msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit." #: private/share/share.php:1093 #, php-format @@ -385,30 +385,30 @@ msgstr "Freigabe-Backend %s nicht gefunden" msgid "Sharing backend for %s not found" msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 292ffec0745..15e173499ac 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -101,7 +101,7 @@ msgstr "Άγνωστος τύπος αρχείου" msgid "Invalid image" msgstr "Μη έγκυρη εικόνα" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" @@ -364,7 +364,7 @@ msgstr "Ο ορισμός δικαιωμάτων για το %s απέτυχε, #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -386,30 +386,30 @@ msgstr "Το σύστημα διαμοιρασμού %s δεν βρέθηκε" msgid "Sharing backend for %s not found" msgstr "Το σύστημα διαμοιρασμού για το %s δεν βρέθηκε" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί το αντικείμενο είναι διαμοιρασμένο αρχικά από τον χρήστη %s" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί τα δικαιώματα υπερτερούν αυτά που είναι ορισμένα για το %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν επιτρέπεται ο επαναδιαμοιρασμός" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν ήταν δυνατό να εντοπίσει την πηγή το σύστημα διαμοιρασμού για το %s " -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index 2cd6607cd7c..5ebc2353f3d 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "web services under your control" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 45ea7af3c1b..8372976a5be 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "Unknown filetype" msgid "Invalid image" msgstr "Invalid image" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "web services under your control" @@ -358,12 +358,12 @@ msgstr "Setting permissions for %s failed, because the item was not found" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Cannot set expiry date. Expiry date is in the past" #: private/share/share.php:1093 #, php-format @@ -380,30 +380,30 @@ msgstr "Sharing backend %s not found" msgid "Sharing backend for %s not found" msgstr "Sharing backend for %s not found" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Sharing %s failed, because the user %s is the original sharer" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Sharing %s failed, because the permissions exceed permissions granted to %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Sharing %s failed, because resharing is not allowed" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Sharing %s failed, because the sharing backend for %s could not find its source" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/en_NZ/lib.po b/l10n/en_NZ/lib.po index 3184cfd7c82..12578ed890d 100644 --- a/l10n/en_NZ/lib.po +++ b/l10n/en_NZ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (New Zealand) (http://www.transifex.com/projects/p/owncloud/language/en_NZ/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index a796e42ecce..4115d822a62 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "Ne konatas dosiertipo" msgid "Invalid image" msgstr "Ne validas bildo" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" @@ -358,7 +358,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -380,30 +380,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 657150c9a21..e82d65d8c79 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -108,7 +108,7 @@ msgstr "Tipo de archivo desconocido" msgid "Invalid image" msgstr "Imagen inválida" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Servicios web bajo su control" @@ -371,12 +371,12 @@ msgstr "Configuración de permisos para %s ha fallado, ya que el elemento no fue #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "No se puede fijar la fecha de caducidad. La fecha de caducidad está en el pasado." #: private/share/share.php:1093 #, php-format @@ -393,30 +393,30 @@ msgstr "El motor compartido %s no se ha encontrado" msgid "Sharing backend for %s not found" msgstr "Motor compartido para %s no encontrado" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Compartiendo %s ha fallado, ya que el usuario %s es el compartidor original" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Compartiendo %s ha fallado, ya que los permisos superan los permisos otorgados a %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Compartiendo %s ha fallado, ya que volver a compartir no está permitido" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Compartir %s falló porque el motor compartido para %s podría no encontrar su origen" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 575837186a2..77913e591cf 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "Tipo de archivo desconocido" msgid "Invalid image" msgstr "Imagen inválida" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "servicios web sobre los que tenés control" @@ -359,7 +359,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -381,30 +381,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_BO/lib.po b/l10n/es_BO/lib.po index 0d9afae8ec6..5f3af8c61b2 100644 --- a/l10n/es_BO/lib.po +++ b/l10n/es_BO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Bolivia) (http://www.transifex.com/projects/p/owncloud/language/es_BO/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po index e4fb89d2f0c..a7601be1573 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "Tipo de archivo desconocido" msgid "Invalid image" msgstr "Imagen no válida" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Servicios Web bajo su control" @@ -358,7 +358,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -380,30 +380,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_CO/lib.po b/l10n/es_CO/lib.po index 4bf4be0c17f..71ca51be99a 100644 --- a/l10n/es_CO/lib.po +++ b/l10n/es_CO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/projects/p/owncloud/language/es_CO/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_CR/lib.po b/l10n/es_CR/lib.po index d6bf12050a9..71e97856da1 100644 --- a/l10n/es_CR/lib.po +++ b/l10n/es_CR/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_EC/lib.po b/l10n/es_EC/lib.po index ad1e5475b37..419f277f1ec 100644 --- a/l10n/es_EC/lib.po +++ b/l10n/es_EC/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/owncloud/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index 50d4f2f94a5..75575450087 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "Tipo de archivo desconocido" msgid "Invalid image" msgstr "Imagen inválida" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Servicios web bajo su control" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_PE/lib.po b/l10n/es_PE/lib.po index efc1df2075d..db4363ade25 100644 --- a/l10n/es_PE/lib.po +++ b/l10n/es_PE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/owncloud/language/es_PE/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_PY/lib.po b/l10n/es_PY/lib.po index 6b311997f1f..57342a575b9 100644 --- a/l10n/es_PY/lib.po +++ b/l10n/es_PY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Paraguay) (http://www.transifex.com/projects/p/owncloud/language/es_PY/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_US/lib.po b/l10n/es_US/lib.po index 6a107155aa0..711de8131aa 100644 --- a/l10n/es_US/lib.po +++ b/l10n/es_US/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (United States) (http://www.transifex.com/projects/p/owncloud/language/es_US/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_UY/lib.po b/l10n/es_UY/lib.po index 11f60fd05e6..89ec5ac5c32 100644 --- a/l10n/es_UY/lib.po +++ b/l10n/es_UY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Uruguay) (http://www.transifex.com/projects/p/owncloud/language/es_UY/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 56f40f04d88..77068995b50 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "Tundmatu failitüüp" msgid "Invalid image" msgstr "Vigane pilt" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "veebitenused sinu kontrolli all" @@ -359,7 +359,7 @@ msgstr "Lubade seadistus %s jaoks ebaõnnestus, kuna üksust ei leitud" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -381,30 +381,30 @@ msgstr "Jagamise tagarakendit %s ei leitud" msgid "Sharing backend for %s not found" msgstr "Jagamise tagarakendit %s jaoks ei leitud" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s jagamine ebaõnnestus, kuna kasutaja %s on algne jagaja" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s jagamine ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s jagamine ebaõnnestus, kuna edasijagamine pole lubatud" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s jagamine ebaõnnestus, kuna jagamise tagarakend ei suutnud leida %s jaoks lähteallikat" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 95c5ffb44ef..da4e60c9d15 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -98,7 +98,7 @@ msgstr "Fitxategi mota ezezaguna" msgid "Invalid image" msgstr "Baliogabeko irudia" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" @@ -361,12 +361,12 @@ msgstr "%srentzako baimenak ezartzea huts egin du, aurkitu ez delako" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Ezin da jarri iraungitze data. Iraungitze data iragan da." #: private/share/share.php:1093 #, php-format @@ -383,30 +383,30 @@ msgstr "Ez da %s elkarbanaketa motorra aurkitu" msgid "Sharing backend for %s not found" msgstr "Ez da %srako elkarbanaketa motorrik aurkitu" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s elkarbanatzeak huts egin du, %s erabiltzailea jatorrizko elkarbanatzailea delako" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s elkarbanatzeak huts egin du, baimenak %sri emandakoak baino gehiago direlako" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s elkarbanatzeak huts egin du, ber-elkarbanatzea baimenduta ez dagoelako" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s elkarbanatzeak huts egin du, %sren elkarbanaketa motorrak bere iturria aurkitu ezin duelako" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eu_ES/lib.po b/l10n/eu_ES/lib.po index 923cc446e6d..08adb99c2bb 100644 --- a/l10n/eu_ES/lib.po +++ b/l10n/eu_ES/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index a6e1905dc13..62ea184bdad 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "نوع فایل ناشناخته" msgid "Invalid image" msgstr "عکس نامعتبر" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" @@ -358,7 +358,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -380,30 +380,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 407ad4fefbf..0718ddcfb1c 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "Tuntematon tiedostotyyppi" msgid "Invalid image" msgstr "Virheellinen kuva" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" @@ -358,12 +358,12 @@ msgstr "Kohteen %s oikeuksien asettaminen epäonnistui, koska kohdetta ei löyty #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Vanhentumispäivää ei voi asettaa. Vanhentumispäivä on jo mennyt" #: private/share/share.php:1093 #, php-format @@ -380,30 +380,30 @@ msgstr "Jakamisen taustaosaa %s ei löytynyt" msgid "Sharing backend for %s not found" msgstr "Jakamisen taustaosaa kohteelle %s ei löytynyt" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on alkuperäinen jakaja" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Kohteen %s jakaminen epäonnistui, koska jakaminen uudelleen ei ole sallittu" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" @@ -569,14 +569,14 @@ msgstr "" msgid "" "Magic Quotes is enabled. ownCloud requires that it is disabled to work " "properly." -msgstr "" +msgstr "Magic Quotes -asetus on käytössä. ownCloud vaatii toimiakseen kyseisen asetuksen poistamisen käytöstä." #: private/util.php:580 msgid "" "Magic Quotes is a deprecated and mostly useless setting that should be " "disabled. Please ask your server administrator to disable it in php.ini or " "in your webserver config." -msgstr "" +msgstr "Magic Quotes -asetus on vanhennettu ja pääosin hyödytön, joten se tulisi poistaa käytöstä. Pyydä palvelimen ylläpitäjää poistamaan asetus käytöstä php.ini-tiedoston avulla tai http-palvelimen asetuksista." #: private/util.php:594 msgid "PHP modules have been installed, but they are still listed as missing?" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index cb56699697c..5ec5c917c35 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -104,7 +104,7 @@ msgstr "Type de fichier inconnu" msgid "Invalid image" msgstr "Image invalide" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "services web sous votre contrôle" @@ -367,7 +367,7 @@ msgstr "Le réglage des permissions pour %s a échoué car l'objet n'a pas été #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -389,30 +389,30 @@ msgstr "Emplacement de partage %s introuvable" msgid "Sharing backend for %s not found" msgstr "L'emplacement du partage %s est introuvable" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Le partage de %s a échoué car l'utilisateur %s est déjà l'utilisateur à l'origine du partage." -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Le partage de %s a échoué car les permissions dépassent les permissions accordées à %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Le partage de %s a échoué car le repartage n'est pas autorisé" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Le partage %s a échoué parce que la source n'a été trouvée pour le partage %s." -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fr_CA/lib.po b/l10n/fr_CA/lib.po index f74531b044b..142074f5f25 100644 --- a/l10n/fr_CA/lib.po +++ b/l10n/fr_CA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 7b31e022014..e4564158450 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-31 01:54-0400\n" -"PO-Revision-Date: 2014-07-31 05:30+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-06 11:10+0000\n" "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 72887d8174d..b120c730795 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-31 01:54-0400\n" -"PO-Revision-Date: 2014-07-30 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-06 11:01+0000\n" +"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 0ac7c0bac3d..3bf6e4a5c3f 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "Tipo de ficheiro descoñecido" msgid "Invalid image" msgstr "Imaxe incorrecta" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "servizos web baixo o seu control" @@ -359,12 +359,12 @@ msgstr "Non é posíbel estabelecer permisos para %s, non se atopa o elemento" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Non é posíbel estabelecer a data de caducidade. A data de caducidade está no pasado." #: private/share/share.php:1093 #, php-format @@ -381,30 +381,30 @@ msgstr "Non se atopou a infraestrutura de compartición %s" msgid "Sharing backend for %s not found" msgstr "Non se atopou a infraestrutura de compartición para %s" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Fallou a compartición de %s, a compartición orixinal é do usuario %s" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Fallou a compartición de %s, os permisos superan os permisos concedidos a %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Fallou a compartición de %s, non está permitido repetir a compartción" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Fallou a compartición de %s, a infraestrutura de compartición para %s non foi quen de atopar a orixe" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index ffeedcae8fb..116f8c76be5 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 5dddbd7abe6..38299f75c02 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hi_IN/lib.po b/l10n/hi_IN/lib.po index a8b8047d641..a2042585b4f 100644 --- a/l10n/hi_IN/lib.po +++ b/l10n/hi_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (India) (http://www.transifex.com/projects/p/owncloud/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index ac397211903..b2631b4f40d 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 46260a403fc..d78da603095 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -97,7 +97,7 @@ msgstr "Ismeretlen file tipús" msgid "Invalid image" msgstr "Hibás kép" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "webszolgáltatások saját kézben" @@ -360,7 +360,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -382,30 +382,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index 4d980ce1ea0..6535183f422 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index aad4efe0844..5546dab60c5 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "Typo de file incognite" msgid "Invalid image" msgstr "Imagine invalide" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "servicios web sub tu controlo" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index ffbe6fd5289..e91c22f41be 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "Tipe berkas tak dikenal" msgid "Invalid image" msgstr "Gambar tidak sah" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "layanan web dalam kendali anda" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/io/lib.po b/l10n/io/lib.po index bc7caa33dc4..c67bfff5ef1 100644 --- a/l10n/io/lib.po +++ b/l10n/io/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ido (http://www.transifex.com/projects/p/owncloud/language/io/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index cf456b3d5c5..1ae4c2bacf5 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 621ea45b3ce..7351c831fb5 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-16 01:54-0400\n" -"PO-Revision-Date: 2014-07-16 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-06 01:54-0400\n" +"PO-Revision-Date: 2014-08-05 16:39+0000\n" +"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,7 +80,7 @@ msgstr "Nessuna installazione di ownCloud trovata su {remote}" msgid "Invalid ownCloud url" msgstr "URL di ownCloud non valido" -#: js/sharedfilelist.js:123 +#: js/sharedfilelist.js:126 msgid "Shared by" msgstr "Condiviso da" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 2133bd69486..ae60469ff7e 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -98,7 +98,7 @@ msgstr "Tipo di file sconosciuto" msgid "Invalid image" msgstr "Immagine non valida" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "servizi web nelle tue mani" @@ -361,12 +361,12 @@ msgstr "Impostazione permessi per %s non riuscita, poiché l'elemento non è sta #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Impossibile impostare la data di scadenza. La data di scadenza è nel passato." #: private/share/share.php:1093 #, php-format @@ -383,30 +383,30 @@ msgstr "Motore di condivisione %s non trovato" msgid "Sharing backend for %s not found" msgstr "Motore di condivisione di %s non trovato" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Condivisione di %s non riuscita, poiché l'utente %s l'ha condiviso precedentemente" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Condivisione di %s non riuscita, poiché i permessi superano quelli accordati a %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Condivisione di %s non riuscita, poiché la ri-condivisione non è consentita" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Condivisione di %s non riuscita, poiché il motore di condivisione per %s non riesce a trovare la sua fonte" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index 92f321b5145..907229a3617 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -100,7 +100,7 @@ msgstr "不明なファイルタイプ" msgid "Invalid image" msgstr "無効な画像" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "管理下のウェブサービス" @@ -363,12 +363,12 @@ msgstr "%s の権限設定に失敗しました。アイテムが存在しませ #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "有効期限を設定できません。有効期限が過去を示しています。" #: private/share/share.php:1093 #, php-format @@ -385,30 +385,30 @@ msgstr "共有バックエンド %s が見つかりません" msgid "Sharing backend for %s not found" msgstr "%s のための共有バックエンドが見つかりません" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s の共有に失敗しました。ユーザー %s が元々の共有者であるからです。" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s の共有に失敗しました。%s に付与されている許可を超えているからです。" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s の共有に失敗しました。再共有が許されていないからです。" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s の共有に失敗しました。%s のバックエンド共有に必要なソースが見つかりませんでした。" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/jv/lib.po b/l10n/jv/lib.po index ebf5d373b45..930ff20654f 100644 --- a/l10n/jv/lib.po +++ b/l10n/jv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index e0630c0c5b5..edb68b34433 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "web services under your control" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index ef841fe019d..0d7321eeed9 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "មិនស្គាល់ប្រភេទឯកសារ" msgid "Invalid image" msgstr "រូបភាពមិនត្រឹមត្រូវ" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "សេវាកម្មវេបក្រោមការការបញ្ជារបស់អ្នក" @@ -359,7 +359,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -381,30 +381,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index c6f53a287e2..7e8cdc96222 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index ad75ea2128e..971dd4d085c 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -99,7 +99,7 @@ msgstr "알 수 없는 파일 형식" msgid "Invalid image" msgstr "잘못된 그림" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" @@ -362,7 +362,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -384,30 +384,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 54f47d957ff..b19f5689b15 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "ڕاژهی وێب لهژێر چاودێریت دایه" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 96f02ab4a46..03a680633bb 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "Onbekannten Fichier Typ" msgid "Invalid image" msgstr "Ongülteg d'Bild" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Web-Servicer ënnert denger Kontroll" @@ -358,7 +358,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -380,30 +380,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 31ef489227e..2c727a6859e 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -98,7 +98,7 @@ msgstr "Nežinomas failo tipas" msgid "Invalid image" msgstr "Netinkamas paveikslėlis" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" @@ -361,7 +361,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -383,30 +383,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 52c6a647e67..3bb42154b65 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "tīmekļa servisi tavā varā" @@ -358,7 +358,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -380,30 +380,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 81a62bada9e..2bbdce4a832 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "Непознат тип на датотека" msgid "Invalid image" msgstr "Невалидна фотографија" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" @@ -358,7 +358,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -380,30 +380,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ml/lib.po b/l10n/ml/lib.po index 6bcd5e27a57..3451e5d2cf0 100644 --- a/l10n/ml/lib.po +++ b/l10n/ml/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index af0ea366b5a..123c9295492 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/mn/lib.po b/l10n/mn/lib.po index 33584ddf8a9..bed5cb6e65f 100644 --- a/l10n/mn/lib.po +++ b/l10n/mn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 0f7fdc9ac4c..2794646230e 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 7c8231e7c85..23c9eb0c6fb 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 9f4ec142f18..43d95e0ef95 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "Ukjent filtype" msgid "Invalid image" msgstr "Ugyldig bilde" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "webtjenester som du kontrollerer" @@ -359,7 +359,7 @@ msgstr "Setting av tillatelser for %s feilet, fordi elementet ikke ble funnet" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -381,30 +381,30 @@ msgstr "Delings-server %s ikke funnet" msgid "Sharing backend for %s not found" msgstr "Delings-server for %s ikke funnet" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Deling av %s feilet, fordi brukeren %s er den opprinnelige eieren" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Deling av %s feilet, fordi tillatelsene går utover tillatelsene som er gitt til %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Deling av %s feilet, fordi videre-deling ikke er tillatt" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Deling av %s feilet, fordi delings-serveren for %s ikke kunne finne kilden" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po index 1c5e3781428..3ada3db6790 100644 --- a/l10n/nds/lib.po +++ b/l10n/nds/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 7d3294324ac..17ff28dc714 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index cec7a3c7f36..3705efc119f 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-22 01:54-0400\n" -"PO-Revision-Date: 2014-07-21 19:30+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-06 09:20+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "Deelde met u" #: appinfo/app.php:42 js/app.js:53 msgid "Shared with others" -msgstr "Deelde met anderen" +msgstr "Deelde u met anderen" #: appinfo/app.php:51 js/app.js:72 msgid "Shared by link" @@ -79,7 +79,7 @@ msgstr "Geen ownCloud installatie gevonden op {remote}" msgid "Invalid ownCloud url" msgstr "Ongeldige ownCloud url" -#: js/sharedfilelist.js:123 +#: js/sharedfilelist.js:126 msgid "Shared by" msgstr "Gedeeld door" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 92a37e90e4f..d8577d4399c 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -97,7 +97,7 @@ msgstr "Onbekend bestandsformaat" msgid "Invalid image" msgstr "Ongeldige afbeelding" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" @@ -360,12 +360,12 @@ msgstr "Instellen van de permissies voor %s is mislukt, omdat het object niet is #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Kon vervaldatum niet instellen. De vervaldatum ligt in het verleden" #: private/share/share.php:1093 #, php-format @@ -382,30 +382,30 @@ msgstr "Het share-backend %s is niet gevonden" msgid "Sharing backend for %s not found" msgstr "Het share-backend voor %s is niet gevonden" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Delen van %s is mislukt, omdat gebruiker %s de originele deler is" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Delen van %s is mislukt, omdat de rechten de aan %s toegekende autorisaties overschrijden" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Delen van %s is mislukt, omdat her-delen niet is toegestaan" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Delen van %s is mislukt, omdat de share-backend voor %s de bron niet kon vinden" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index f6d47dd3132..f01f562a244 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "Ukjend filtype" msgid "Invalid image" msgstr "Ugyldig bilete" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" @@ -359,7 +359,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -381,30 +381,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index 8860eeb9e19..5e92ee0569d 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index a86fdeca34b..f03146b0e7e 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Services web jos ton contraròtle" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/or_IN/lib.po b/l10n/or_IN/lib.po index 450c8606a3e..869d97ac47f 100644 --- a/l10n/or_IN/lib.po +++ b/l10n/or_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index f4110594393..db42aac9042 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index a0e2a8bc92f..6adb70afd3d 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -101,7 +101,7 @@ msgstr "Nieznany typ pliku" msgid "Invalid image" msgstr "Błędne zdjęcie" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "Kontrolowane serwisy" @@ -364,7 +364,7 @@ msgstr "Ustawienie uprawnień dla %s nie powiodło się, ponieważ element nie z #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -386,30 +386,30 @@ msgstr "Zaplecze %s do współdzielenia nie zostało znalezione" msgid "Sharing backend for %s not found" msgstr "Zaplecze do współdzielenia %s nie zostało znalezione" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s jest udostępniającym" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Współdzielenie %s nie powiodło się, ponieważ uprawnienia przekraczają te udzielone %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Współdzielenie %s nie powiodło się, ponieważ ponowne współdzielenie nie jest dozwolone" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Współdzielenie %s nie powiodło się, ponieważ zaplecze współdzielenia dla %s nie mogło znaleźć jego źródła" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 23537857712..c2618fbcd1a 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "Tipo de arquivo desconhecido" msgid "Invalid image" msgstr "Imagem inválida" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "serviços web sob seu controle" @@ -359,12 +359,12 @@ msgstr "Definir permissões para %s falhou, porque o item não foi encontrado" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Não é possível definir a data de validade. Data de expiração está no passado" #: private/share/share.php:1093 #, php-format @@ -381,30 +381,30 @@ msgstr "Compartilhamento backend %s não encontrado" msgid "Sharing backend for %s not found" msgstr "Compartilhamento backend para %s não encontrado" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Compartilhando %s falhou, porque o usuário %s é o compartilhador original" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Compartilhamento %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Compartilhamento %s falhou, porque recompartilhamentos não são permitidos" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Compartilhamento %s falhou, porque a infra-estrutura de compartilhamento para %s não conseguiu encontrar a sua fonte" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 58a68dea46a..be4e7e693ee 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -102,7 +102,7 @@ msgstr "Ficheiro desconhecido" msgid "Invalid image" msgstr "Imagem inválida" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "serviços web sob o seu controlo" @@ -365,12 +365,12 @@ msgstr "Definir permissões para %s falhou, porque o item não foi encontrado" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Não é possivel definir data de expiração. A data de expiração está no passado" #: private/share/share.php:1093 #, php-format @@ -387,30 +387,30 @@ msgstr "Partilha backend %s não foi encontrado" msgid "Sharing backend for %s not found" msgstr "Partilha backend para %s não foi encontrado" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "A partilha %s falhou, porque o utilizador %s é o proprietário original" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "A partilha %s falhou, porque repartilhar não é permitido" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "A partilha %s falhou, devido a partilha em segundo plano para %s não conseguir encontrar a sua fonte" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 7bd119dceec..36d4822ec2c 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "Tip fișier necunoscut" msgid "Invalid image" msgstr "Imagine invalidă" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "servicii web controlate de tine" @@ -359,7 +359,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -381,30 +381,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 8980dc0e918..b454b802f1e 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -32,9 +32,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-06 06:30+0000\n" +"Last-Translator: jekader <jekader@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -700,7 +700,7 @@ msgstr "Здравствуйте,\n\n%s предоставил Вам досту #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "Доступ пропадет в %s" +msgstr "Доступ будет закрыт %s" #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 5d19c5d89cc..c6cb569b993 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -8,7 +8,7 @@ # Denis <denispal@gmail.com>, 2014 # Evgenij Spitsyn <evgeniy@spitsyn.net>, 2013 # Gennady <mxiru@mail.ru>, 2014 -# jekader <jekader@gmail.com>, 2013 +# jekader <jekader@gmail.com>, 2013-2014 # mogarych <mogarych@mail.ru>, 2014 # Serge Shpikin <rkfg@rkfg.me>, 2013 # Swab <swab@i.ua>, 2014 @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-31 01:54-0400\n" -"PO-Revision-Date: 2014-07-31 05:30+0000\n" -"Last-Translator: wiracle\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-06 06:30+0000\n" +"Last-Translator: jekader <jekader@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -379,7 +379,7 @@ msgstr "WebDAV" msgid "" "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via " "WebDAV</a>" -msgstr "Используйте этот адресс для <a href=\"%s\" target=\"_blank\">доступа к вашим файлам через WebDAV</a>" +msgstr "Используйте этот адрес для <a href=\"%s\" target=\"_blank\">доступа файлам через WebDAV</a>" #: templates/list.php:5 msgid "New" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 2d9d096c366..51a403c0d07 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-01 01:54-0400\n" -"PO-Revision-Date: 2014-07-31 12:11+0000\n" -"Last-Translator: Vladislav <slash.cyberpunk@gmail.com>\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-06 06:40+0000\n" +"Last-Translator: jekader <jekader@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,15 +38,15 @@ msgstr "Невозможно добавить удалённую общую па #: appinfo/app.php:33 js/app.js:34 msgid "Shared with you" -msgstr "Доступно мне" +msgstr "Доступные для Вас" #: appinfo/app.php:42 js/app.js:53 msgid "Shared with others" -msgstr "Доступно другим" +msgstr "Доступные для других" #: appinfo/app.php:51 js/app.js:72 msgid "Shared by link" -msgstr "Доступно по ссылке" +msgstr "Доступные по ссылке" #: js/app.js:35 msgid "No files have been shared with you yet." diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 351f798520d..0b74996dedb 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -4,7 +4,7 @@ # # Translators: # Alexander Shashkevych <alex@stunpix.com>, 2013 -# jekader <jekader@gmail.com>, 2013 +# jekader <jekader@gmail.com>, 2013-2014 # Kalyuzhniy Aleksey, 2014 # sbh12 <mail_123@mail.ru>, 2014 # rodionc <rodionc@gmail.com>, 2014 @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -106,7 +106,7 @@ msgstr "Неизвестный тип файла" msgid "Invalid image" msgstr "Изображение повреждено" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" @@ -351,7 +351,7 @@ msgstr "Не удалось установить общий доступ для #: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" -msgstr "Такой втд общего доступа как %s не допустим для %s" +msgstr "Такой тип общего доступа как %s не допустим для %s" #: private/share/share.php:861 #, php-format @@ -369,12 +369,12 @@ msgstr "Не удалось произвести настройку прав д #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Невозможно установить дату окончания. Дата окончания в прошлом." #: private/share/share.php:1093 #, php-format @@ -391,30 +391,30 @@ msgstr "Бэкэнд для общего доступа %s не найден" msgid "Sharing backend for %s not found" msgstr "Бэкэнд для общего доступа к %s не найден" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Публикация %s неудачна, т.к. пользователь %s - публикатор оригинала файла" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Не удалось опубликовать %s, т.к. права %s превышают предоставленные права доступа " -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Публикация %s неудачна, т.к републикация запрещена" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Не удалось опубликовать %s, т.к. опубликованный бэкенд для %s не смог найти свой источник" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 6a9573bff8e..240b8f1eff9 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -12,7 +12,7 @@ # Denis <denispal@gmail.com>, 2014 # Denis <denispal@gmail.com>, 2014 # Evgenij Spitsyn <evgeniy@spitsyn.net>, 2013 -# jekader <jekader@gmail.com>, 2013 +# jekader <jekader@gmail.com>, 2013-2014 # Михаил Маслиёв <misha.masliev@yandex.ru>, 2014 # Glosshead <o44ehb@gmail.com>, 2014 # Serge Shpikin <rkfg@rkfg.me>, 2013 @@ -31,9 +31,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-19 01:54-0400\n" -"PO-Revision-Date: 2014-07-18 14:31+0000\n" -"Last-Translator: wiracle\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-06 06:50+0000\n" +"Last-Translator: jekader <jekader@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,7 +52,7 @@ msgstr "Сохранено" #: admin/controller.php:90 msgid "test email settings" -msgstr "тест настроек почты" +msgstr "проверить настройки почты" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." @@ -329,19 +329,19 @@ msgstr "Восстановить ключи шифрования." msgid "Unable to delete {objName}" msgstr "Невозможно удалить {objName}" -#: js/users/groups.js:92 js/users/groups.js:200 +#: js/users/groups.js:94 js/users/groups.js:202 msgid "Error creating group" msgstr "Ошибка создания группы" -#: js/users/groups.js:199 +#: js/users/groups.js:201 msgid "A valid group name must be provided" msgstr "Введите правильное имя группы" -#: js/users/groups.js:227 +#: js/users/groups.js:229 msgid "deleted {groupName}" msgstr "удалено {groupName}" -#: js/users/groups.js:228 js/users/users.js:296 +#: js/users/groups.js:230 js/users/users.js:296 msgid "undo" msgstr "отмена" @@ -385,7 +385,7 @@ msgstr "Ошибка создания пользователя" msgid "A valid password must be provided" msgstr "Укажите валидный пароль" -#: js/users/users.js:667 +#: js/users/users.js:669 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Предупреждение: домашняя папка пользователя \"{user}\" уже существует" @@ -415,7 +415,7 @@ msgstr "Только критические проблемы" #: templates/admin.php:16 templates/admin.php:23 msgid "None" -msgstr "Нет новостей" +msgstr "Отсутствует" #: templates/admin.php:17 msgid "Login" @@ -598,7 +598,7 @@ msgstr "Разрешить пользователям публикации че #: templates/admin.php:249 msgid "Enforce password protection" -msgstr "Обязательная защита паролем" +msgstr "Защита паролем обязательна" #: templates/admin.php:252 msgid "Allow public uploads" @@ -606,11 +606,11 @@ msgstr "Разрешить открытые загрузки" #: templates/admin.php:256 msgid "Set default expiration date" -msgstr "Установите срок действия по-умолчанию" +msgstr "Установить срок действия по-умолчанию" #: templates/admin.php:260 msgid "Expire after " -msgstr "Заканчивается после" +msgstr "Заканчивается через" #: templates/admin.php:263 msgid "days" @@ -618,7 +618,7 @@ msgstr "дней" #: templates/admin.php:266 msgid "Enforce expiration date" -msgstr "Обеспечить соблюдение сроков действия" +msgstr "Срок действия обязателен" #: templates/admin.php:271 msgid "Allow resharing" @@ -647,7 +647,7 @@ msgstr "Безопасность" #: templates/admin.php:314 msgid "Enforce HTTPS" -msgstr "Принудить к HTTPS" +msgstr "HTTPS соединение обязательно" #: templates/admin.php:316 #, php-format @@ -659,11 +659,11 @@ msgstr "Принудить клиентов подключаться к %s че msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL." +msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить обязательные SSL подключения." #: templates/admin.php:332 msgid "Email Server" -msgstr "Сервер почты" +msgstr "Почтовый сервер" #: templates/admin.php:334 msgid "This is used for sending out notifications." @@ -691,19 +691,19 @@ msgstr "Порт" #: templates/admin.php:400 msgid "Credentials" -msgstr "Полномочия" +msgstr "Учётные данные" #: templates/admin.php:401 msgid "SMTP Username" -msgstr "Имя пользователя" +msgstr "Пользователь SMTP" #: templates/admin.php:404 msgid "SMTP Password" -msgstr "Пароль" +msgstr "Пароль SMTP" #: templates/admin.php:408 msgid "Test email settings" -msgstr "Тест настроек" +msgstr "Проверить настройки почты" #: templates/admin.php:409 msgid "Send email" @@ -753,7 +753,7 @@ msgstr "Выберите приложение" #: templates/apps.php:43 msgid "Documentation:" -msgstr "Документация" +msgstr "Документация:" #: templates/apps.php:49 msgid "See application page at apps.owncloud.com" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index b1af9f1ecad..2874f835262 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index f5ed8c0a89a..5710a535994 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 5927fdcccfe..c7c0d2d25eb 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -97,7 +97,7 @@ msgstr "Neznámy typ súboru" msgid "Invalid image" msgstr "Chybný obrázok" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" @@ -360,7 +360,7 @@ msgstr "Nastavenie povolení pre %s zlyhalo, pretože položka sa nenašla" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -382,30 +382,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Zdieľanie %s zlyhalo, pretože používateľ %s je pôvodcom zdieľania" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Zdieľanie %s zlyhalo, pretože povolenia prekračujú povolenia udelené %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Zdieľanie %s zlyhalo, pretože zdieľanie ďalším nie je povolené" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Zdieľanie %s zlyhalo, backend zdieľania nenašiel zdrojový %s" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index a43f97b4230..08626eb0fa6 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "Neznana vrsta datoteke" msgid "Invalid image" msgstr "Neveljavna slika" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" @@ -359,7 +359,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -381,30 +381,30 @@ msgstr "Ozadnjega programa %s za souporabo ni mogoče najti" msgid "Sharing backend for %s not found" msgstr "Ozadnjega programa za souporabo za %s ni mogoče najti" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index f6d25a1221e..26659f62a01 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "shërbime web nën kontrollin tënd" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 94b0efaa55e..2a0d16602f1 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "веб сервиси под контролом" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 8efd77e622a..071518940a2 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/su/lib.po b/l10n/su/lib.po index 28f60ee8dd7..b51e094c343 100644 --- a/l10n/su/lib.po +++ b/l10n/su/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 62cb77fe032..f010418091f 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -103,7 +103,7 @@ msgstr "Okänd filtyp" msgid "Invalid image" msgstr "Ogiltig bild" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "webbtjänster under din kontroll" @@ -366,7 +366,7 @@ msgstr "Att sätta rättigheterna för %s misslyckades därför att objektet int #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -388,30 +388,30 @@ msgstr "Delningsgränssnittet %s hittades inte" msgid "Sharing backend for %s not found" msgstr "Delningsgränssnittet för %s hittades inte" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Delning %s misslyckades därför att användaren %s är den som delade objektet först" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Delning %s misslyckades därför att rättigheterna överskrider de rättigheter som är tillåtna för %s" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Delning %s misslyckades därför att vidaredelning inte är tillåten" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Delning %s misslyckades därför att delningsgränsnittet för %s inte kunde hitta sin källa" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 55c53fe9545..3603aafd97d 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ta_IN/lib.po b/l10n/ta_IN/lib.po index a15f47f2cc7..be11c6da414 100644 --- a/l10n/ta_IN/lib.po +++ b/l10n/ta_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 55dd92def6a..12bf8af75a5 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index b422d9ef20d..443afdb40b7 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 82abc6e4db7..e640e26883e 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 19d050abb25..e0437bef4ac 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 830f4f9256f..2a6b8ae2878 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index de78c17a0ae..4a9037206a9 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 570c88895ad..6825ff26519 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index f8737aba48d..d7a9a4c6ed1 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index ed77bfa04f6..25d06c24fce 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index abf984ecc17..ed2f36050ec 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -95,7 +95,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -358,7 +358,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -380,30 +380,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 4712c98791a..9d7a4ff5b4d 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -62,7 +62,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: defaults.php:38 +#: defaults.php:42 msgid "web services under your control" msgstr "" @@ -317,7 +317,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: share/share.php:968 @@ -339,30 +339,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: share/share.php:1523 +#: share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: share/share.php:1532 +#: share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: share/share.php:1548 +#: share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: share/share.php:1560 +#: share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: share/share.php:1574 +#: share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 56bcf79db8f..b69c536a181 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index f7ecb203872..f72862f8680 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -253,59 +253,59 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 5000492ace8..8c8d598c78a 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 8b032c31373..95595b8a552 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 9687dd47d8b..a290f9ac677 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -98,7 +98,7 @@ msgstr "Bilinmeyen dosya türü" msgid "Invalid image" msgstr "Geçersiz resim" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "denetiminizdeki web hizmetleri" @@ -361,12 +361,12 @@ msgstr "%s için izinler öge bulunamadığından ayarlanamadı" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Son kullanma tarihi ayarlanamıyor. Son kullanma tarihi geçmişte" #: private/share/share.php:1093 #, php-format @@ -383,30 +383,30 @@ msgstr "Paylaşım arka ucu %s bulunamadı" msgid "Sharing backend for %s not found" msgstr "%s için paylaşım arka ucu bulunamadı" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s paylaşımı, %s kullanıcısı özgün paylaşan kişi olduğundan başarısız oldu" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s paylaşımı, izinler %s için verilen izinleri aştığından dolayı başarısız oldu" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s paylaşımı, tekrar paylaşımın izin verilmemesinden dolayı başarısız oldu" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s paylaşımı, %s için arka ucun kaynağını bulamamasından dolayı başarısız oldu" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index 3a9cfcc5045..d4ed94cf1e3 100644 --- a/l10n/tzm/lib.po +++ b/l10n/tzm/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 705c44259e8..f796b3e1b74 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 1a1dbf88a5e..8918561424b 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "Невідомий тип файлу" msgid "Invalid image" msgstr "Невірне зображення" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "підконтрольні Вам веб-сервіси" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ur/lib.po b/l10n/ur/lib.po index c5e105e5015..78f849635a2 100644 --- a/l10n/ur/lib.po +++ b/l10n/ur/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index abfaac914a3..ae6d45f9f7b 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "غیر معرروف قسم کی فائل" msgid "Invalid image" msgstr "غلط تصویر" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po index 327bbe06e86..38223bdb655 100644 --- a/l10n/uz/lib.po +++ b/l10n/uz/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 15deb0d6158..549f5131024 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "Không biết kiểu tập tin" msgid "Invalid image" msgstr "Hình ảnh không hợp lệ" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 0be816494ef..cfa3dbdf602 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -100,7 +100,7 @@ msgstr "未知的文件类型" msgid "Invalid image" msgstr "无效的图像" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "您控制的网络服务" @@ -363,7 +363,7 @@ msgstr "设置 %s 的权限失败,因为未找到到对应项" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -385,30 +385,30 @@ msgstr "未找到共享后端 %s" msgid "Sharing backend for %s not found" msgstr "%s 的共享后端未找到" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "共享 %s 失败,因为用户 %s 不是原始共享者" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "共享 %s 失败,因为权限超过了 %s 已有权限" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "共享 %s 失败,因为不允许二次共享" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "共享 %s 失败,因为 %s 使用的共享后端未找到它的来源" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 608a5e66bee..ff4341c28fc 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -379,30 +379,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 0d54e2456ea..021e6272d20 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-05 02:03-0400\n" -"PO-Revision-Date: 2014-08-05 06:03+0000\n" +"POT-Creation-Date: 2014-08-07 01:54-0400\n" +"PO-Revision-Date: 2014-08-07 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -96,7 +96,7 @@ msgstr "未知的檔案類型" msgid "Invalid image" msgstr "無效的圖片" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "由您控制的網路服務" @@ -359,7 +359,7 @@ msgstr "" #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " -"where shared" +"have been shared" msgstr "" #: private/share/share.php:968 @@ -381,30 +381,30 @@ msgstr "" msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1523 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1532 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1548 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1560 +#: private/share/share.php:1561 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1574 +#: private/share/share.php:1575 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index 5da769bfca5..4a2d04eaace 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Споделянето на тип %s не валидно за %s.", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Неуспешна промяна на правата за достъп за %s, защото промените надвишават правата на достъп дадени на %s.", "Setting permissions for %s failed, because the item was not found" => "Неуспешна промяна на правата за достъп за %s, защото съдържанието не е открито.", +"Cannot set expiration date. Expiration date is in the past" => "Неуспешно задаване на дата на изтичане. Датата на изтичане е в миналото", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс.", "Sharing backend %s not found" => "Споделянето на сървърния %s не е открито.", "Sharing backend for %s not found" => "Споделянето на сървъра за %s не е открито.", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 336579588ab..c46139da321 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Sdílení typu %s není korektní pro %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Nastavení oprávnění pro %s selhalo, protože jsou k tomu nutná vyšší oprávnění, než jaká byla povolena pro %s", "Setting permissions for %s failed, because the item was not found" => "Nastavení práv pro %s selhalo, protože položka nebyla nalezena", +"Cannot set expiration date. Expiration date is in the past" => "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti.", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Podpůrná vrstva pro sdílení %s musí obsahovat rozhraní OCP\\Share_Backend", "Sharing backend %s not found" => "Podpůrná vrstva sdílení %s nenalezena", "Sharing backend for %s not found" => "Podpůrná vrstva sdílení pro %s nenalezena", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index d951975c478..9bb1f76488a 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Freigabetyp %s ist nicht gültig für %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten", "Setting permissions for %s failed, because the item was not found" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde", +"Cannot set expiration date. Expiration date is in the past" => "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit.", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden", "Sharing backend %s not found" => "Freigabe-Backend %s nicht gefunden", "Sharing backend for %s not found" => "Freigabe-Backend für %s nicht gefunden", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index e142fb9f7a9..edb1d7a46f3 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Freigabetyp %s ist nicht gültig für %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten", "Setting permissions for %s failed, because the item was not found" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde", +"Cannot set expiration date. Expiration date is in the past" => "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit.", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden", "Sharing backend %s not found" => "Freigabe-Backend %s nicht gefunden", "Sharing backend for %s not found" => "Freigabe-Backend für %s nicht gefunden", diff --git a/lib/l10n/en_GB.php b/lib/l10n/en_GB.php index e1e485058e1..0553e80d70e 100644 --- a/lib/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Share type %s is not valid for %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Setting permissions for %s failed, because the permissions exceed permissions granted to %s", "Setting permissions for %s failed, because the item was not found" => "Setting permissions for %s failed, because the item was not found", +"Cannot set expiration date. Expiration date is in the past" => "Cannot set expiry date. Expiry date is in the past", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Sharing backend %s must implement the interface OCP\\Share_Backend", "Sharing backend %s not found" => "Sharing backend %s not found", "Sharing backend for %s not found" => "Sharing backend for %s not found", diff --git a/lib/l10n/es.php b/lib/l10n/es.php index fb059bf8b7a..bb0aadeba2e 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Compartir tipo %s no es válido para %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Configuración de permisos para %s ha fallado, ya que los permisos superan los permisos dados a %s", "Setting permissions for %s failed, because the item was not found" => "Configuración de permisos para %s ha fallado, ya que el elemento no fue encontrado", +"Cannot set expiration date. Expiration date is in the past" => "No se puede fijar la fecha de caducidad. La fecha de caducidad está en el pasado.", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "El motor compartido %s debe implementar la interfaz OCP\\Share_Backend", "Sharing backend %s not found" => "El motor compartido %s no se ha encontrado", "Sharing backend for %s not found" => "Motor compartido para %s no encontrado", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 0bdfd6fef97..5221b35a307 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "%s elkarbanaketa mota ez da %srentzako egokia", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "%srentzako baimenak ezartzea huts egin du, baimenak %sri emandakoak baino gehiago direlako", "Setting permissions for %s failed, because the item was not found" => "%srentzako baimenak ezartzea huts egin du, aurkitu ez delako", +"Cannot set expiration date. Expiration date is in the past" => "Ezin da jarri iraungitze data. Iraungitze data iragan da.", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "%s elkarbanaketa motorra OCP\\Share_Backend interfazea inplementatu behar du ", "Sharing backend %s not found" => "Ez da %s elkarbanaketa motorra aurkitu", "Sharing backend for %s not found" => "Ez da %srako elkarbanaketa motorrik aurkitu", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 3a6e5bcfeb8..b1e0cc6698f 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -59,6 +59,7 @@ $TRANSLATIONS = array( "You need to provide a password to create a public link, only protected links are allowed" => "Anna salasana luodaksesi julkisen linkin. Vain suojatut linkit ovat sallittuja", "Sharing %s failed, because sharing with links is not allowed" => "Kohteen %s jakaminen epäonnistui, koska jakaminen linkkejä käyttäen ei ole sallittu", "Setting permissions for %s failed, because the item was not found" => "Kohteen %s oikeuksien asettaminen epäonnistui, koska kohdetta ei löytynyt", +"Cannot set expiration date. Expiration date is in the past" => "Vanhentumispäivää ei voi asettaa. Vanhentumispäivä on jo mennyt", "Sharing backend %s not found" => "Jakamisen taustaosaa %s ei löytynyt", "Sharing backend for %s not found" => "Jakamisen taustaosaa kohteelle %s ei löytynyt", "Sharing %s failed, because the user %s is the original sharer" => "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on alkuperäinen jakaja", @@ -91,6 +92,8 @@ $TRANSLATIONS = array( "PHP %s or higher is required." => "PHP %s tai sitä uudempi vaaditaan.", "Please ask your server administrator to update PHP to the latest version. Your PHP version is no longer supported by ownCloud and the PHP community." => "Pyydä palvelimen ylläpitäjää päivittämään PHP uusimpaan versioon. Käyttämäsi PHP-versio ei ole enää tuettu ownCloud- ja PHP-yhteisön toimesta.", "PHP Safe Mode is enabled. ownCloud requires that it is disabled to work properly." => "PHP:n \"Safe Mode\" on käytössä. ownCloud vaatii toimiakseen \"Safe Moden\" poistamisen käytöstä.", +"Magic Quotes is enabled. ownCloud requires that it is disabled to work properly." => "Magic Quotes -asetus on käytössä. ownCloud vaatii toimiakseen kyseisen asetuksen poistamisen käytöstä.", +"Magic Quotes is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "Magic Quotes -asetus on vanhennettu ja pääosin hyödytön, joten se tulisi poistaa käytöstä. Pyydä palvelimen ylläpitäjää poistamaan asetus käytöstä php.ini-tiedoston avulla tai http-palvelimen asetuksista.", "PHP modules have been installed, but they are still listed as missing?" => "PHP-moduulit on asennettu, mutta ovatko ne vieläkin listattu puuttuviksi?", "Please ask your server administrator to restart the web server." => "Pyydä palvelimen ylläpitäjää käynnistämään web-palvelin uudelleen.", "PostgreSQL >= 9 required" => "PostgreSQL >= 9 vaaditaan", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index 8d580f6125b..26ded2e51b1 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Non se admite a compartición do tipo %s para %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Non é posíbel estabelecer permisos para %s, os permisos superan os permisos concedidos a %s", "Setting permissions for %s failed, because the item was not found" => "Non é posíbel estabelecer permisos para %s, non se atopa o elemento", +"Cannot set expiration date. Expiration date is in the past" => "Non é posíbel estabelecer a data de caducidade. A data de caducidade está no pasado.", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "A infraestrutura de compartición %s ten que implementar a interface OCP\\Share_Backend", "Sharing backend %s not found" => "Non se atopou a infraestrutura de compartición %s", "Sharing backend for %s not found" => "Non se atopou a infraestrutura de compartición para %s", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 7c971c60092..08d356b9f62 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Il tipo di condivisione %s non è valido per %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Impostazione permessi per %s non riuscita, poiché i permessi superano i permessi accordati a %s", "Setting permissions for %s failed, because the item was not found" => "Impostazione permessi per %s non riuscita, poiché l'elemento non è stato trovato", +"Cannot set expiration date. Expiration date is in the past" => "Impossibile impostare la data di scadenza. La data di scadenza è nel passato.", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Il motore di condivisione %s deve implementare l'interfaccia OCP\\Share_Backend", "Sharing backend %s not found" => "Motore di condivisione %s non trovato", "Sharing backend for %s not found" => "Motore di condivisione di %s non trovato", diff --git a/lib/l10n/ja.php b/lib/l10n/ja.php index 435db02ef09..13b70541ad4 100644 --- a/lib/l10n/ja.php +++ b/lib/l10n/ja.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "%s の共有方法は、%s には適用できません。", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "%s の権限設定に失敗しました。%s に許可されている権限を越えています。", "Setting permissions for %s failed, because the item was not found" => "%s の権限設定に失敗しました。アイテムが存在しません。", +"Cannot set expiration date. Expiration date is in the past" => "有効期限を設定できません。有効期限が過去を示しています。", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "%s のバックエンドの共有には、OCP\\Share_Backend インターフェースを実装しなければなりません。", "Sharing backend %s not found" => "共有バックエンド %s が見つかりません", "Sharing backend for %s not found" => "%s のための共有バックエンドが見つかりません", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index b758e5776ed..7b5aff3217f 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Delen van type %s is niet geldig voor %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Instellen van de permissies voor %s is mislukt, omdat de permissies hoger zijn dan de aan %s toegekende permissies", "Setting permissions for %s failed, because the item was not found" => "Instellen van de permissies voor %s is mislukt, omdat het object niet is gevonden", +"Cannot set expiration date. Expiration date is in the past" => "Kon vervaldatum niet instellen. De vervaldatum ligt in het verleden", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Het share-backend %s moet de OCP\\Share_Backend interface implementeren", "Sharing backend %s not found" => "Het share-backend %s is niet gevonden", "Sharing backend for %s not found" => "Het share-backend voor %s is niet gevonden", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 72142183995..16ca7965402 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Tipo de compartilhamento %s não é válido para %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s", "Setting permissions for %s failed, because the item was not found" => "Definir permissões para %s falhou, porque o item não foi encontrado", +"Cannot set expiration date. Expiration date is in the past" => "Não é possível definir a data de validade. Data de expiração está no passado", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Compartilhando backend %s deve implementar a interface OCP\\Share_Backend", "Sharing backend %s not found" => "Compartilhamento backend %s não encontrado", "Sharing backend for %s not found" => "Compartilhamento backend para %s não encontrado", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 9629d47a023..49977bb2d4f 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "O tipo de partilha %s não é válido para %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s", "Setting permissions for %s failed, because the item was not found" => "Definir permissões para %s falhou, porque o item não foi encontrado", +"Cannot set expiration date. Expiration date is in the past" => "Não é possivel definir data de expiração. A data de expiração está no passado", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Partilhar backend %s tem de implementar o interface OCP\\Share_Backend", "Sharing backend %s not found" => "Partilha backend %s não foi encontrado", "Sharing backend for %s not found" => "Partilha backend para %s não foi encontrado", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 64ce78990a1..c8514fc3f9e 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -64,9 +64,10 @@ $TRANSLATIONS = array( "Sharing %s failed, because %s is not a member of the group %s" => "Не удалось установить общий доступ для %s, %s не является членом группы %s", "You need to provide a password to create a public link, only protected links are allowed" => "Вам нужно задать пароль для создания публичной ссылки. Разрешены только защищённые ссылки", "Sharing %s failed, because sharing with links is not allowed" => "Не удалось установить общий доступ для %s, потому что обмен со ссылками не допускается", -"Share type %s is not valid for %s" => "Такой втд общего доступа как %s не допустим для %s", +"Share type %s is not valid for %s" => "Такой тип общего доступа как %s не допустим для %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Настройка прав доступа для %s невозможна, поскольку права доступа превышают предоставленные права доступа %s", "Setting permissions for %s failed, because the item was not found" => "Не удалось произвести настройку прав доступа для %s , элемент не был найден.", +"Cannot set expiration date. Expiration date is in the past" => "Невозможно установить дату окончания. Дата окончания в прошлом.", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Бэкенд для опубликования %s должен реализовывать интерфейс OCP\\Share_Backend", "Sharing backend %s not found" => "Бэкэнд для общего доступа %s не найден", "Sharing backend for %s not found" => "Бэкэнд для общего доступа к %s не найден", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 5586943c262..39d80a30b3d 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "%s paylaşım türü %s için geçerli değil", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "%s için izinler, izinler %s için verilen izinleri aştığından dolayı ayarlanamadı", "Setting permissions for %s failed, because the item was not found" => "%s için izinler öge bulunamadığından ayarlanamadı", +"Cannot set expiration date. Expiration date is in the past" => "Son kullanma tarihi ayarlanamıyor. Son kullanma tarihi geçmişte", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Paylaşma arka ucu %s OCP\\Share_Backend arayüzünü desteklemeli", "Sharing backend %s not found" => "Paylaşım arka ucu %s bulunamadı", "Sharing backend for %s not found" => "%s için paylaşım arka ucu bulunamadı", diff --git a/lib/private/defaults.php b/lib/private/defaults.php index a439bf0d6db..dfd114cd2fe 100644 --- a/lib/private/defaults.php +++ b/lib/private/defaults.php @@ -18,6 +18,8 @@ class OC_Defaults { private $defaultTitle; private $defaultBaseUrl; private $defaultSyncClientUrl; + private $defaultiOSClientUrl; + private $defaultAndroidClientUrl; private $defaultDocBaseUrl; private $defaultDocVersion; private $defaultSlogan; @@ -28,18 +30,20 @@ class OC_Defaults { $this->l = OC_L10N::get('lib'); $version = OC_Util::getVersion(); - $this->defaultEntity = "ownCloud"; /* e.g. company name, used for footers and copyright notices */ - $this->defaultName = "ownCloud"; /* short name, used when referring to the software */ - $this->defaultTitle = "ownCloud"; /* can be a longer name, for titles */ - $this->defaultBaseUrl = "https://owncloud.org"; - $this->defaultSyncClientUrl = "https://owncloud.org/sync-clients/"; - $this->defaultDocBaseUrl = "http://doc.owncloud.org"; - $this->defaultDocVersion = $version[0] . ".0"; // used to generate doc links - $this->defaultSlogan = $this->l->t("web services under your control"); - $this->defaultLogoClaim = ""; - $this->defaultMailHeaderColor = "#1d2d44"; /* header color of mail notifications */ - - if (class_exists("OC_Theme")) { + $this->defaultEntity = 'ownCloud'; /* e.g. company name, used for footers and copyright notices */ + $this->defaultName = 'ownCloud'; /* short name, used when referring to the software */ + $this->defaultTitle = 'ownCloud'; /* can be a longer name, for titles */ + $this->defaultBaseUrl = 'https://owncloud.org'; + $this->defaultSyncClientUrl = 'https://owncloud.org/sync-clients/'; + $this->defaultiOSClientUrl = 'https://itunes.apple.com/us/app/owncloud/id543672169?mt=8'; + $this->defaultAndroidClientUrl = 'https://play.google.com/store/apps/details?id=com.owncloud.android'; + $this->defaultDocBaseUrl = 'http://doc.owncloud.org'; + $this->defaultDocVersion = $version[0] . '.0'; // used to generate doc links + $this->defaultSlogan = $this->l->t('web services under your control'); + $this->defaultLogoClaim = ''; + $this->defaultMailHeaderColor = '#1d2d44'; /* header color of mail notifications */ + + if (class_exists('OC_Theme')) { $this->theme = new OC_Theme(); } } @@ -79,6 +83,30 @@ class OC_Defaults { } /** + * Returns the URL to the App Store for the iOS Client + * @return string URL + */ + public function getiOSClientUrl() { + if ($this->themeExist('getiOSClientUrl')) { + return $this->theme->getiOSClientUrl(); + } else { + return $this->defaultiOSClientUrl; + } + } + + /** + * Returns the URL to Google Play for the Android Client + * @return string URL + */ + public function getAndroidClientUrl() { + if ($this->themeExist('getAndroidClientUrl')) { + return $this->theme->getAndroidClientUrl(); + } else { + return $this->defaultAndroidClientUrl; + } + } + + /** * Returns the documentation URL * @return string URL */ @@ -158,7 +186,7 @@ class OC_Defaults { if ($this->themeExist('getShortFooter')) { $footer = $this->theme->getShortFooter(); } else { - $footer = "<a href=\"". $this->getBaseUrl() . "\" target=\"_blank\">" .$this->getEntity() . "</a>". + $footer = '<a href="'. $this->getBaseUrl() . '" target="_blank">' .$this->getEntity() . '</a>'. ' – ' . $this->getSlogan(); } diff --git a/lib/private/group/database.php b/lib/private/group/database.php index b7148f38fe3..8d6ea1f50a5 100644 --- a/lib/private/group/database.php +++ b/lib/private/group/database.php @@ -185,7 +185,7 @@ class OC_Group_Database extends OC_Group_Backend { public function groupExists($gid) { $query = OC_DB::prepare('SELECT `gid` FROM `*PREFIX*groups` WHERE `gid` = ?'); $result = $query->execute(array($gid))->fetchOne(); - if ($result) { + if ($result !== false) { return true; } return false; diff --git a/lib/private/group/manager.php b/lib/private/group/manager.php index 368fa3851d7..bea7ad193bf 100644 --- a/lib/private/group/manager.php +++ b/lib/private/group/manager.php @@ -126,7 +126,7 @@ class Manager extends PublicEmitter implements IGroupManager { * @return \OC\Group\Group */ public function createGroup($gid) { - if (!$gid) { + if ($gid === '' || is_null($gid)) { return false; } else if ($group = $this->get($gid)) { return $group; diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 450c71cf8a2..646511fd64d 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -956,8 +956,8 @@ class Share extends \OC\Share\Constants { $maxDays = \OCP\Config::getAppValue('core', 'shareapi_expire_after_n_days', '7'); $maxDate->add(new \DateInterval('P' . $maxDays . 'D')); if ($date > $maxDate) { - $warning = 'Cannot set expiration date. Shares cannot expire later than ' . $maxDays . ' after they where shared'; - $warning_t = $l->t('Cannot set expiration date. Shares cannot expire later than %s after they where shared', array($maxDays)); + $warning = 'Cannot set expiration date. Shares cannot expire later than ' . $maxDays . ' after they have been shared'; + $warning_t = $l->t('Cannot set expiration date. Shares cannot expire later than %s after they have been shared', array($maxDays)); \OCP\Util::writeLog('OCP\Share', $warning, \OCP\Util::WARN); throw new \Exception($warning_t); } @@ -1114,7 +1114,7 @@ class Share extends \OC\Share\Constants { * * Resharing is allowed by default if not configured */ - private static function isResharingAllowed() { + public static function isResharingAllowed() { if (!isset(self::$isResharingAllowed)) { if (\OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes') == 'yes') { self::$isResharingAllowed = true; @@ -1388,7 +1388,8 @@ class Share extends \OC\Share\Constants { } if ($mounts[$row['storage']]) { $path = $mounts[$row['storage']]->getMountPoint().$row['path']; - $row['path'] = substr($path, $root); + $relPath = substr($path, $root); // path relative to data/user + $row['path'] = rtrim($relPath, '/'); } } } diff --git a/lib/private/user.php b/lib/private/user.php index a8431af97fd..5efe205ced9 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -337,7 +337,7 @@ class OC_User { * Checks if the user is logged in */ public static function isLoggedIn() { - if (\OC::$session->get('user_id') && self::$incognitoMode === false) { + if (\OC::$session->get('user_id') !== null && self::$incognitoMode === false) { return self::userExists(\OC::$session->get('user_id')); } return false; diff --git a/lib/private/user/session.php b/lib/private/user/session.php index 8c9b3e264e3..6abf8fb80d2 100644 --- a/lib/private/user/session.php +++ b/lib/private/user/session.php @@ -106,7 +106,7 @@ class Session implements IUserSession, Emitter { return $this->activeUser; } else { $uid = $this->session->get('user_id'); - if ($uid) { + if ($uid !== null) { $this->activeUser = $this->manager->get($uid); return $this->activeUser; } else { diff --git a/lib/public/defaults.php b/lib/public/defaults.php index 34b68903ee8..9af31245ff4 100644 --- a/lib/public/defaults.php +++ b/lib/public/defaults.php @@ -66,6 +66,22 @@ class Defaults { } /** + * link to the iOS client + * @return string + */ + public function getiOSClientUrl() { + return $this->defaults->getiOSClientUrl(); + } + + /** + * link to the Android client + * @return string + */ + public function getAndroidClientUrl() { + return $this->defaults->getAndroidClientUrl(); + } + + /** * base URL to the documentation of your ownCloud instance * @return string */ diff --git a/lib/public/share.php b/lib/public/share.php index c0939dce53f..e6519dd3e3a 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -330,6 +330,15 @@ class Share extends \OC\Share\Constants { public static function checkPasswordProtectedShare(array $linkItem) { return \OC\Share\Share::checkPasswordProtectedShare($linkItem); } + + /** + * Check if resharing is allowed + * + * @return boolean true if allowed or false + */ + public static function isResharingAllowed() { + return \OC\Share\Share::isResharingAllowed(); + } } /** diff --git a/settings/js/apps.js b/settings/js/apps.js index 1077a2e7d30..e808e51e936 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -284,7 +284,7 @@ OC.Settings.Apps = OC.Settings.Apps || { if(container.children('li[data-id="'+entry.id+'"]').length === 0){ var li=$('<li></li>'); li.attr('data-id', entry.id); - var img= $('<img class="icon"/>').attr({ src: entry.icon}); + var img= $('<img class="app-icon"/>').attr({ src: entry.icon}); var a=$('<a></a>').attr('href', entry.href); var filename=$('<span></span>'); filename.text(entry.name); diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 68ee6923d7f..e4d1b5a2a37 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -2,7 +2,7 @@ $TRANSLATIONS = array( "Invalid value supplied for %s" => "Неверное значение для %s", "Saved" => "Сохранено", -"test email settings" => "тест настроек почты", +"test email settings" => "проверить настройки почты", "If you received this email, the settings seem to be correct." => "Если вы получили это письмо, настройки верны.", "A problem occurred while sending the e-mail. Please revisit your settings." => "Произошла ошибка при отправке сообщения электронной почты, пожалуйста, пожалуйста проверьте настройки.", "Email sent" => "Письмо отправлено", @@ -88,7 +88,7 @@ $TRANSLATIONS = array( "Warnings, errors and fatal issues" => "Предупреждения, ошибки и критические проблемы", "Errors and fatal issues" => "Ошибки и критические проблемы", "Fatal issues only" => "Только критические проблемы", -"None" => "Нет новостей", +"None" => "Отсутствует", "Login" => "Логин", "Plain" => "Простой", "NT LAN Manager" => "Мендеджер NT LAN", @@ -124,32 +124,32 @@ $TRANSLATIONS = array( "Sharing" => "Общий доступ", "Allow apps to use the Share API" => "Позволить приложениям использовать API общего доступа", "Allow users to share via link" => "Разрешить пользователям публикации через ссылки", -"Enforce password protection" => "Обязательная защита паролем", +"Enforce password protection" => "Защита паролем обязательна", "Allow public uploads" => "Разрешить открытые загрузки", -"Set default expiration date" => "Установите срок действия по-умолчанию", -"Expire after " => "Заканчивается после", +"Set default expiration date" => "Установить срок действия по-умолчанию", +"Expire after " => "Заканчивается через", "days" => "дней", -"Enforce expiration date" => "Обеспечить соблюдение сроков действия", +"Enforce expiration date" => "Срок действия обязателен", "Allow resharing" => "Разрешить переоткрытие общего доступа", "Restrict users to only share with users in their groups" => "Разрешить пользователям публикации только внутри их групп", "Allow users to send mail notification for shared files" => "Разрешить пользователю оповещать почтой о расшаренных файлах", "Exclude groups from sharing" => "Исключить группы из общего доступа", "These groups will still be able to receive shares, but not to initiate them." => "Эти группы смогут получать общие файлы, но не смогут отправлять их.", "Security" => "Безопасность", -"Enforce HTTPS" => "Принудить к HTTPS", +"Enforce HTTPS" => "HTTPS соединение обязательно", "Forces the clients to connect to %s via an encrypted connection." => "Принудить клиентов подключаться к %s через шифрованное соединение.", -"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL.", -"Email Server" => "Сервер почты", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить обязательные SSL подключения.", +"Email Server" => "Почтовый сервер", "This is used for sending out notifications." => "Используется для отправки уведомлений.", "From address" => "Адрес отправителя", "mail" => "почта", "Authentication required" => "Требуется аутентификация ", "Server address" => "Адрес сервера", "Port" => "Порт", -"Credentials" => "Полномочия", -"SMTP Username" => "Имя пользователя", -"SMTP Password" => "Пароль", -"Test email settings" => "Тест настроек", +"Credentials" => "Учётные данные", +"SMTP Username" => "Пользователь SMTP", +"SMTP Password" => "Пароль SMTP", +"Test email settings" => "Проверить настройки почты", "Send email" => "Отправить сообщение", "Log" => "Журнал", "Log level" => "Уровень детализации журнала", @@ -160,7 +160,7 @@ $TRANSLATIONS = array( "Add your App" => "Добавить приложение", "More Apps" => "Больше приложений", "Select an App" => "Выберите приложение", -"Documentation:" => "Документация", +"Documentation:" => "Документация:", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "See application website" => "См. сайт приложений", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span> лицензия. Автор <span class=\"author\"></span>", diff --git a/settings/personal.php b/settings/personal.php index 36e8ea016de..ddebcc03024 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -76,8 +76,8 @@ usort( $languages, function ($a, $b) { //links to clients $clients = array( 'desktop' => OC_Config::getValue('customclient_desktop', $defaults->getSyncClientUrl()), - 'android' => OC_Config::getValue('customclient_android', 'https://play.google.com/store/apps/details?id=com.owncloud.android'), - 'ios' => OC_Config::getValue('customclient_ios', 'https://itunes.apple.com/us/app/owncloud/id543672169?mt=8') + 'android' => OC_Config::getValue('customclient_android', $defaults->getAndroidClientUrl()), + 'ios' => OC_Config::getValue('customclient_ios', $defaults->getiOSClientUrl()) ); // Return template |