diff options
218 files changed, 3874 insertions, 3345 deletions
diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 942e185eac3..ce21cc3631f 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -27,3 +27,5 @@ imports: - javascript - php +tools: + external_code_coverage: true diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000000..c5d6c9655ff --- /dev/null +++ b/.travis.yml @@ -0,0 +1,67 @@ +language: php +php: + - 5.3 + - 5.4 + - 5.5 + - 5.6 + - hhvm + +matrix: + include: + - php: 5.4 + env: DB=oracle + - php: 5.4 + env: DB=pgsql + - php: 5.4 + env: DB=mysql + - php: 5.4 + env: DB=mysql EXTERNAL=true + allow_failures: + - php: hhvm + fast_finish: true + +env: + global: + - EXTERNAL=false + matrix: + - DB=sqlite + +before_script: + # setup databases + - wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/setup_databases.sh + - bash ./setup_databases.sh $DB + + # Additional PHP config + - if [[ $HHVM == false ]] ; then phpenv config-add build/travis.php.ini ; fi + + # fetch Ocular (for test coverage upload) + - wget https://scrutinizer-ci.com/ocular.phar + + # call setup for tests + - build/prepareTests.sh $DB + + # Enable/disable files_external to control it's unit test execution + - php occ --list + - if [[ $EXTERNAL == true ]] ; then php occ app:enable files_external ; fi + - if [[ $EXTERNAL == false ]] ; then php occ app:disable files_external ; fi + +script: + - phpunit --version + # Run PHP lint for each PHP version + - if [[ $DB == 'sqlite' ]] ; then ant -f build/build.xml -Dbasedir=. prepare lint ; fi + + # Run tests + - phpunit --configuration tests/phpunit-autotest.xml --coverage-clover tests/autotest-clover-$DB.xml --verbose --debug + + # Run JS tests just once (see test matrix - mysql is just run once) + - if [[ $DB == 'mysql' ]] ; then ./autotest-js.sh ; fi + + # Upload coverage report + - php ocular.phar code-coverage:upload --format=php-clover tests/autotest-clover-$DB.xml + +branches: + only: + - master + - stable5 + - stable6 + - stable7 diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index b0574b96edc..c5160db36e7 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -43,7 +43,7 @@ $TRANSLATIONS = array( "Could not create file" => "Несупешно създаване на файла.", "Could not create folder" => "Неуспешно създаване на папка.", "Error fetching URL" => "Грешка при отварянето на интернет адреса.", -"Share" => "Споделена Папка", +"Share" => "Сподели", "Delete" => "Изтрий", "Disconnect storage" => "Извади дисковото устройство.", "Unshare" => "Премахни Споделяне", @@ -84,7 +84,7 @@ $TRANSLATIONS = array( "Folder" => "Папка", "From link" => "От връзка", "You don’t have permission to upload or create files here" => "Нямаш разрешение да създаваш или качваш файлове тук.", -"Nothing in here. Upload something!" => "Тук няма нищо. Качете нещо!", +"Nothing in here. Upload something!" => "Тук няма нищо. Качи нещо!", "Download" => "Изтегли", "Upload too large" => "Прекалено голям файл за качване.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файловете, които се опитваш да качиш са по-големи от позволеното на този сървър.", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 3010ed5764a..99528864ab1 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -45,6 +45,7 @@ $TRANSLATIONS = array( "Error fetching URL" => "Eroare încarcare URL", "Share" => "Partajează", "Delete" => "Șterge", +"Disconnect storage" => "Stocare deconectata", "Unshare" => "Anulare", "Delete permanently" => "Șterge permanent", "Rename" => "Redenumește", 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_encryption/tests/migration.php b/apps/files_encryption/tests/migration.php index e58ceb0bc6f..80f30d4e793 100644 --- a/apps/files_encryption/tests/migration.php +++ b/apps/files_encryption/tests/migration.php @@ -88,6 +88,10 @@ class Test_Migration extends PHPUnit_Framework_TestCase { } public function testDataMigration() { + // TODO travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('Fails on travis'); + } $this->assertTableNotExist('encryption_test'); @@ -113,6 +117,10 @@ class Test_Migration extends PHPUnit_Framework_TestCase { } public function testDuplicateDataMigration() { + // TODO travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('Fails on travis'); + } // create test table OC_DB::createDbFromStructure(__DIR__ . '/encryption_table.xml'); diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php index 3142b83c5a6..d9fc819f981 100755 --- a/apps/files_encryption/tests/util.php +++ b/apps/files_encryption/tests/util.php @@ -249,7 +249,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { } /** -< * Test that data that is read by the crypto stream wrapper + * Test that data that is read by the crypto stream wrapper */ function testGetFileSize() { \Test_Encryption_Util::loginHelper(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1); diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index 5f958e00d93..8a49401a07b 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -256,6 +256,11 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { * @dataProvider applicableConfigProvider */ public function testReadWriteGlobalConfig($mountType, $applicable, $expectApplicableArray) { + // TODO travis: samba share test doesn't work on travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('samba share test doesn\'t work on travis'); + } + $mountType = $mountType; $applicable = $applicable; $isPersonal = false; @@ -295,6 +300,11 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { * Test reading and writing config */ public function testReadWritePersonalConfig() { + // TODO travis: samba share test doesn't work on travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('samba share test doesn\'t work on travis'); + } + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; $applicable = self::TEST_USER1; $isPersonal = true; @@ -333,6 +343,11 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { * Test password obfuscation */ public function testPasswordObfuscation() { + // TODO travis: samba share test doesn't work on travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('samba share test doesn\'t work on travis'); + } + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; $applicable = self::TEST_USER1; $isPersonal = true; @@ -373,6 +388,11 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { * Test read legacy passwords */ public function testReadLegacyPassword() { + // TODO travis: samba share test doesn't work on travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('samba share test doesn\'t work on travis'); + } + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; $applicable = self::TEST_USER1; $isPersonal = true; @@ -484,6 +504,11 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { * @param bool $expectVisible whether to expect the mount point to be visible for $testUser */ public function testMount($isPersonal, $mountType, $applicable, $testUser, $expectVisible) { + // TODO travis: samba share test doesn't work on travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('samba share test doesn\'t work on travis'); + } + $mountConfig = array( 'host' => 'someost', 'user' => 'someuser', @@ -523,6 +548,11 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { * The config will be merged by getSystemMountPoints(). */ public function testConfigMerging() { + // TODO travis: samba share test doesn't work on travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('samba share test doesn\'t work on travis'); + } + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; $isPersonal = false; $options = array( @@ -593,6 +623,11 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { * have the same path, the config must NOT be merged. */ public function testRereadMountpointWithSamePath() { + // TODO travis: samba share test doesn't work on travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('samba share test doesn\'t work on travis'); + } + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; $isPersonal = false; $options1 = array( @@ -724,6 +759,11 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { * @param int $expected index of expected visible mount */ public function testPriority($mounts, $expected) { + // TODO travis: samba share test doesn't work on travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('samba share test doesn\'t work on travis'); + } + $mountConfig = array( 'host' => 'somehost', 'user' => 'someuser', @@ -757,6 +797,11 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { * Test for persistence of priority when changing mount options */ public function testPriorityPersistence() { + // TODO travis: samba share test doesn't work on travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('samba share test doesn\'t work on travis'); + } + $class = '\OC\Files\Storage\SMB'; $priority = 123; $mountConfig = array( @@ -805,6 +850,10 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { * Test for correct personal configuration loading in file sharing scenarios */ public function testMultiUserPersonalConfigLoading() { + // TODO travis: multi user config test doesn't work on travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('multi user config test doesn\'t work on travis'); + } $mountConfig = array( 'host' => 'somehost', 'user' => 'someuser', diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 2c68f440756..1a2394f300e 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -73,6 +73,7 @@ OCA.Sharing.PublicApp = { var params = { x: $(document).width() * window.devicePixelRatio, + y: $(document).height() * window.devicePixelRatio, a: 'true', file: encodeURIComponent(this.initialDir + $('#filename').val()), t: $('#sharingToken').val(), 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_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 7f7197307bd..e4fd85fd2a7 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -43,6 +43,7 @@ class Shared_Cache extends Cache { /** * Get the source cache of a shared file or folder + * * @param string $target Shared target file path * @return \OC\Files\Cache\Cache */ @@ -275,7 +276,7 @@ class Shared_Cache extends Cache { */ public function search($pattern) { - $pattern = trim($pattern,'%'); + $pattern = trim($pattern, '%'); $normalizedPattern = $this->normalize($pattern); @@ -403,8 +404,7 @@ class Shared_Cache extends Cache { */ public function getPathById($id, $pathEnd = '') { // direct shares are easy - $path = $this->getShareById($id); - if (is_string($path)) { + if ($id === $this->storage->getSourceId()) { return ltrim($pathEnd, '/'); } else { // if the item is a direct share we try and get the path of the parent and append the name of the item to it @@ -419,28 +419,14 @@ class Shared_Cache extends Cache { /** * @param integer $id - */ - private function getShareById($id) { - $item = \OCP\Share::getItemSharedWithBySource('file', $id); - if ($item) { - return trim($item['file_target'], '/'); - } - $item = \OCP\Share::getItemSharedWithBySource('folder', $id); - if ($item) { - return trim($item['file_target'], '/'); - } - return null; - } - - /** - * @param integer $id + * @return array */ private function getParentInfo($id) { $sql = 'SELECT `parent`, `name` FROM `*PREFIX*filecache` WHERE `fileid` = ?'; $query = \OC_DB::prepare($sql); $result = $query->execute(array($id)); if ($row = $result->fetchRow()) { - return array($row['parent'], $row['name']); + return array((int)$row['parent'], $row['name']); } else { return array(-1, ''); } diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index ec7c80f3316..c92d3fc4007 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -100,6 +100,10 @@ if (isset($path)) { $file = basename($path); // Download the file if (isset($_GET['download'])) { + if (!\OCP\App::isEnabled('files_encryption')) { + // encryption app requires the session to store the keys in + \OC::$server->getSession()->close(); + } if (isset($_GET['files'])) { // download selected files $files = urldecode($_GET['files']); $files_list = json_decode($files); diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 8406b79cf1a..42103296d87 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -1,4 +1,9 @@ <?php /** @var $l OC_L10N */ ?> +<?php $thumbSize=1024; ?> +<?php if ( \OC\Preview::isMimeSupported($_['mimetype'])): /* This enables preview images for links (e.g. on Facebook, Google+, ...)*/?> + <link rel="image_src" href="<?php p(OCP\Util::linkToRoute( 'core_ajax_public_preview', array('x' => $thumbSize, 'y' => $thumbSize, 'file' => $_['directory_path'], 't' => $_['dirToken']))); ?>" /> +<?php endif; ?> + <div id="notification-container"> <div id="notification" style="display: none;"></div> </div> diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 49571d4c3c2..fd3d25564b6 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -52,8 +52,10 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { } function tearDown() { - $this->view->unlink($this->filename); - $this->view->deleteAll($this->folder); + if($this->view instanceof \OC\Files\View) { + $this->view->unlink($this->filename); + $this->view->deleteAll($this->folder); + } self::$tempStorage = null; 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/apps/user_ldap/css/settings.css b/apps/user_ldap/css/settings.css index e09c377a907..3051cc8058e 100644 --- a/apps/user_ldap/css/settings.css +++ b/apps/user_ldap/css/settings.css @@ -127,3 +127,8 @@ select[multiple=multiple] + button { .ldap_grey { color: #777; } + +.outoftheway { + position: absolute; + left: -2000px; +} diff --git a/apps/user_ldap/templates/part.wizard-server.php b/apps/user_ldap/templates/part.wizard-server.php index 3d4b0feead9..422faad028b 100644 --- a/apps/user_ldap/templates/part.wizard-server.php +++ b/apps/user_ldap/templates/part.wizard-server.php @@ -1,3 +1,10 @@ +<div class="outoftheway"> + <!-- Hack for Safari and Chromium/Chrome which ignore autocomplete="off" --> + <input type="text" id="fake_user" name="fake_user" autocomplete="off" /> + <input type="password" id="fake_password" name="fake_password" + autocomplete="off" /> +</div> + <fieldset id="ldapWizard1"> <p> <select id="ldap_serverconfig_chooser" name="ldap_serverconfig_chooser"> diff --git a/build/prepareTests.sh b/build/prepareTests.sh new file mode 100755 index 00000000000..84bbfd40f6d --- /dev/null +++ b/build/prepareTests.sh @@ -0,0 +1,141 @@ +#!/bin/bash +# +# ownCloud +# +# @author Thomas Müller +# @author Morris Jobke +# @copyright 2012, 2013 Thomas Müller thomas.mueller@tmit.eu +# @copyright 2014 Morris Jobke hey@morrisjobke.de +# + +DATABASENAME=oc_autotest +DATABASEUSER=oc_autotest +ADMINLOGIN=admin +BASEDIR=$PWD + +# check for database parameter +if [ $1 ]; then + DBCONFIGS="sqlite mysql pgsql oracle" + FOUND=0 + for DBCONFIG in $DBCONFIGS; do + if [ $1 = $DBCONFIG ]; then + FOUND=1 + break + fi + done + if [ $FOUND = 0 ]; then + echo -e "Unknown database config name \"$1\"\n" >&2 + exit 2 + fi +else + echo "Please pass in a database to use as first parameter" >&2 + exit 1 +fi + +# check if config dir and file is writable +if ! [[ -w config && ( !( -e config/config.php ) || -w config/config.php ) ]]; then + echo "Please enable write permissions on config and config/config.php" >&2 + exit 1 +fi + +# use tmpfs for datadir - should speedup unit test execution +if [ -d /dev/shm ]; then + DATADIR=/dev/shm/data-autotest +else + DATADIR=$BASEDIR/data-autotest +fi + +echo "Setup environment for $1 testing ..." +# revert changes to tests/data +git checkout tests/data/* + +# reset data directory +rm -rf $DATADIR +mkdir $DATADIR + +cp tests/preseed-config.php config/config.php + +# # # # # # +# SQLite # +# # # # # # +if [ "$1" == "sqlite" ] ; then + cat > ./config/autoconfig.php <<DELIM +<?php +\$AUTOCONFIG = array ( + 'installed' => false, + 'dbtype' => 'sqlite', + 'dbtableprefix' => 'oc_', + 'adminlogin' => '$ADMINLOGIN', + 'adminpass' => 'admin', + 'directory' => '$DATADIR', +); +DELIM +fi + +# # # # # +# MySQL # +# # # # # +if [ "$1" == "mysql" ] ; then + cat > ./config/autoconfig.php <<DELIM +<?php +\$AUTOCONFIG = array ( + 'installed' => false, + 'dbtype' => 'mysql', + 'dbtableprefix' => 'oc_', + 'adminlogin' => '$ADMINLOGIN', + 'adminpass' => 'admin', + 'directory' => '$DATADIR', + 'dbuser' => '$DATABASEUSER', + 'dbname' => '$DATABASENAME', + 'dbhost' => 'localhost', + 'dbpass' => 'owncloud', +); +DELIM +fi + +# # # # # # # # +# PostgreSQL # +# # # # # # # # +if [ "$1" == "pgsql" ] ; then + cat > ./config/autoconfig.php <<DELIM +<?php +\$AUTOCONFIG = array ( + 'installed' => false, + 'dbtype' => 'pgsql', + 'dbtableprefix' => 'oc_', + 'adminlogin' => '$ADMINLOGIN', + 'adminpass' => 'admin', + 'directory' => '$DATADIR', + 'dbuser' => '$DATABASEUSER', + 'dbname' => '$DATABASENAME', + 'dbhost' => 'localhost', + 'dbpass' => 'owncloud', +); +DELIM + +fi + +# # # # # # +# Oracle # +# # # # # # +if [ "$1" == "oracle" ] ; then + build/prepareTestsOracle.sh $DATABASENAME $DATABASEUSER $ADMINLOGIN $DATADIR +fi + +echo "Trigger ownCloud installation" +php -f index.php | grep -i -C9999 error && echo "Error during setup" && exit 101 + +echo "Enable apps ..." +cd tests +php -f enable_all.php | grep -i -C9999 error && echo "Error during setup" && exit 101 +cd $BASEDIR + +# show environment +echo "ownCloud configuration:" +cat $BASEDIR/config/config.php + +echo "ownCloud data directory:" +ls -ll $DATADIR + +echo "owncloud.log:" +cat $DATADIR/owncloud.log diff --git a/build/prepareTestsOracle.sh b/build/prepareTestsOracle.sh new file mode 100755 index 00000000000..65a59036659 --- /dev/null +++ b/build/prepareTestsOracle.sh @@ -0,0 +1,65 @@ +#!/bin/bash +# +# ownCloud - prepareTestOracle.sh +# +# @author Morris Jobke +# @copyright 2014 Morris Jobke hey@morrisjobke.de +# + +DATABASENAME=$1 +DATABASEUSER=$2 +ADMINLOGIN=$3 +DATADIR=$4 + +# set oracle home if it is not set +TRAVIS_ORACLE_HOME="/usr/lib/oracle/xe/app/oracle/product/10.2.0/server" +[ -z "$ORACLE_HOME" ] && ORACLE_HOME=$TRAVIS_ORACLE_HOME + +echo "Load Oracle environment variables so that we can run 'sqlplus'." + . $ORACLE_HOME/bin/oracle_env.sh + +echo "drop the database" +sqlplus64 -s -l / as sysdba <<EOF + drop user $DATABASENAME cascade; +EOF + +echo "create the database" +sqlplus64 -s -l / as sysdba <<EOF + create user $DATABASENAME identified by owncloud; + alter user $DATABASENAME default tablespace users + temporary tablespace temp + quota unlimited on users; + grant create session + , create table + , create procedure + , create sequence + , create trigger + , create view + , create synonym + , alter session + to $DATABASENAME; + exit; +EOF + +# there was a maximum cursor limit exceed +# therefore increase the limit +sqlplus64 -s -l / as sysdba <<EOF + ALTER SYSTEM SET open_cursors = 1000 SCOPE=BOTH; +EOF + +cat > ./config/autoconfig.php <<DELIM +<?php +\$AUTOCONFIG = array ( + 'installed' => false, + 'dbtype' => 'oci', + 'dbtableprefix' => 'oc_', + 'adminlogin' => '$ADMINLOGIN', + 'adminpass' => 'admin', + 'directory' => '$DATADIR', + 'dbuser' => '$DATABASEUSER', + 'dbname' => 'XE', + 'dbhost' => 'localhost', + 'dbpass' => 'owncloud', +); +DELIM + diff --git a/build/travis.php.ini b/build/travis.php.ini new file mode 100644 index 00000000000..5e5483e2d6a --- /dev/null +++ b/build/travis.php.ini @@ -0,0 +1 @@ +memory_limit = 1024M diff --git a/core/css/apps.css b/core/css/apps.css index 6761677fb23..0fea77cea0d 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -274,6 +274,10 @@ button.loading { color: #555; border-top: 1px solid #ddd; } +/* no top border for first settings item */ +.section:first-child { + border-top: none; +} .section h2 { font-size: 20px; margin-bottom: 7px; 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/cs_CZ.php b/core/l10n/cs_CZ.php index 4194ed15b35..72d442a368e 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -85,7 +85,7 @@ $TRANSLATIONS = array( "Shared with you by {owner}" => "S Vámi sdílí {owner}", "Share with user or group …" => "Sdílet s uživatelem nebo skupinou", "Share link" => "Sdílet odkaz", -"The public link will expire no later than {days} days after it is created" => "Veřejný odkaz nevyprší dříve než za {days} dní po svém vytvoření", +"The public link will expire no later than {days} days after it is created" => "Veřejný odkaz vyprší za následující počet dnů od svého zveřejnění: {days}", "Password protect" => "Chránit heslem", "Choose a password for the public link" => "Zadej heslo pro tento veřejný odkaz", "Allow Public Upload" => "Povolit veřejné nahrávání", 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 231298492e2..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 75d6d0eb2e1..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 3c5f1cb4b20..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 1d4de94ef6c..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 13777fbf1d3..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: am_ET\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 a3d53509b1e..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -19,33 +19,33 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -96,7 +96,7 @@ msgstr "نوع الملف غير معروف" msgid "Invalid image" msgstr "الصورة غير صالحة" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" @@ -327,84 +327,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 91c19cf9980..a198b0da1a6 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-02 01:54-0400\n" -"PO-Revision-Date: 2014-08-01 11:19+0000\n" -"Last-Translator: Iñigo Varela <ivarela@softastur.org>\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" "Content-Type: text/plain; charset=UTF-8\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" @@ -359,13 +359,13 @@ msgstr "Falló dar permisos a %s, porque l'elementu nun s'atopó" #: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Nun pudo afitase la data d'espiración. Los ficheros compartíos nun puen espirar llueu de %s dempués de compartise." +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" #: private/share/share.php:968 -msgid "Can not set expire date. Expire date is in the past" -msgstr "Nun pudo afitase la data d'espiración. La data ta nel pasáu" +msgid "Cannot set expiration date. Expiration date is in the past" +msgstr "" #: private/share/share.php:1093 #, php-format @@ -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 66a0a65b59e..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 26e584ff707..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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/core.po b/l10n/bg_BG/core.po index 82e29ed7a40..30787f3d07a 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.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-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"PO-Revision-Date: 2014-08-04 20:30+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" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index fadf5123215..aa5a08ca551 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -8,8 +8,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-05 02:02-0400\n" +"PO-Revision-Date: 2014-08-04 20:40+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -208,7 +208,7 @@ msgstr "Грешка при отварянето на интернет адре #: js/fileactions.js:285 msgid "Share" -msgstr "Споделена Папка" +msgstr "Сподели" #: js/fileactions.js:295 templates/list.php:77 templates/list.php:78 msgid "Delete" @@ -392,7 +392,7 @@ msgstr "Нямаш разрешение да създаваш или качва #: templates/list.php:52 msgid "Nothing in here. Upload something!" -msgstr "Тук няма нищо. Качете нещо!" +msgstr "Тук няма нищо. Качи нещо!" #: templates/list.php:66 msgid "Download" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 1cd3606263d..918f661b857 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-26 01:54-0400\n" -"PO-Revision-Date: 2014-07-25 21:40+0000\n" +"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"PO-Revision-Date: 2014-08-04 20:30+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 5a7945d473b..4736655e2a0 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 09:11+0000\n" -"Last-Translator: Ivo\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,33 +19,33 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Неуспешен опит за запис в \"config\" папката!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Това може да бъде решено единствено като разрешиш на уеб сървъра да пише в config папката." -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Виж %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Това обикновено може да бъде оправено като %s даде разрешение на уеб сървъра да записва в config папката %s." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Свръзваш се със сървъра от неодобрен домейн." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -96,7 +96,7 @@ msgstr "Непознат тип файл." msgid "Invalid image" msgstr "Невалидно изображение." -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "уеб услуги под твой контрол" @@ -327,84 +327,84 @@ msgstr "Неупешно споделяне на %s, защото групата msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Неуспешно споделяне на %s, защото %s не е член на групата %s." -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Трябва да зададеш парола, за да създадеш общодостъпен линк за споделяне, само защитени с пароли линкове са разрешени." -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Неуспешно споделяне на %s, защото споделянето посредством връзки не е разрешено." -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Споделянето на тип %s не валидно за %s." -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Неуспешна промяна на правата за достъп за %s, защото промените надвишават правата на достъп дадени на %s." -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Неуспешна промяна на правата за достъп за %s, защото съдържанието не е открито." -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Неуспешно задаване на дата на изтичане. Споделени папки не могат да изтекат по-късно от %s след като са били споделени." +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" -msgstr "Неуспешноп задаване на дата на изтичане. Датата е в миналото." +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" +msgstr "Неуспешно задаване на дата на изтичане. Датата на изтичане е в миналото" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс." -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Споделянето на сървърния %s не е открито." -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Споделянето на сървъра за %s не е открито." -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Неуспешно споделяне на %s, защото повторно споделяне не е разрешено." -#: private/share/share.php:1559 +#: 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:1573 +#: 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 1486b7d7ed2..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 496b614b551..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: bn_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 b2529e7cc78..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 2cbf7abcb37..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -18,33 +18,33 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "No es pot escriure a la carpeta \"config\"!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Això normalment es pot solucionar donant al servidor web permís d'escriptura a la carpeta de configuració" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Comproveu %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Això normalment es pot solucionar donant a %s permís d'escriptura a la carpeta de configuració %s" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Esteu accedint el servidor des d'un domini no fiable" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -326,84 +326,84 @@ msgstr "Ha fallat en compartir %s, perquè el grup %s no existeix" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Ha fallat en compartir %s, perquè %s no és membre del grup %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Heu de proporcionar una contrasenya per crear un enllaç públic. Només es permeten enllaços segurs." -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Ha fallat en compartir %s, perquè no es permet compartir amb enllaços" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "La compartició tipus %s no és vàlida per %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Ha fallat en establir els permisos per %s perquè aquests excedeixen els permesos per a %s" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Ha fallat en establir els permisos per %s, perquè no s'ha trobat l'element" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "El rerefons de compartició %s ha d'implementar la interfície OCP\\Share_Backend" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "El rerefons de compartició %s no s'ha trobat" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "El rerefons de compartició per a %s no s'ha trobat" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 0a28bb1b20e..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ca@valencia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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/core.po b/l10n/cs_CZ/core.po index 85e65cc62e3..33d73d26f5b 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -17,9 +17,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-05 02:02-0400\n" +"PO-Revision-Date: 2014-08-04 19:41+0000\n" +"Last-Translator: Jaroslav Lichtblau <jaroslav@lichtblau.cz>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -397,7 +397,7 @@ msgstr "Sdílet odkaz" #: js/share.js:394 msgid "" "The public link will expire no later than {days} days after it is created" -msgstr "Veřejný odkaz nevyprší dříve než za {days} dní po svém vytvoření" +msgstr "Veřejný odkaz vyprší za následující počet dnů od svého zveřejnění: {days}" #: js/share.js:398 msgid "Password protect" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 7530be8c9d4..2701514f1de 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 17:40+0000\n" -"Last-Translator: Jaroslav Lichtblau <jaroslav@lichtblau.cz>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,33 +24,33 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Nelze zapisovat do adresáře \"config\"!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "To bývá obyčejně vyřešeno povolením webovému serveru zapisovat do konfiguračního adresáře." -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Viz %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "To bývá obyčeně vyřešeno, když %s povolí webovému serveru zápis do konfiguračního adresáře %s." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Přistupujete na server z nedůvěryhodné domény." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -332,84 +332,84 @@ msgstr "Sdílení položky %s selhalo, protože skupina %s neexistuje" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Sdílení položky %s selhalo, protože uživatel %s není členem skupiny %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Pro vytvoření veřejného odkazu je nutné zadat heslo, jsou povoleny pouze chráněné odkazy" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Sdílení položky %s selhalo, protože sdílení pomocí linků není povoleno" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Sdílení typu %s není korektní pro %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Nastavení oprávnění pro %s selhalo, protože jsou k tomu nutná vyšší oprávnění, než jaká byla povolena pro %s" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Nastavení práv pro %s selhalo, protože položka nebyla nalezena" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Nelze nastavit datum vypršení platnosti. Sdílení nemůže vypršet později než za %s po zveřejnění." +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti." -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Podpůrná vrstva pro sdílení %s musí obsahovat rozhraní OCP\\Share_Backend" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Podpůrná vrstva sdílení %s nenalezena" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Podpůrná vrstva sdílení pro %s nenalezena" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 ce568104e93..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 611457d5665..f7d0f5743d9 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -15,9 +15,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 18:10+0000\n" -"Last-Translator: Aputsiaĸ Niels Janussen <aj@isit.gl>\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" "Content-Type: text/plain; charset=UTF-8\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" @@ -364,12 +364,12 @@ msgstr "Angivelse af tilladelser for %s mislykkedes, fordi artiklen ikke blev fu #: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" #: private/share/share.php:968 -msgid "Can not set expire date. Expire date is in the past" +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" #: private/share/share.php:1093 @@ -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 2a984f5e2a1..32ea7e2a63c 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 09:04+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,33 +23,33 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Das Schreiben in das \"config\"-Verzeichnis nicht möglich!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dies kann normalerweise repariert werden, indem dem Webserver Schreibzugriff auf das config-Verzeichnis gegeben wird" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Siehe %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dies kann normalerweise repariert werden, indem dem Webserver %s Schreibzugriff auf das config-Verzeichnis %s gegeben wird." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Du greifst von einer nicht vertrauenswürdigen Domain auf den Server zu." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -331,84 +331,84 @@ msgstr "Freigabe von %s fehlgeschlagen, da die Gruppe %s nicht existiert" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Freigabe von %s fehlgeschlagen, da %s kein Mitglied der Gruppe %s ist" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Es sind nur geschützte Links zulässig, daher müssen Sie ein Passwort angeben, um einen öffentlichen Link zu generieren" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht erlaubt ist" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Freigabetyp %s ist nicht gültig für %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Ablaufdatum kann nicht gesetzt werden. Freigaben können nach dem Teilen, nicht länger als %s gültig sein." +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit." -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Freigabe-Backend %s nicht gefunden" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 ce53583ec81..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 d22b80c8b4c..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -21,33 +21,33 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -329,84 +329,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 05c74355f48..1f6a193f20c 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 09:53+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,33 +23,33 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Das Schreiben in das \"config\"-Verzeichnis nicht möglich!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dies kann normalerweise repariert werden, indem dem Webserver Schreibzugriff auf das config-Verzeichnis gegeben wird" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Siehe %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dies kann normalerweise repariert werden, indem dem Webserver %s Schreibzugriff auf das config-Verzeichnis %s gegeben wird." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Sie greifen von einer nicht vertrauenswürdigen Domain auf den Server zu." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -331,84 +331,84 @@ msgstr "Freigabe von %s fehlgeschlagen, da die Gruppe %s nicht existiert" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Freigabe von %s fehlgeschlagen, da %s kein Mitglied der Gruppe %s ist" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Es sind nur geschützte Links zulässig, daher müssen Sie ein Passwort angeben, um einen öffentlichen Link zu generieren" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht erlaubt ist" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Freigabetyp %s ist nicht gültig für %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Ablaufdatum kann nicht gesetzt werden. Freigaben können nach dem Teilen, nicht länger als %s gültig sein." +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit." -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Freigabe-Backend %s nicht gefunden" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 02b4c2359d0..15e173499ac 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -14,9 +14,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 16:21+0000\n" -"Last-Translator: Playerthe12 <a7652246@drdrb.net>\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" "Content-Type: text/plain; charset=UTF-8\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 "υπηρεσίες δικτύου υπό τον έλεγχό σας" @@ -363,13 +363,13 @@ msgstr "Ο ορισμός δικαιωμάτων για το %s απέτυχε, #: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Δεν μπορείτε να ορίσετε ημερομηνία λήξης. Οι διαμοιρασμοί δεν μπορούν να λήγουν αργότερα από %s αφού διαμοιραστούν" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" #: private/share/share.php:968 -msgid "Can not set expire date. Expire date is in the past" -msgstr "Δεν μπορείτε να ορίσετε ημερομηνία λήξης. Η ημερομηνία λήξης ανήκει στο παρελθόν" +msgid "Cannot set expiration date. Expiration date is in the past" +msgstr "" #: private/share/share.php:1093 #, php-format @@ -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 9bd66e568a0..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 4cc612b6e4a..8372976a5be 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 17:10+0000\n" -"Last-Translator: Darren Richardson <transifex@mnestis.net>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,33 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Cannot write into \"config\" directory!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "This can usually be fixed by giving the webserver write access to the config directory" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "See %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "This can usually be fixed by %sgiving the webserver write access to the config directory%s." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "You are accessing the server from an untrusted domain." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -326,84 +326,84 @@ msgstr "Sharing %s failed, because the group %s does not exist" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Sharing %s failed, because %s is not a member of the group %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "You need to provide a password to create a public link, only protected links are allowed" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Sharing %s failed, because sharing with links is not allowed" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Share type %s is not valid for %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Setting permissions for %s failed, because the item was not found" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Cannot set the expiry date. Shares cannot expire later than %s after they have been shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" -msgstr "Cannot set the expiry date. The expiry date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" +msgstr "Cannot set expiry date. Expiry date is in the past" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Sharing backend %s must implement the interface OCP\\Share_Backend" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Sharing backend %s not found" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Sharing backend for %s not found" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 c3f3a3051a0..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: en_NZ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 cbd54070c4e..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -18,33 +18,33 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -326,84 +326,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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/files.po b/l10n/es/files.po index 76e08b73475..48f053b6c78 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -20,9 +20,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: Artopal <artopal@fastmail.fm>\n" +"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"PO-Revision-Date: 2014-08-04 22:21+0000\n" +"Last-Translator: victormce <victormce@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 4043edfaf4e..5dd482239d6 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-05 02:02-0400\n" +"PO-Revision-Date: 2014-08-04 22:23+0000\n" +"Last-Translator: victormce <victormce@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index d7f25688185..81f1e83a64d 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -17,9 +17,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-05 02:02-0400\n" +"PO-Revision-Date: 2014-08-04 22:23+0000\n" +"Last-Translator: victormce <victormce@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,7 +87,7 @@ msgstr "No se encontró una instalación de ownCloud en {remote}" msgid "Invalid ownCloud url" msgstr "URL de ownCloud inválido" -#: js/sharedfilelist.js:123 +#: js/sharedfilelist.js:126 msgid "Shared by" msgstr "Compartido por" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 6a7385d3e93..e82d65d8c79 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 07:10+0000\n" -"Last-Translator: Artopal <artopal@fastmail.fm>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,33 +31,33 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "No se puede escribir en el directorio de Configuración!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Esto puede ser facilmente solucionado, dando permisos de escritura al directorio de configuración en el servidor Web" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Mirar %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Esto puede ser facilmente solucionado, %sdando permisos de escritura al directorio de configuración en el servidor Web%s." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Está accediendo al servidor desde un dominio inseguro." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -339,84 +339,84 @@ msgstr "Compartiendo %s ha fallado, ya que el grupo %s no existe" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Compartiendo %s ha fallado, ya que %s no es miembro del grupo %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Es necesario definir una contraseña para crear un enlace publico. Solo los enlaces protegidos están permitidos" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Compartiendo %s ha fallado, ya que compartir con enlaces no está permitido" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Compartir tipo %s no es válido para %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Configuración de permisos para %s ha fallado, ya que los permisos superan los permisos dados a %s" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Configuración de permisos para %s ha fallado, ya que el elemento no fue encontrado" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "No se pudo fijar fecha de caducidad. Los archivos compartidos no pueden caducar luego de %s después de ser compartidos." +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" -msgstr "No se pudo fijar fecha de caducidad. La fecha está en el pasado" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" +msgstr "No se puede fijar la fecha de caducidad. La fecha de caducidad está en el pasado." -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "El motor compartido %s debe implementar la interfaz OCP\\Share_Backend" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "El motor compartido %s no se ha encontrado" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Motor compartido para %s no encontrado" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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/settings.po b/l10n/es/settings.po index 1821b09d5f0..be106c8d169 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -25,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-10 04:58-0400\n" -"PO-Revision-Date: 2014-07-10 07:11+0000\n" -"Last-Translator: Artopal <artopal@fastmail.fm>\n" +"POT-Creation-Date: 2014-08-05 02:03-0400\n" +"PO-Revision-Date: 2014-08-04 22:21+0000\n" +"Last-Translator: victormce <victormce@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -323,19 +323,19 @@ msgstr "Restaurar claves de cifrado." msgid "Unable to delete {objName}" msgstr "No es posible eliminar {objName}" -#: js/users/groups.js:73 js/users/groups.js:178 +#: js/users/groups.js:94 js/users/groups.js:202 msgid "Error creating group" msgstr "Error al crear un grupo" -#: js/users/groups.js:177 +#: js/users/groups.js:201 msgid "A valid group name must be provided" msgstr "Se debe dar un nombre válido para el grupo " -#: js/users/groups.js:205 +#: js/users/groups.js:229 msgid "deleted {groupName}" msgstr "borrado {groupName}" -#: js/users/groups.js:206 js/users/users.js:265 +#: js/users/groups.js:230 js/users/users.js:296 msgid "undo" msgstr "deshacer" @@ -355,31 +355,31 @@ msgstr "Administrador del Grupo" msgid "Delete" msgstr "Eliminar" -#: js/users/users.js:85 templates/users/part.userlist.php:98 +#: js/users/users.js:84 templates/users/part.userlist.php:98 msgid "never" msgstr "nunca" -#: js/users/users.js:264 +#: js/users/users.js:295 msgid "deleted {userName}" msgstr "borrado {userName}" -#: js/users/users.js:381 +#: js/users/users.js:431 msgid "add group" msgstr "añadir Grupo" -#: js/users/users.js:578 +#: js/users/users.js:631 msgid "A valid username must be provided" msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users/users.js:579 js/users/users.js:585 js/users/users.js:600 +#: js/users/users.js:632 js/users/users.js:638 js/users/users.js:653 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users/users.js:584 +#: js/users/users.js:637 msgid "A valid password must be provided" msgstr "Se debe proporcionar una contraseña válida" -#: js/users/users.js:608 +#: js/users/users.js:669 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 80af2dcf39d..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -19,33 +19,33 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -327,84 +327,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 8c3c7bafa8f..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: es_BO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 86d485aaccd..a7601be1573 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -8,9 +8,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 21:41+0000\n" -"Last-Translator: eganya <EGANYA@gmail.com>\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" "Content-Type: text/plain; charset=UTF-8\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" @@ -357,12 +357,12 @@ msgstr "" #: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" #: private/share/share.php:968 -msgid "Can not set expire date. Expire date is in the past" +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" #: private/share/share.php:1093 @@ -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 edb82b7b172..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 ad3a1910198..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 d227ada22a7..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 170955e7720..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 675ec1c5818..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 a9f6d2ab368..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 cb376c520fb..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: es_US\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 d8f590bb875..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: es_UY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 06713276c2c..77068995b50 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 18:01+0000\n" -"Last-Translator: Pisike Sipelgas <pisike.sipelgas@gmail.com>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,33 +19,33 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Ei saa kirjutada \"config\" kataloogi!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Tavaliselt saab selle lahendada andes veebiserverile seatete kataloogile \"config\" kirjutusõigused" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Vaata %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Tavaliselt saab selle lahendada %s andes veebiserverile seadete kataloogile \"config\" kirjutusõigused %s" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Sa kasutad serverit usalduseta asukohast" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -327,84 +327,84 @@ msgstr "%s jagamine ebaõnnestus, kuna gruppi %s pole olemas" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "%s jagamine ebaõnnestus, kuna %s pole grupi %s liige" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Avaliku viite tekitamiseks pead sisestama parooli, ainult kaitstud viited on lubatud" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "%s jagamine ebaõnnestus, kuna linkidega jagamine pole lubatud" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Jagamise tüüp %s ei ole õige %s jaoks" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Lubade seadistus %s jaoks ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Lubade seadistus %s jaoks ebaõnnestus, kuna üksust ei leitud" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Aegumise kuupäeva ei saa määrata. Jagamised ei saa aeguda hiljem kui %s peale jagamist." +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" -msgstr "Aegumise kuupäeva ei saa määrata. Aegumise kuupäev ei saa olla minevikus." +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" +msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Jagamise tagarakendit %s ei leitud" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Jagamise tagarakendit %s jaoks ei leitud" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 2b6f36cae07..da4e60c9d15 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.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-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 06:30+0000\n" -"Last-Translator: Alexander Gabilondo <alexgabi@openmailbox.org>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,33 +21,33 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Ezin da idatzi \"config\" karpetan!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Hau normalean konpondu daitekesweb zerbitzarira config karpetan idazteko baimenak emanez" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Ikusi %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Hau normalean konpondu daiteke %sweb zerbitzarira config karpetan idazteko baimenak emanez%s." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Zerbitzaria domeinu ez fidagarri batetik eskuratzen ari zara." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -329,84 +329,84 @@ msgstr "%s elkarbanatzeak huts egin du, %s taldea ez delako existitzen" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "%s elkarbanatzeak huts egin du, %s ez delako %s taldearen partaidea" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Lotura publiko bat sortzeko pasahitza idatzi behar duzu, bakarrik babestutako loturak baimenduta daude" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "%s elkarbanatzeak huts egin du, lotura bidezko elkarbanatzea baimendua ez dagoelako" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "%s elkarbanaketa mota ez da %srentzako egokia" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "%srentzako baimenak ezartzea huts egin du, baimenak %sri emandakoak baino gehiago direlako" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "%srentzako baimenak ezartzea huts egin du, aurkitu ez delako" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Ezin izan da jarri iraungitze data. Konpartitzea ezin da iraungi konpartitu eta %s ondoren." +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Ezin da jarri iraungitze data. Iraungitze data iragan da." -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "%s elkarbanaketa motorra OCP\\Share_Backend interfazea inplementatu behar du " -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Ez da %s elkarbanaketa motorra aurkitu" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Ez da %srako elkarbanaketa motorrik aurkitu" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 c8ab68e1d2b..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 7eb8f05c62c..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -18,33 +18,33 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -95,7 +95,7 @@ msgstr "نوع فایل ناشناخته" msgid "Invalid image" msgstr "عکس نامعتبر" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" @@ -326,84 +326,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 f60b76dd3e9..0718ddcfb1c 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 06:50+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,33 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Hakemistoon \"config\" kirjoittaminen ei onnistu!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Olet yhteydessä palvelimeen epäluotettavasta verkko-osoitteesta." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -326,84 +326,84 @@ msgstr "Kohteen %s jakaminen epäonnistui, koska ryhmää %s ei ole olemassa" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s ei ole ryhmän %s jäsen" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Anna salasana luodaksesi julkisen linkin. Vain suojatut linkit ovat sallittuja" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Kohteen %s jakaminen epäonnistui, koska jakaminen linkkejä käyttäen ei ole sallittu" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Kohteen %s oikeuksien asettaminen epäonnistui, koska kohdetta ei löytynyt" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" -msgstr "" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" +msgstr "Vanhentumispäivää ei voi asettaa. Vanhentumispäivä on jo mennyt" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Jakamisen taustaosaa %s ei löytynyt" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Jakamisen taustaosaa kohteelle %s ei löytynyt" -#: private/share/share.php:1522 +#: 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:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: 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:1559 +#: 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:1573 +#: 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 3836acda1f2..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -27,33 +27,33 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Impossible d’écrire dans le répertoire \"config\" !" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Ce problème est généralement résolu en donnant au serveur web un accès en écriture à ce répertoire" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Voir %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Ce problème est généralement résolu %sen donnant au serveur web un accès en écriture au répertoire de configuration%s." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Vous accédez au serveur à partir d'un domaine non-approuvé." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -335,84 +335,84 @@ msgstr "Le partage de %s a échoué car le groupe %s n'existe pas" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Le partage de %s a échoué car %s n'est pas membre du groupe %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Vous devez fournir un mot de passe pour créer un lien public, seul les liens protégés sont autorisées." -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Le partage de %s a échoué car un partage de lien n'est pas permis" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Le type de partage %s n'est pas valide pour %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Le réglage des permissions pour %s a échoué car les permissions dépassent celle accordée à %s" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Le réglage des permissions pour %s a échoué car l'objet n'a pas été trouvé" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "L'emplacement du partage %s doit implémenter l'interface OCP\\Share_Backend" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Emplacement de partage %s introuvable" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "L'emplacement du partage %s est introuvable" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 5e56da26b34..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 4a2d91c1d16..3bf6e4a5c3f 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,9 +9,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:40+0000\n" -"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\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" "Content-Type: text/plain; charset=UTF-8\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" @@ -358,12 +358,12 @@ msgstr "Non é posíbel estabelecer permisos para %s, non se atopa o elemento" #: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Non é posíbel estabelecer a data de caducidade. As comparticións non poden caducar máis aló de %s após de seren compartida" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" #: private/share/share.php:968 -msgid "Can not set expire date. Expire date is in the past" +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Non é posíbel estabelecer a data de caducidade. A data de caducidade está no pasado." #: private/share/share.php:1093 @@ -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 e339668d0d0..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 cc693826d31..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 0f6a9513846..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: hi_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 45358e8beb8..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 15732ee6d0f..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -20,33 +20,33 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -328,84 +328,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 465af1f5fd4..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 6620f6f575e..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 f8dbdeae846..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 4899785ab66..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: io\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 2a0c6961e77..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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.po b/l10n/it/files.po index 7ed67413d6a..ed5155b18a2 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -10,8 +10,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-04 01:54-0400\n" +"PO-Revision-Date: 2014-08-03 07:53+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" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index fb95cc19b75..84bc238f7e0 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.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-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-04 01:54-0400\n" +"PO-Revision-Date: 2014-08-03 07:53+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" 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 0d566c59380..ae60469ff7e 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.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 22:21+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\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" "Content-Type: text/plain; charset=UTF-8\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" @@ -360,13 +360,13 @@ msgstr "Impostazione permessi per %s non riuscita, poiché l'elemento non è sta #: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Impossibile impostare la data di scadenza. Le condivisioni non possono scadere più tardi di %s dalla loro attivazione." +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" #: private/share/share.php:968 -msgid "Can not set expire date. Expire date is in the past" -msgstr "Impossibile impostare la data di scadenza. La data di scadenza è già passata." +msgid "Cannot set expiration date. Expiration date is in the past" +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 67858168ac6..907229a3617 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-02 01:54-0400\n" -"PO-Revision-Date: 2014-08-01 07:10+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\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" "Content-Type: text/plain; charset=UTF-8\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 "管理下のウェブサービス" @@ -362,12 +362,12 @@ msgstr "%s の権限設定に失敗しました。アイテムが存在しませ #: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "有効期限を設定できません。共有開始から %s 以降に有効期限を設定することはできません。" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" #: private/share/share.php:968 -msgid "Can not set expire date. Expire date is in the past" +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "有効期限を設定できません。有効期限が過去を示しています。" #: private/share/share.php:1093 @@ -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 115efca64f8..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: jv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 875d5e0db92..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 e14bf017434..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -19,33 +19,33 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -96,7 +96,7 @@ msgstr "មិនស្គាល់ប្រភេទឯកសារ" msgid "Invalid image" msgstr "រូបភាពមិនត្រឹមត្រូវ" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "សេវាកម្មវេបក្រោមការការបញ្ជារបស់អ្នក" @@ -327,84 +327,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 c6f4a3a24f7..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 26de9803bcd..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -22,33 +22,33 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -99,7 +99,7 @@ msgstr "알 수 없는 파일 형식" msgid "Invalid image" msgstr "잘못된 그림" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" @@ -330,84 +330,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 da730522eb2..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "ڕاژهی وێب لهژێر چاودێریت دایه" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 f43b9a20f7a..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -18,33 +18,33 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -326,84 +326,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 24db6782b55..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -21,33 +21,33 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -329,84 +329,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 7e44237dec7..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -18,33 +18,33 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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ā" @@ -326,84 +326,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 9563f531052..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -18,33 +18,33 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -95,7 +95,7 @@ msgstr "Непознат тип на датотека" msgid "Invalid image" msgstr "Невалидна фотографија" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" @@ -326,84 +326,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 09361d72e63..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ml\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 40826c2a06d..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 a2822975cd8..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 4fa06800387..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 873cb6b4fd3..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 b1934aef71a..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -19,33 +19,33 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Kan ikke skrive i \"config\"-mappen!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dette kan vanligvis ordnes ved å gi web-serveren skrivetilgang til config-mappen" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Se %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dette kan vanligvis ordnes ved %så gi web-serveren skrivetilgang til config-mappen%s." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Du aksesserer serveren fra et ikke tiltrodd domene." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -327,84 +327,84 @@ msgstr "Deling av %s feilet, fordi gruppen %s ikke finnes" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Deling av %s feilet, fordi %s ikke er medlem av gruppen %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Du må oppgi et passord for å lage en offentlig lenke. Bare beskyttede lenker er tillatt" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Deling av %s feilet, fordi deling med lenker ikke er tillatt" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Delingstype %s er ikke gyldig for %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Setting av tillatelser for %s feilet, fordi tillatelsene gikk ut over tillatelsene som er gitt til %s" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Setting av tillatelser for %s feilet, fordi elementet ikke ble funnet" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Delings-server %s må implementere grensesnittet OCP\\Share_Backend" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Delings-server %s ikke funnet" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Delings-server for %s ikke funnet" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 b38e4583f38..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 54a0c4f9058..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 d220d962ea9..d8577d4399c 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.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-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-30 05:00+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,33 +20,33 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Kan niet schrijven naar de \"config\" directory!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dit kan hersteld worden door de webserver schrijfrechten te geven op de de config directory" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Zie %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dit kan hersteld worden door de webserver schrijfrechten te %sgeven op de de config directory%s" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "U benadert de server vanaf een niet vertrouwd domein." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -328,84 +328,84 @@ msgstr "Delen van %s is mislukt, omdat groep %s niet bestaat" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Delen van %s is mislukt, omdat %s geen lid is van groep %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "U moet een wachtwoord verstrekken om een openbare koppeling te maken, alleen beschermde links zijn toegestaan" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Delen van %s is mislukt, omdat het delen met links niet is toegestaan" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Delen van type %s is niet geldig voor %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Instellen van de permissies voor %s is mislukt, omdat de permissies hoger zijn dan de aan %s toegekende permissies" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Instellen van de permissies voor %s is mislukt, omdat het object niet is gevonden" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Kon vervaldatum niet installen. Shares kunnen niet langer dan %s vervallen na het moment van delen" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Kon vervaldatum niet instellen. De vervaldatum ligt in het verleden" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Het share-backend %s moet de OCP\\Share_Backend interface implementeren" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Het share-backend %s is niet gevonden" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Het share-backend voor %s is niet gevonden" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 45adc2efe1f..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -19,33 +19,33 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -327,84 +327,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 db5c93501df..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 827fad947df..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 84c83bbcfcf..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: or_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 3c2d8a1e3fc..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 3ef1f6d442d..6adb70afd3d 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-30 05:10+0000\n" -"Last-Translator: Dawid <hoek@hoek.pl>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,33 +24,33 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Nie można zapisać do katalogu \"config\"!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Można to zwykle rozwiązać przez dodanie serwerowi www uprawnień zapisu do katalogu config." -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Zobacz %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Można to zwykle rozwiązać przez %sdodanie serwerowi www uprawnień zapisu do katalogu config%s." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Dostajesz się do serwera z niezaufanej domeny." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -332,84 +332,84 @@ msgstr "Współdzielenie %s nie powiodło się, ponieważ grupa %s nie istnieje" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Współdzielenie %s nie powiodło się, ponieważ %s nie jest członkiem grupy %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Musisz zapewnić hasło aby utworzyć link publiczny, dozwolone są tylko linki chronione" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Współdzielenie %s nie powiodło się, ponieważ współdzielenie z linkami nie jest dozwolone" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Typ udziału %s nie jest właściwy dla %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Ustawienie uprawnień dla %s nie powiodło się, ponieważ uprawnienia wykraczają poza przydzielone %s" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Ustawienie uprawnień dla %s nie powiodło się, ponieważ element nie został znaleziony" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Nie można ustawić daty wygaśnięcia. Udział nie może wygasać później niż %s od momentu udostępnienia." +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" -msgstr "Nie można ustawić daty wygaśnięcia. Termin ustalony jest w przeszłości" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" +msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Zaplecze do współdzielenia %s musi implementować interfejs OCP\\Share_Backend" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Zaplecze %s do współdzielenia nie zostało znalezione" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Zaplecze do współdzielenia %s nie zostało znalezione" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 ba4703822c2..c2618fbcd1a 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -9,9 +9,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 21:31+0000\n" -"Last-Translator: Flávio Veras <flaviove@gmail.com>\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" "Content-Type: text/plain; charset=UTF-8\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" @@ -358,13 +358,13 @@ msgstr "Definir permissões para %s falhou, porque o item não foi encontrado" #: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Não pode ser definida data de expiração. Compartilhamentos não podem ter data de expiração %s após serem compartilhados" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" #: private/share/share.php:968 -msgid "Can not set expire date. Expire date is in the past" -msgstr "Não pode ser definida data de expiração. Data de expiração já passou" +msgid "Cannot set expiration date. Expiration date is in the past" +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 134c83fb57b..be4e7e693ee 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 22:40+0000\n" -"Last-Translator: Luis Jorge Simões das Neves <luisjneves@gmail.com>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,33 +25,33 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Não é possível gravar na directoria \"configurar\"!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Isto pode ser resolvido normalmente dando ao servidor web direitos de escrita ao directório de configuração" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Ver %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Isto pode ser resolvido normalmente %sdando ao servidor web direitos de escrita no directório de configuração%s." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Está a aceder ao servidor a partir de um domínio que não é de confiança." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -333,84 +333,84 @@ msgstr "A partilha %s falhou, porque o grupo %s não existe" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "A partilha %s falhou, porque o utilizador %s não é membro do grupo %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Necessita de fornecer a senha para criar um link publico, só são permitidos links protegidos" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "A partilha de %s falhou, porque partilhar com links não é permitido" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "O tipo de partilha %s não é válido para %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %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:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Definir permissões para %s falhou, porque o item não foi encontrado" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Não é possível definir data de expiração. Acções não podem expirar mais tarde que,%s após eles terem sido compartilhadas" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" -msgstr "Não é possível definir data de expiração. A data de vencimento está no passado" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" +msgstr "Não é possivel definir data de expiração. A data de expiração está no passado" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Partilhar backend %s tem de implementar o interface OCP\\Share_Backend" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Partilha backend %s não foi encontrado" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Partilha backend para %s não foi encontrado" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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/files.po b/l10n/ro/files.po index 60b0e4966b8..7e341e9c7dc 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -18,9 +18,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:31+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-04 01:54-0400\n" +"PO-Revision-Date: 2014-08-04 00:10+0000\n" +"Last-Translator: Liana Ioana Tascau <lianatascau@yahoo.com>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -226,7 +226,7 @@ msgstr "Șterge" #: js/fileactions.js:297 msgid "Disconnect storage" -msgstr "" +msgstr "Stocare deconectata" #: js/fileactions.js:299 msgid "Unshare" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 41dadd5259a..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -19,33 +19,33 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -327,84 +327,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 71adf7fb346..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,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 06:20+0000\n" -"Last-Translator: sbh12 <mail_123@mail.ru>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,33 +29,33 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Запись в каталог \"config\" невозможна" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Обычно это можно исправить, предоставив веб-серверу права на запись в папке конфигурации" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Просмотр %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Обычно это можно исправить, %sпредоставив веб-серверу права на запись в папке конфигурации%s." -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Вы пытаетесь получить доступ к серверу с неподтверждённого домена." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -106,7 +106,7 @@ msgstr "Неизвестный тип файла" msgid "Invalid image" msgstr "Изображение повреждено" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" @@ -337,84 +337,84 @@ msgstr "Не удалось установить общий доступ для msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Не удалось установить общий доступ для %s, %s не является членом группы %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Вам нужно задать пароль для создания публичной ссылки. Разрешены только защищённые ссылки" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Не удалось установить общий доступ для %s, потому что обмен со ссылками не допускается" -#: private/share/share.php:660 +#: 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:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Настройка прав доступа для %s невозможна, поскольку права доступа превышают предоставленные права доступа %s" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Не удалось произвести настройку прав доступа для %s , элемент не был найден." -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Не могу установить дату истечения. Шары не могут истечь позже чем %s после того, как они были расшарены" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" -msgstr "Не могу установить дату истечения. Дата истечения находится в прошлом." +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" +msgstr "Невозможно установить дату окончания. Дата окончания в прошлом." -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Бэкенд для опубликования %s должен реализовывать интерфейс OCP\\Share_Backend" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Бэкэнд для общего доступа %s не найден" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Бэкэнд для общего доступа к %s не найден" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Публикация %s неудачна, т.к републикация запрещена" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 b059ebe667b..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 88317110890..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 36f1390ad8e..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -20,33 +20,33 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Nie je možné zapisovat do priečinka \"config\"!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Pristupujete na server v nedôveryhodnej doméne." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -328,84 +328,84 @@ msgstr "Zdieľanie %s zlyhalo, pretože skupina %s neexistuje" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Zdieľanie %s zlyhalo, pretože %s nie je členom skupiny %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Musíte zadať heslo ak chcete vytvoriť verejný odkaz, lebo iba odkazy chránené heslom sú povolené" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Zdieľanie %s zlyhalo, pretože zdieľanie odkazom nie je povolené" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Typ zdieľania %s nie je platný pre %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Nastavenie povolení pre %s zlyhalo, pretože povolenia prekračujú povolenia udelené %s" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Nastavenie povolení pre %s zlyhalo, pretože položka sa nenašla" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 a499b2fa287..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -19,33 +19,33 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -327,84 +327,84 @@ msgstr "Nastavljanje souporabe %s je spodletelo, ker je skupina %s ne obstaja." msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ni član skupine %s." -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Nastavljanje souporabe %s je spodletelo, ker souporaba preko povezave ni dovoljena." -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Vrsta souporabe %s za %s ni veljavna." -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Ozadnjega programa %s za souporabo ni mogoče najti" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Ozadnjega programa za souporabo za %s ni mogoče najti" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 1ea5cb2e82c..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 7656c0bff6c..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "веб сервиси под контролом" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 9421b9b5dff..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 e02a6e338e5..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: su\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 5103ce53a11..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -26,33 +26,33 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "Kan inte skriva till \"config\" katalogen!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Detta kan vanligtvis åtgärdas genom att ge skrivrättigheter till config katalgogen" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Se %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Du ansluter till servern från en osäker domän." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -334,84 +334,84 @@ msgstr "Delning %s misslyckades därför att gruppen %s inte existerar" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "Delning %s misslyckades därför att %s inte ingår i gruppen %s" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Du måste ange ett lösenord för att skapa en offentlig länk, endast skyddade länkar är tillåtna" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "Delning %s misslyckades därför att delning utav länkar inte är tillåtet" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "Delningstyp %s är inte giltig för %s" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Misslyckades att sätta rättigheter för %s därför att rättigheterna överskrider de som är tillåtna för %s" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Att sätta rättigheterna för %s misslyckades därför att objektet inte hittades" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Delningsgränssnittet %s måste implementera gränssnittet OCP\\Share_Backend" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Delningsgränssnittet %s hittades inte" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "Delningsgränssnittet för %s hittades inte" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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 cfb64221078..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 bb832277cda..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ta_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 5a5b92cdb67..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 e80e91fac5b..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 1c17111291a..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-02 01:54-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 1bd38d784cf..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-02 01:54-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 16588ac2f4b..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-02 01:54-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 5efcb5923cf..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-02 01:54-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 a0200c32b36..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-02 01:54-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 577e2738948..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-02 01:54-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 427b2f0e657..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-02 01:54-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 cd9a3a2962c..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-02 01:54-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 "" @@ -357,12 +357,12 @@ msgstr "" #: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" #: private/share/share.php:968 -msgid "Can not set expire date. Expire date is in the past" +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" #: private/share/share.php:1093 @@ -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 55202bafacb..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-02 01:54-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 "" @@ -316,12 +316,12 @@ msgstr "" #: share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" #: share/share.php:968 -msgid "Can not set expire date. Expire date is in the past" +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" #: share/share.php:1093 @@ -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 dc59aa1282d..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-02 01:54-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" @@ -304,19 +304,19 @@ msgstr "" msgid "Unable to delete {objName}" msgstr "" -#: 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 "" -#: js/users/groups.js:228 js/users/users.js:296 +#: js/users/groups.js:230 js/users/users.js:296 msgid "undo" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 330c0d2d3f1..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-02 01:54-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 8f1582f64e3..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-02 01:54-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 f971717d322..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 4c7f3365a77..a290f9ac677 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.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-30 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 15:50+0000\n" -"Last-Translator: Volkan Gezer <volkangezer@gmail.com>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,33 +21,33 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "\"config\" dizinine yazılamıyor!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Bu genellikle, web sunucusuna config dizinine yazma erişimi verilerek çözülebilir" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "Bakınız: %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Bu genellikle, %sweb sunucusuna config dizinine yazma erişimi verilerek%s çözülebilir" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "Sunucuya güvenilmeyen bir alan adından ulaşıyorsunuz." -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -329,84 +329,84 @@ msgstr "%s paylaşımı, %s grubu mevcut olmadığından başarısız oldu" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "%s paylaşımı, %s kullanıcısı %s grup üyesi olmadığından başarısız oldu" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "Herkese açık bir bağlantı oluşturmak için bir parola belirtmeniz gerekiyor. Sadece korunmuş bağlantılara izin verilmektedir" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "%s paylaşımı, bağlantılar ile paylaşım izin verilmediğinden başarısız oldu" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "%s paylaşım türü %s için geçerli değil" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "%s için izinler, izinler %s için verilen izinleri aştığından dolayı ayarlanamadı" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "%s için izinler öge bulunamadığından ayarlanamadı" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" -msgstr "Son kullanma tarihi ayarlanamıyor. Paylaşımların süreleri, paylaşıldıkları konumdan %s sonra dolamaz." +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" +msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Son kullanma tarihi ayarlanamıyor. Son kullanma tarihi geçmişte" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Paylaşma arka ucu %s OCP\\Share_Backend arayüzünü desteklemeli" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "Paylaşım arka ucu %s bulunamadı" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "%s için paylaşım arka ucu bulunamadı" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: 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:1559 +#: 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:1573 +#: 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/settings.po b/l10n/tr/settings.po index bf98184c564..c31648d965a 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-14 01:54-0400\n" -"PO-Revision-Date: 2014-07-13 14:40+0000\n" +"POT-Creation-Date: 2014-08-04 01:54-0400\n" +"PO-Revision-Date: 2014-08-04 01:40+0000\n" "Last-Translator: Volkan Gezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -309,19 +309,19 @@ msgstr "Şifreleme anahtarlarını geri yükle." msgid "Unable to delete {objName}" msgstr "{objName} silinemiyor" -#: js/users/groups.js:92 js/users/groups.js:197 +#: js/users/groups.js:92 js/users/groups.js:200 msgid "Error creating group" msgstr "Grup oluşturulurken hata" -#: js/users/groups.js:196 +#: js/users/groups.js:199 msgid "A valid group name must be provided" msgstr "Geçerli bir grup adı mutlaka sağlanmalı" -#: js/users/groups.js:224 +#: js/users/groups.js:227 msgid "deleted {groupName}" msgstr "{groupName} silindi" -#: js/users/groups.js:225 js/users/users.js:296 +#: js/users/groups.js:228 js/users/users.js:296 msgid "undo" msgstr "geri al" @@ -349,23 +349,23 @@ msgstr "hiçbir zaman" msgid "deleted {userName}" msgstr "{userName} silindi" -#: js/users/users.js:426 +#: js/users/users.js:431 msgid "add group" msgstr "grup ekle" -#: js/users/users.js:621 +#: js/users/users.js:631 msgid "A valid username must be provided" msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" -#: js/users/users.js:622 js/users/users.js:628 js/users/users.js:643 +#: js/users/users.js:632 js/users/users.js:638 js/users/users.js:653 msgid "Error creating user" msgstr "Kullanıcı oluşturulurken hata" -#: js/users/users.js:627 +#: js/users/users.js:637 msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" -#: js/users/users.js:657 +#: js/users/users.js:669 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Uyarı: \"{user}\" kullanıcısı için zaten bir Ev dizini mevcut" @@ -528,7 +528,7 @@ msgid "" "installation of 3rd party apps don´t work. Accessing files from remote and " "sending of notification emails might also not work. We suggest to enable " "internet connection for this server if you want to have all features." -msgstr "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz." +msgstr "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacağı anlamına gelmektedir. Uzaktan dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz." #: templates/admin.php:189 msgid "Cron" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index 49f085b9970..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 8d81b100a37..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 d76480d8771..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "Невідомий тип файлу" msgid "Invalid image" msgstr "Невірне зображення" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "підконтрольні Вам веб-сервіси" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 ad954b0fa74..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 2fa5572160a..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "غیر معرروف قسم کی فائل" msgid "Invalid image" msgstr "غلط تصویر" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 25edf99cc44..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 d2bda57bc2c..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -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" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 92bb533ef9e..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -23,33 +23,33 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "无法写入“config”目录!" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "查看 %s" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "您正在访问来自不信任域名的服务器。" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -100,7 +100,7 @@ msgstr "未知的文件类型" msgid "Invalid image" msgstr "无效的图像" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "您控制的网络服务" @@ -331,84 +331,84 @@ msgstr "共享 %s 失败,因为 %s 组不存在" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "共享 %s 失败,因为 %s 不是 %s 组的成员" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "共享 %s 失败,因为不允许用链接共享" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "%s 不是 %s 的合法共享类型" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "设置 %s 权限失败,因为权限超出了 %s 已有权限。" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "设置 %s 的权限失败,因为未找到到对应项" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "共享后端 %s 必须实现 OCP\\Share_Backend 接口" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "未找到共享后端 %s" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "%s 的共享后端未找到" -#: private/share/share.php:1522 +#: 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:1531 +#: 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:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "共享 %s 失败,因为不允许二次共享" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 4df639358d4..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -17,33 +17,33 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -94,7 +94,7 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "" @@ -325,84 +325,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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 7ad6092f240..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-07-29 01:54-0400\n" -"PO-Revision-Date: 2014-07-29 05:54+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" @@ -19,33 +19,33 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:195 base.php:202 +#: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:196 +#: base.php:201 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:198 +#: base.php:203 #, php-format msgid "See %s" msgstr "" -#: base.php:203 private/util.php:428 +#: base.php:208 private/util.php:428 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:673 +#: base.php:688 msgid "You are accessing the server from an untrusted domain." msgstr "" -#: base.php:674 +#: base.php:689 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " @@ -96,7 +96,7 @@ msgstr "未知的檔案類型" msgid "Invalid image" msgstr "無效的圖片" -#: private/defaults.php:38 +#: private/defaults.php:42 msgid "web services under your control" msgstr "由您控制的網路服務" @@ -327,84 +327,84 @@ msgstr "" msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:627 +#: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" msgstr "" -#: private/share/share.php:653 +#: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:660 +#: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:860 +#: private/share/share.php:861 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:921 +#: private/share/share.php:922 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:959 +#: private/share/share.php:960 #, php-format msgid "" -"Can not set expire date. Shares can not expire later then %s after they " -"where shared" +"Cannot set expiration date. Shares cannot expire later than %s after they " +"have been shared" msgstr "" -#: private/share/share.php:967 -msgid "Can not set expire date. Expire date is in the past" +#: private/share/share.php:968 +msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1092 +#: private/share/share.php:1093 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1099 +#: private/share/share.php:1100 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1105 +#: private/share/share.php:1106 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1522 +#: private/share/share.php:1524 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1531 +#: private/share/share.php:1533 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1547 +#: private/share/share.php:1549 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1559 +#: 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:1573 +#: 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/ast.php b/lib/l10n/ast.php index 12b4e96b714..9ff0f12aa91 100644 --- a/lib/l10n/ast.php +++ b/lib/l10n/ast.php @@ -67,8 +67,6 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "La triba de compartición %s nun ye válida pa %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Falló dar permisos a %s, porque los permisos son mayores que los otorgaos a %s", "Setting permissions for %s failed, because the item was not found" => "Falló dar permisos a %s, porque l'elementu nun s'atopó", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Nun pudo afitase la data d'espiración. Los ficheros compartíos nun puen espirar llueu de %s dempués de compartise.", -"Can not set expire date. Expire date is in the past" => "Nun pudo afitase la data d'espiración. La data ta nel pasáu", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "El motor compartíu %s tien d'implementar la interfaz OCP\\Share_Backend", "Sharing backend %s not found" => "Nun s'alcontró'l botón de compartición %s", "Sharing backend for %s not found" => "Nun s'alcontró'l botón de partición pa %s", diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index fe773693e0b..4a2d04eaace 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -67,8 +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, защото съдържанието не е открито.", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Неуспешно задаване на дата на изтичане. Споделени папки не могат да изтекат по-късно от %s след като са били споделени.", -"Can not set expire date. Expire date is in the past" => "Неуспешноп задаване на дата на изтичане. Датата е в миналото.", +"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 0aa0500b1cf..c46139da321 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -67,8 +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", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Nelze nastavit datum vypršení platnosti. Sdílení nemůže vypršet později než za %s po zveřejnění.", -"Can not set expire date. Expire date is in the past" => "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti.", +"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 340356049e8..9bb1f76488a 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -67,8 +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", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Ablaufdatum kann nicht gesetzt werden. Freigaben können nach dem Teilen, nicht länger als %s gültig sein.", -"Can not set expire date. Expire date is in the past" => "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit.", +"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 f692153eb73..edb1d7a46f3 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -67,8 +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", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Ablaufdatum kann nicht gesetzt werden. Freigaben können nach dem Teilen, nicht länger als %s gültig sein.", -"Can not set expire date. Expire date is in the past" => "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit.", +"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/el.php b/lib/l10n/el.php index 560c1fb953b..c0bc46d52c5 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -67,8 +67,6 @@ $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 απέτυχε, γιατί το αντικείμενο δεν βρέθηκε", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Δεν μπορείτε να ορίσετε ημερομηνία λήξης. Οι διαμοιρασμοί δεν μπορούν να λήγουν αργότερα από %s αφού διαμοιραστούν", -"Can not set expire date. Expire 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/en_GB.php b/lib/l10n/en_GB.php index 59404f7a90b..0553e80d70e 100644 --- a/lib/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -67,8 +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", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Cannot set the expiry date. Shares cannot expire later than %s after they have been shared", -"Can not set expire date. Expire date is in the past" => "Cannot set the expiry date. The expiry date is in the past", +"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 ed1c4b0e55e..bb0aadeba2e 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -67,8 +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", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "No se pudo fijar fecha de caducidad. Los archivos compartidos no pueden caducar luego de %s después de ser compartidos.", -"Can not set expire date. Expire date is in the past" => "No se pudo fijar fecha de caducidad. La fecha está en el pasado", +"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/et_EE.php b/lib/l10n/et_EE.php index 58a5939f659..de5abef91af 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -67,8 +67,6 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Jagamise tüüp %s ei ole õige %s jaoks", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Lubade seadistus %s jaoks ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi", "Setting permissions for %s failed, because the item was not found" => "Lubade seadistus %s jaoks ebaõnnestus, kuna üksust ei leitud", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Aegumise kuupäeva ei saa määrata. Jagamised ei saa aeguda hiljem kui %s peale jagamist.", -"Can not set expire date. Expire date is in the past" => "Aegumise kuupäeva ei saa määrata. Aegumise kuupäev ei saa olla minevikus.", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese", "Sharing backend %s not found" => "Jagamise tagarakendit %s ei leitud", "Sharing backend for %s not found" => "Jagamise tagarakendit %s jaoks ei leitud", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 53d5b31075a..5221b35a307 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -67,8 +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", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Ezin izan da jarri iraungitze data. Konpartitzea ezin da iraungi konpartitu eta %s ondoren.", -"Can not set expire date. Expire date is in the past" => "Ezin da jarri iraungitze data. Iraungitze data iragan da.", +"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 41f93a41366..26ded2e51b1 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -67,8 +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", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Non é posíbel estabelecer a data de caducidade. As comparticións non poden caducar máis aló de %s após de seren compartida", -"Can not set expire date. Expire date is in the past" => "Non é posíbel estabelecer a data de caducidade. A data de caducidade está no pasado.", +"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 95ebe375172..08d356b9f62 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -67,8 +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", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Impossibile impostare la data di scadenza. Le condivisioni non possono scadere più tardi di %s dalla loro attivazione.", -"Can not set expire date. Expire date is in the past" => "Impossibile impostare la data di scadenza. La data di scadenza è già passata.", +"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 96d7fc0a41b..13b70541ad4 100644 --- a/lib/l10n/ja.php +++ b/lib/l10n/ja.php @@ -67,8 +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 の権限設定に失敗しました。アイテムが存在しません。", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "有効期限を設定できません。共有開始から %s 以降に有効期限を設定することはできません。", -"Can not set expire date. Expire date is in the past" => "有効期限を設定できません。有効期限が過去を示しています。", +"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 d5051e5da21..7b5aff3217f 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -67,8 +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", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Kon vervaldatum niet installen. Shares kunnen niet langer dan %s vervallen na het moment van delen", -"Can not set expire date. Expire date is in the past" => "Kon vervaldatum niet instellen. De vervaldatum ligt in het verleden", +"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/pl.php b/lib/l10n/pl.php index dc5954c6854..877c3fcdbe8 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -67,8 +67,6 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Typ udziału %s nie jest właściwy dla %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Ustawienie uprawnień dla %s nie powiodło się, ponieważ uprawnienia wykraczają poza przydzielone %s", "Setting permissions for %s failed, because the item was not found" => "Ustawienie uprawnień dla %s nie powiodło się, ponieważ element nie został znaleziony", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Nie można ustawić daty wygaśnięcia. Udział nie może wygasać później niż %s od momentu udostępnienia.", -"Can not set expire date. Expire date is in the past" => "Nie można ustawić daty wygaśnięcia. Termin ustalony jest w przeszłości", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Zaplecze do współdzielenia %s musi implementować interfejs OCP\\Share_Backend", "Sharing backend %s not found" => "Zaplecze %s do współdzielenia nie zostało znalezione", "Sharing backend for %s not found" => "Zaplecze do współdzielenia %s nie zostało znalezione", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 8067e9a4ade..16ca7965402 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -67,8 +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", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Não pode ser definida data de expiração. Compartilhamentos não podem ter data de expiração %s após serem compartilhados", -"Can not set expire date. Expire date is in the past" => "Não pode ser definida data de expiração. Data de expiração já passou", +"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 a2b8068acee..49977bb2d4f 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -67,8 +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", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Não é possível definir data de expiração. Acções não podem expirar mais tarde que,%s após eles terem sido compartilhadas", -"Can not set expire date. Expire date is in the past" => "Não é possível definir data de expiração. A data de vencimento está no passado", +"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 50f72f47b24..c8514fc3f9e 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -64,11 +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 , элемент не был найден.", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Не могу установить дату истечения. Шары не могут истечь позже чем %s после того, как они были расшарены", -"Can not set expire date. Expire date is in the past" => "Не могу установить дату истечения. Дата истечения находится в прошлом.", +"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 479244a5c61..39d80a30b3d 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -67,8 +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ı", -"Can not set expire date. Shares can not expire later then %s after they where shared" => "Son kullanma tarihi ayarlanamıyor. Paylaşımların süreleri, paylaşıldıkları konumdan %s sonra dolamaz.", -"Can not set expire date. Expire date is in the past" => "Son kullanma tarihi ayarlanamıyor. Son kullanma tarihi geçmişte", +"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/appframework/utility/controllermethodreflector.php b/lib/private/appframework/utility/controllermethodreflector.php index d5cf2f52eb2..c49dd80091e 100644 --- a/lib/private/appframework/utility/controllermethodreflector.php +++ b/lib/private/appframework/utility/controllermethodreflector.php @@ -62,6 +62,7 @@ class ControllerMethodReflector { } else { $this->types = array_combine($matches['var'], $matches['type']); } + // get method parameters foreach ($reflection->getParameters() as $param) { if($param->isOptional()) { 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/files/node/folder.php b/lib/private/files/node/folder.php index 3e23f5c2c94..8c7acc339ae 100644 --- a/lib/private/files/node/folder.php +++ b/lib/private/files/node/folder.php @@ -27,22 +27,19 @@ class Folder extends Node implements \OCP\Files\Folder { /** * @param string $path - * @throws \OCP\Files\NotFoundException * @return string */ public function getRelativePath($path) { if ($this->path === '' or $this->path === '/') { return $this->normalizePath($path); } - if (strpos($path, $this->path) !== 0) { - throw new NotFoundException(); + if ($path === $this->path) { + return '/'; + } else if (strpos($path, $this->path . '/') !== 0) { + return null; } else { $path = substr($path, strlen($this->path)); - if (strlen($path) === 0) { - return '/'; - } else { - return $this->normalizePath($path); - } + return $this->normalizePath($path); } } @@ -295,15 +292,29 @@ class Folder extends Node implements \OCP\Files\Folder { * @return \OC\Files\Node\Node[] */ public function getById($id) { - $nodes = $this->root->getById($id); - $result = array(); - foreach ($nodes as $node) { - $pathPart = substr($node->getPath(), 0, strlen($this->getPath()) + 1); - if ($this->path === '/' or $pathPart === $this->getPath() . '/') { - $result[] = $node; + $mounts = $this->root->getMountsIn($this->path); + $mounts[] = $this->root->getMount($this->path); + // reverse the array so we start with the storage this view is in + // which is the most likely to contain the file we're looking for + $mounts = array_reverse($mounts); + + $nodes = array(); + foreach ($mounts as $mount) { + /** + * @var \OC\Files\Mount\Mount $mount + */ + if ($mount->getStorage()) { + $cache = $mount->getStorage()->getCache(); + $internalPath = $cache->getPathById($id); + if (is_string($internalPath)) { + $fullPath = $mount->getMountPoint() . $internalPath; + if (!is_null($path = $this->getRelativePath($fullPath))) { + $nodes[] = $this->get($path); + } + } } } - return $result; + return $nodes; } public function getFreeSpace() { diff --git a/lib/private/files/node/root.php b/lib/private/files/node/root.php index 70135285b0d..18e7a6b681a 100644 --- a/lib/private/files/node/root.php +++ b/lib/private/files/node/root.php @@ -162,39 +162,13 @@ class Root extends Folder implements Emitter { if ($this->view->file_exists($fullPath)) { return $this->createNode($fullPath); } else { - throw new NotFoundException(); + throw new NotFoundException($path); } } else { throw new NotPermittedException(); } } - /** - * search file by id - * - * An array is returned because in the case where a single storage is mounted in different places the same file - * can exist in different places - * - * @param int $id - * @throws \OCP\Files\NotFoundException - * @return Node[] - */ - public function getById($id) { - $result = Cache::getById($id); - if (is_null($result)) { - throw new NotFoundException(); - } else { - list($storageId, $internalPath) = $result; - $nodes = array(); - $mounts = $this->mountManager->findByStorageId($storageId); - foreach ($mounts as $mount) { - $nodes[] = $this->get($mount->getMountPoint() . $internalPath); - } - return $nodes; - } - - } - //most operations cant be done on the root /** diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index 63570d70cff..a8b420e978a 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -208,22 +208,7 @@ if (\OC_Util::runningOnWindows()) { } public function fopen($path, $mode) { - if ($return = fopen($this->datadir . $path, $mode)) { - switch ($mode) { - case 'r': - break; - case 'r+': - case 'w+': - case 'x+': - case 'a+': - break; - case 'w': - case 'x': - case 'a': - break; - } - } - return $return; + return fopen($this->datadir . $path, $mode); } public function hash($type, $path, $raw = false) { diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php index c4a8dc1961c..0760d842eaf 100644 --- a/lib/private/files/storage/mappedlocal.php +++ b/lib/private/files/storage/mappedlocal.php @@ -79,7 +79,7 @@ class MappedLocal extends \OC\Files\Storage\Common { $logicalPath = $this->mapper->physicalToLogic($physicalPath); $dh = opendir($physicalPath); - if(is_resource($dh)) { + if (is_resource($dh)) { while (($file = readdir($dh)) !== false) { if ($file === '.' or $file === '..') { continue; @@ -87,9 +87,9 @@ class MappedLocal extends \OC\Files\Storage\Common { $logicalFilePath = $this->mapper->physicalToLogic($physicalPath . '/' . $file); - $file= $this->mapper->stripRootFolder($logicalFilePath, $logicalPath); + $file = $this->mapper->stripRootFolder($logicalFilePath, $logicalPath); $file = $this->stripLeading($file); - $files[]= $file; + $files[] = $file; } } @@ -245,28 +245,15 @@ class MappedLocal extends \OC\Files\Storage\Common { } public function fopen($path, $mode) { - if ($return = fopen($this->buildPath($path), $mode)) { - switch ($mode) { - case 'r': - break; - case 'r+': - case 'w+': - case 'x+': - case 'a+': - break; - case 'w': - case 'x': - case 'a': - break; - } - } - return $return; + return fopen($this->buildPath($path), $mode); } /** * @param string $dir + * @param bool $isLogicPath + * @return bool */ - private function delTree($dir, $isLogicPath=true) { + private function delTree($dir, $isLogicPath = true) { $dirRelative = $dir; if ($isLogicPath) { $dir = $this->buildPath($dir); @@ -380,7 +367,7 @@ class MappedLocal extends \OC\Files\Storage\Common { /** * @param string $path */ - private function cleanMapper($path, $isLogicPath = true, $recursive=true) { + private function cleanMapper($path, $isLogicPath = true, $recursive = true) { $fullPath = $path; if ($isLogicPath) { $fullPath = $this->datadir . $path; diff --git a/lib/private/files/view.php b/lib/private/files/view.php index e08cb20f73d..85af4a9abef 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -781,6 +781,9 @@ class View { return false; } $defaultRoot = Filesystem::getRoot(); + if ($defaultRoot === null) { + return false; + } if ($this->fakeRoot === $defaultRoot) { return true; } 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/mail.php b/lib/private/mail.php index 81bcb3d8deb..82107c32dc7 100644 --- a/lib/private/mail.php +++ b/lib/private/mail.php @@ -74,16 +74,16 @@ class OC_Mail { $toaddress = self::buildAsciiEmail($toaddress); $mailo->AddAddress($toaddress, $toname); - if($ccaddress<>'') $mailo->AddCC($ccaddress, $ccname); - if($bcc<>'') $mailo->AddBCC($bcc); + if($ccaddress != '') $mailo->AddCC($ccaddress, $ccname); + if($bcc != '') $mailo->AddBCC($bcc); $mailo->AddReplyTo($fromaddress, $fromname); - $mailo->WordWrap = 50; - if($html==1) $mailo->IsHTML(true); else $mailo->IsHTML(false); + $mailo->WordWrap = 78; + $mailo->IsHTML($html == 1); $mailo->Subject = $subject; - if($altbody=='') { + if($altbody == '') { $mailo->Body = $mailtext.OC_MAIL::getfooter(); $mailo->AltBody = ''; }else{ diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 7fd5cd70e1d..646511fd64d 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -926,7 +926,7 @@ class Share extends \OC\Share\Constants { } /** - * validate expire date if it meets all constraints + * validate expiration date if it meets all constraints * * @param string $expireDate well formate date string, e.g. "DD-MM-YYYY" * @param string $shareTime timestamp when the file was shared @@ -956,16 +956,16 @@ 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 = 'Can not set expire date. Shares can not expire later then ' . $maxDays . ' after they where shared'; - $warning_t = $l->t('Can not set expire date. Shares can not expire later then %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); } } if ($date < $today) { - $message = 'Can not set expire date. Expire date is in the past'; - $message_t = $l->t('Can not set expire date. Expire date is in the past'); + $message = 'Cannot set expiration date. Expiration date is in the past'; + $message_t = $l->t('Cannot set expiration date. Expiration date is in the past'); \OCP\Util::writeLog('OCP\Share', $message, \OCP\Util::WARN); throw new \Exception($message_t); } @@ -1018,10 +1018,10 @@ class Share extends \OC\Share\Constants { $result = false; - // only use default expire date for link shares + // only use default expiration date for link shares if ((int) $item['share_type'] === self::SHARE_TYPE_LINK) { - // calculate expire date + // calculate expiration date if (!empty($item['expiration'])) { $userDefinedExpire = new \DateTime($item['expiration']); $expires = $userDefinedExpire->getTimestamp(); @@ -1030,7 +1030,7 @@ class Share extends \OC\Share\Constants { } - // get default expire settings + // get default expiration settings $defaultSettings = Helper::getDefaultExpireSetting(); $expires = Helper::calculateExpireDate($defaultSettings, $item['stime'], $expires); @@ -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/lib/repair/innodb.php b/lib/repair/innodb.php index 6f7fcfcd4c9..6b795a749e9 100644 --- a/lib/repair/innodb.php +++ b/lib/repair/innodb.php @@ -43,7 +43,7 @@ class InnoDB extends BasicEmitter implements \OC\RepairStep { private function getAllMyIsamTables($connection) { $dbName = \OC::$server->getConfig()->getSystemValue("dbname"); $result = $connection->fetchArray( - "SELECT table_name FROM information_schema.tables WHERE table_schema = ? AND engine = 'MyISAM'", + "SELECT table_name FROM information_schema.tables WHERE table_schema = ? AND engine = 'MyISAM' AND TABLE_NAME LIKE \"*PREFIX*%\"", array($dbName) ); diff --git a/settings/js/apps.js b/settings/js/apps.js index 9061b43c7be..e808e51e936 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -237,7 +237,8 @@ OC.Settings.Apps = OC.Settings.Apps || { element.val(t('settings','Uninstall')); } else { OC.Settings.Apps.removeNavigation(appid); - appitem.removeClass('active'); + var appItem = $('#app-navigation li').filterAttr('data-id', appid); + appItem.removeClass('active'); } },'json'); }, @@ -283,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/js/users/groups.js b/settings/js/users/groups.js index 58f77705121..fe06edff34d 100644 --- a/settings/js/users/groups.js +++ b/settings/js/users/groups.js @@ -30,8 +30,10 @@ GroupList = { var $groupLiElement = $(groupLiElement); if (usercount === undefined || usercount === 0 || usercount < 0) { usercount = ''; + $groupLiElement.data('usercount', 0); + } else { + $groupLiElement.data('usercount', usercount); } - $groupLiElement.data('usercount', usercount); $groupLiElement.find('.usercount').text(usercount); }, 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/l10n/tr.php b/settings/l10n/tr.php index 2586b42a819..4e724e371f1 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -113,7 +113,7 @@ $TRANSLATIONS = array( "This means that there might be problems with certain characters in file names." => "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir.", "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s.", "Internet connection not working" => "İnternet bağlantısı çalışmıyor", -"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz.", +"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacağı anlamına gelmektedir. Uzaktan dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz.", "Cron" => "Cron", "Last cron was executed at %s." => "Son cron %s zamanında çalıştırıldı.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Son cron %s zamanında çalıştırıldı. Bu bir saatten daha uzun bir süre, bir şeyler yanlış gibi görünüyor.", 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 diff --git a/tests/lib/appframework/http/DispatcherTest.php b/tests/lib/appframework/http/DispatcherTest.php index 8117eec2075..9d5ec09a293 100644 --- a/tests/lib/appframework/http/DispatcherTest.php +++ b/tests/lib/appframework/http/DispatcherTest.php @@ -220,6 +220,10 @@ class DispatcherTest extends \PHPUnit_Framework_TestCase { public function testExceptionCallsAfterException() { + // TODO fails on PHP 5.3 + if (version_compare(PHP_VERSION, '5.4.0', '<')) { + $this->markTestSkipped('Fails on PHP 5.3'); + } $out = 'yo'; $httpHeaders = 'Http'; $responseHeaders = array('hell' => 'yeah'); @@ -235,6 +239,10 @@ class DispatcherTest extends \PHPUnit_Framework_TestCase { public function testExceptionThrowsIfCanNotBeHandledByAfterException() { + // TODO fails on PHP 5.3 and crashed travis (10 minute timeout) + if (version_compare(PHP_VERSION, '5.4.0', '<')) { + $this->markTestSkipped('Fails on PHP 5.3 and causes infinite loop - travis fails after 10 minute timeout'); + } $out = 'yo'; $httpHeaders = 'Http'; $responseHeaders = array('hell' => 'yeah'); diff --git a/tests/lib/files/node/folder.php b/tests/lib/files/node/folder.php index 08200f35f57..436161aba72 100644 --- a/tests/lib/files/node/folder.php +++ b/tests/lib/files/node/folder.php @@ -9,6 +9,7 @@ namespace Test\Files\Node; use OC\Files\Cache\Cache; +use OC\Files\Mount\Mount; use OC\Files\Node\Node; use OCP\Files\NotFoundException; use OCP\Files\NotPermittedException; @@ -468,4 +469,130 @@ class Folder extends \PHPUnit_Framework_TestCase { $file = new Node(null, null, '/foobar'); $this->assertFalse($folder->isSubNode($file)); } + + public function testGetById() { + $manager = $this->getMock('\OC\Files\Mount\Manager'); + /** + * @var \OC\Files\View | \PHPUnit_Framework_MockObject_MockObject $view + */ + $view = $this->getMock('\OC\Files\View'); + $root = $this->getMock('\OC\Files\Node\Root', array('getUser', 'getMountsIn', 'getMount'), array($manager, $view, $this->user)); + $root->expects($this->any()) + ->method('getUser') + ->will($this->returnValue($this->user)); + $storage = $this->getMock('\OC\Files\Storage\Storage'); + $mount = new Mount($storage, '/bar'); + $cache = $this->getMock('\OC\Files\Cache\Cache', array(), array('')); + + $view->expects($this->once()) + ->method('file_exists') + ->will($this->returnValue(true)); + + $storage->expects($this->once()) + ->method('getCache') + ->will($this->returnValue($cache)); + + $cache->expects($this->once()) + ->method('getPathById') + ->with('1') + ->will($this->returnValue('foo/qwerty')); + + $root->expects($this->once()) + ->method('getMountsIn') + ->with('/bar/foo') + ->will($this->returnValue(array())); + + $root->expects($this->once()) + ->method('getMount') + ->with('/bar/foo') + ->will($this->returnValue($mount)); + + $node = new \OC\Files\Node\Folder($root, $view, '/bar/foo'); + $result = $node->getById(1); + $this->assertEquals(1, count($result)); + $this->assertEquals('/bar/foo/qwerty', $result[0]->getPath()); + } + + public function testGetByIdOutsideFolder() { + $manager = $this->getMock('\OC\Files\Mount\Manager'); + /** + * @var \OC\Files\View | \PHPUnit_Framework_MockObject_MockObject $view + */ + $view = $this->getMock('\OC\Files\View'); + $root = $this->getMock('\OC\Files\Node\Root', array('getUser', 'getMountsIn', 'getMount'), array($manager, $view, $this->user)); + $root->expects($this->any()) + ->method('getUser') + ->will($this->returnValue($this->user)); + $storage = $this->getMock('\OC\Files\Storage\Storage'); + $mount = new Mount($storage, '/bar'); + $cache = $this->getMock('\OC\Files\Cache\Cache', array(), array('')); + + $storage->expects($this->once()) + ->method('getCache') + ->will($this->returnValue($cache)); + + $cache->expects($this->once()) + ->method('getPathById') + ->with('1') + ->will($this->returnValue('foobar')); + + $root->expects($this->once()) + ->method('getMountsIn') + ->with('/bar/foo') + ->will($this->returnValue(array())); + + $root->expects($this->once()) + ->method('getMount') + ->with('/bar/foo') + ->will($this->returnValue($mount)); + + $node = new \OC\Files\Node\Folder($root, $view, '/bar/foo'); + $result = $node->getById(1); + $this->assertCount(0, $result); + } + + public function testGetByIdMultipleStorages() { + $manager = $this->getMock('\OC\Files\Mount\Manager'); + /** + * @var \OC\Files\View | \PHPUnit_Framework_MockObject_MockObject $view + */ + $view = $this->getMock('\OC\Files\View'); + $root = $this->getMock('\OC\Files\Node\Root', array('getUser', 'getMountsIn', 'getMount'), array($manager, $view, $this->user)); + $root->expects($this->any()) + ->method('getUser') + ->will($this->returnValue($this->user)); + $storage = $this->getMock('\OC\Files\Storage\Storage'); + $mount1 = new Mount($storage, '/bar'); + $mount2 = new Mount($storage, '/bar/foo/asd'); + $cache = $this->getMock('\OC\Files\Cache\Cache', array(), array('')); + + $view->expects($this->any()) + ->method('file_exists') + ->will($this->returnValue(true)); + + $storage->expects($this->any()) + ->method('getCache') + ->will($this->returnValue($cache)); + + $cache->expects($this->any()) + ->method('getPathById') + ->with('1') + ->will($this->returnValue('foo/qwerty')); + + $root->expects($this->any()) + ->method('getMountsIn') + ->with('/bar/foo') + ->will($this->returnValue(array($mount2))); + + $root->expects($this->once()) + ->method('getMount') + ->with('/bar/foo') + ->will($this->returnValue($mount1)); + + $node = new \OC\Files\Node\Folder($root, $view, '/bar/foo'); + $result = $node->getById(1); + $this->assertEquals(2, count($result)); + $this->assertEquals('/bar/foo/qwerty', $result[0]->getPath()); + $this->assertEquals('/bar/foo/asd/foo/qwerty', $result[1]->getPath()); + } } diff --git a/tests/lib/files/objectstore/swift.php b/tests/lib/files/objectstore/swift.php index b3fa4fa768c..900367553d7 100644 --- a/tests/lib/files/objectstore/swift.php +++ b/tests/lib/files/objectstore/swift.php @@ -83,6 +83,11 @@ class Swift extends \Test\Files\Storage\Storage { } public function testStat() { + // TODO travis + if (getenv('TRAVIS')) { + $this->markTestSkipped('Fails on travis - connection times out sometimes'); + } + $textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; $ctimeStart = time(); $this->instance->file_put_contents('/lorem.txt', file_get_contents($textFile)); diff --git a/tests/lib/preferences-singleton.php b/tests/lib/preferences-singleton.php index 17fe54ad1f5..7abf5a6be36 100644 --- a/tests/lib/preferences-singleton.php +++ b/tests/lib/preferences-singleton.php @@ -44,7 +44,10 @@ class Test_Preferences extends PHPUnit_Framework_TestCase { $expected[] = $row['userid']; } - $this->assertEquals($expected, \OC_Preferences::getUsers()); + sort($expected); + $users = \OC_Preferences::getUsers(); + sort($users); + $this->assertEquals($expected, $users); } public function testGetApps() { @@ -55,7 +58,10 @@ class Test_Preferences extends PHPUnit_Framework_TestCase { $expected[] = $row['appid']; } - $this->assertEquals($expected, \OC_Preferences::getApps('Someuser')); + sort($expected); + $apps = \OC_Preferences::getApps('Someuser'); + sort($apps); + $this->assertEquals($expected, $apps); } public function testGetKeys() { @@ -66,7 +72,10 @@ class Test_Preferences extends PHPUnit_Framework_TestCase { $expected[] = $row['configkey']; } - $this->assertEquals($expected, \OC_Preferences::getKeys('Someuser', 'getkeysapp')); + sort($expected); + $keys = \OC_Preferences::getKeys('Someuser', 'getkeysapp'); + sort($keys); + $this->assertEquals($expected, $keys); } public function testGetValue() { |